/* shared.css — Travel Gratis product page shared styles */
:root {
  --navy:      #0d1b2a;
  --navy-mid:  #162235;
  --navy-light:#1e3050;
  --gold:      #c9a84c;
  --gold-light:#e8c878;
  --gold-pale: #f5e8c0;
  --ivory:     #faf6ef;
  --text:      #2c2c2c;
  --text-light:#5a5a5a;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* Product Hero */
.product-hero {
  min-height: 70vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.08) 0%, transparent 65%);
}

.product-hero > * { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 20px;
}

.product-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 800px;
}

.product-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* Buy Box */
.buy-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 32px 40px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.buy-price {
  text-align: center;
}

.buy-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.buy-price .note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  display: block;
  margin-top: 4px;
}

.buy-btn {
  display: inline-block;
  padding: 18px 44px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.buy-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.buy-guarantees {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.buy-guarantees span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}

.buy-guarantees span::before {
  content: '✓ ';
  color: var(--gold);
  opacity: 0.7;
}

/* Content sections */
.content-section {
  padding: 80px 32px;
  max-width: 860px;
  margin: 0 auto;
}

.content-section.bg-white {
  max-width: 100%;
  background: #fff;
  padding: 80px 32px;
}

.content-section.bg-white .inner { max-width: 860px; margin: 0 auto; }

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.content-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
}

.content-section h2 em { font-style: italic; color: var(--gold); }

.content-section p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

.content-section blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(201,168,76,0.04);
}

.content-section blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  margin: 0;
}

/* What's Inside */
.toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 600px) { .toc-grid { grid-template-columns: 1fr; } }

.toc-item {
  background: #fff;
  border: 1px solid rgba(13,27,42,0.07);
  border-radius: 3px;
  padding: 20px 22px;
}

.toc-item-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.toc-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.toc-item p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Bottom CTA */
.bottom-cta {
  background: var(--navy);
  padding: 80px 32px;
  text-align: center;
}

.bottom-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.bottom-cta h2 em { font-style: italic; color: var(--gold); }

.bottom-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* Also section */
.also-section {
  padding: 80px 32px;
  background: var(--ivory);
}

.also-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
}

.also-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.also-card {
  background: #fff;
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 4px;
  padding: 24px;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.also-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,27,42,0.08);
}

.also-card-price {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
}

.also-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

.also-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 60px 32px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p, .footer-bottom a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--gold); }
