/* ── LuxuryAscent — Main Stylesheet ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #152336;
  --navy-light:  #1c3352;
  --gold:        #c9a96e;
  --gold-light:  #e8d5a3;
  --gold-dark:   #a07c42;
  --white:       #ffffff;
  --off-white:   #faf9f7;
  --surface:     #f4f2ee;
  --border:      #e6dfd6;
  --text:        #1a1a2e;
  --text-mid:    #4a5568;
  --text-light:  #718096;
  --green:       #16a34a;
  --blue:        #2563eb;
  --purple:      #7c3aed;
  --red:         #dc2626;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:      0 4px 16px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.08);
  --transition:  all .22s ease;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ────────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-mid); }

/* ── Utility ───────────────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-gold  { color: var(--gold); }
.text-center{ text-align: center; }
.text-white { color: var(--white) !important; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub   { color: var(--text-mid); font-size: 1.05rem; max-width: 580px; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: .95rem; font-weight: 600; letter-spacing: .02em;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gold); color: var(--navy);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,169,110,.35); }
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,27,42,.3); }
.btn-outline {
  border: 2px solid var(--gold); color: var(--gold); background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.6); color: var(--white); background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-whatsapp {
  background: #25D366; color: var(--white);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; border-radius: 10px; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Header / Navigation ───────────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,42,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,.15);
  transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center; gap: 12px;
  height: 68px;
}
.nav-logo {
  display: inline-flex; align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  white-space: nowrap;       /* keep logo + text on one line */
  text-decoration: none;
}
.nav-logo img { display: block; }
.nav-logo span { color: var(--gold); }
@media (max-width: 480px) {
  /* Shrink logo a touch on tiny screens so it never wraps */
  .nav-logo { font-size: 1.1rem; }
  .nav-logo img { width: 28px !important; height: 28px !important; }
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1;
  padding-left: 16px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 10px; border-radius: 6px;
  font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.8);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(201,169,110,.08); }
.nav-link svg { width: 14px; height: 14px; transition: transform .18s ease, color .18s ease; }
/* Chevron rotates only when the dropdown is actually open */
.nav-item.open .nav-link svg { transform: rotate(180deg); }
.nav-item.open .nav-link { color: var(--gold); background: rgba(201,169,110,.08); }

/* Dropdown — JS-controlled (.open class). See initNav() in app.js for timing. */
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  margin-top: 10px;
  min-width: 240px; max-height: 80vh; overflow-y: auto;
  background: var(--navy-mid);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,.32);
  padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  z-index: 100;
}
/* Invisible bridge so the mouse can cross the 10px gap without losing hover.
   pointer-events is none by default (so it never blocks clicks on closed
   dropdowns) and only enabled once the panel is open. */
.nav-dropdown::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
  pointer-events: none;
}
.nav-item.open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.nav-item.open .nav-dropdown::before {
  pointer-events: auto;
}
.nav-dropdown a {
  display: block; padding: 10px 14px; border-radius: 7px;
  font-size: .9rem; color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.nav-dropdown a:hover { color: var(--gold); background: rgba(201,169,110,.1); }
.nav-dd-label {
  font-size: .67rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  padding: 9px 14px 3px; opacity: .85;
}
.nav-dd-divider {
  height: 1px; background: rgba(201,169,110,.12); margin: 4px 10px;
}
.nav-dd-all {
  color: var(--gold) !important; font-weight: 600 !important;
  border-top: 1px solid rgba(201,169,110,.15) !important;
  margin-top: 4px; padding-top: 10px !important; font-size: .85rem !important;
}
.nav-cta {
  margin-left: auto;
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-cta .btn { padding: 10px 22px; font-size: .875rem; }

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  overflow-y: auto;
  padding: 24px;
  z-index: 999;
  flex-direction: column; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 16px; border-radius: 8px;
  font-size: 1rem; color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(201,169,110,.08); }
.mobile-nav .mobile-nav-heading {
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); padding: 16px 16px 8px; font-weight: 700;
}
.mobile-nav .mobile-nav-sub {
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(201,169,110,.6); padding: 10px 16px 2px; font-weight: 600;
}
.mobile-nav a.mobile-nav-all { color: var(--gold); font-weight: 600; }

/* ── Hero Section ──────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920&auto=format&q=75');
  background-size: cover; background-position: center;
  opacity: .15;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.97) 0%, rgba(28,51,82,.8) 60%, rgba(13,27,42,.6) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 80px 0;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,169,110,.12); border: 1px solid rgba(201,169,110,.3);
  color: var(--gold); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero-label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.trust-stat { text-align: center; }
.trust-stat-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--gold);
}
.trust-stat-label { font-size: .8rem; color: rgba(255,255,255,.55); }
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,.08); border-color: rgba(201,169,110,.4); transform: translateY(-2px); }
.hero-card-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(201,169,110,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 12px;
}
.hero-card h4 { color: var(--white); font-size: .95rem; margin-bottom: 6px; }
.hero-card p { color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.5; }

/* ── Trust Bar ─────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,169,110,.1);
  border-bottom: 1px solid rgba(201,169,110,.1);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.65); font-size: .875rem;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── How It Works ──────────────────────────────────────────────────────────── */
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute; top: 40px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3;
}
.step-card {
  text-align: center; position: relative;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gold);
  margin: 0 auto 20px;
  position: relative; z-index: 2;
}
.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: .9rem; }

/* ── Category Cards ────────────────────────────────────────────────────────── */
.category-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.category-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,169,110,.15);
  transform: translateY(-3px);
}
.category-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 16px;
}
.category-icon.hotel  { background: #fef3c7; }
.category-icon.airline{ background: #dbeafe; }
.category-icon.lounge { background: #f0fdf4; }
.category-icon.car    { background: #f5f3ff; }
.category-icon.points { background: #fff7ed; }
.category-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.category-card p  { font-size: .85rem; }
.category-count {
  display: inline-block; margin-top: 14px;
  padding: 4px 12px; border-radius: 100px;
  background: var(--surface); font-size: .78rem; color: var(--text-mid); font-weight: 600;
}

/* ── Product Cards ─────────────────────────────────────────────────────────── */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,.4);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 12px; border-radius: 100px;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
}
.badge-gold   { background: var(--gold);    color: var(--navy); }
.badge-blue   { background: var(--blue);    color: var(--white); }
.badge-green  { background: var(--green);   color: var(--white); }
.badge-purple { background: var(--purple);  color: var(--white); }
.badge-red    { background: var(--red);     color: var(--white); }

.product-body {
  padding: 22px; flex: 1;
  display: flex; flex-direction: column;
}
.product-brand {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}
.product-name { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.product-subtitle { font-size: .85rem; color: var(--text-light); margin-bottom: 12px; }
.product-desc { font-size: .88rem; color: var(--text-mid); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.product-meta {
  display: flex; gap: 16px; margin-bottom: 18px;
}
.product-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: .8rem; color: var(--text-light);
}
.product-meta-item svg { color: var(--gold); flex-shrink: 0; }
.product-footer {
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--off-white);
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--navy);
}
.product-price span { font-size: .85rem; font-weight: 400; color: var(--text-light); font-family: 'Inter', sans-serif; }

/* ── Filter Bar ────────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 20px; border-radius: 100px;
  font-size: .875rem; font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-mid); background: var(--white);
  transition: var(--transition); cursor: pointer;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { border-color: var(--gold); background: var(--gold); color: var(--navy); }

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stars {
  display: flex; gap: 4px; margin-bottom: 16px;
  color: var(--gold); font-size: 1rem;
}
.testimonial-text { font-size: .95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: .9rem; font-weight: 600; color: var(--navy); }
.author-detail { font-size: .8rem; color: var(--text-light); }

/* ── Why Choose Us ─────────────────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.why-card {
  display: flex; gap: 20px; padding: 28px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); border-color: rgba(201,169,110,.3); }
.why-icon {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.why-content h4 { margin-bottom: 8px; }
.why-content p { font-size: .9rem; }

/* ── Dark Section (CTA / About) ─────────────────────────────────────────────── */
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.7); }

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920&auto=format&q=60') center/cover;
  opacity: .06;
}
.cta-section > .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.7); margin-bottom: 36px; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Blog / Travel Tips ─────────────────────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-img {
  aspect-ratio: 16/9; overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 22px; }
.blog-tag {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  background: var(--surface); font-size: .75rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 10px;
}
.blog-title { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: .875rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; font-size: .8rem; color: var(--text-light); }

/* ── FAQ Accordion ─────────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(201,169,110,.4); }
.faq-item.open { border-color: var(--gold); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  background: var(--white);
}
.faq-question h4 { font-size: 1rem; font-weight: 600; color: var(--navy); padding-right: 16px; }
.faq-chevron {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--surface); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--gold);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--gold); color: var(--navy); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: var(--off-white);
}
.faq-answer-inner { padding: 0 24px 20px; font-size: .93rem; color: var(--text-mid); line-height: 1.7; }

/* ── Contact ───────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start;
}
.contact-card {
  display: flex; gap: 18px; padding: 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); margin-bottom: 16px;
  transition: var(--transition);
  text-decoration: none;
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateX(4px); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.contact-icon.whatsapp { background: #dcfce7; }
.contact-icon.email    { background: #dbeafe; }
.contact-icon.telegram { background: #e0f2fe; }
.contact-info-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 4px; }
.contact-info-value { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-info-sub { font-size: .82rem; color: var(--text-light); }

/* Form */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── About Page ────────────────────────────────────────────────────────────── */
.about-hero {
  background: var(--navy); padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920&auto=format&q=60') center/cover;
  opacity: .12;
}
.about-hero > .container { position: relative; z-index: 2; }
.about-hero h1, .about-hero p { color: var(--white); }
.about-hero p { color: rgba(255,255,255,.7); font-size: 1.15rem; max-width: 600px; margin-top: 20px; }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.value-card {
  text-align: center; padding: 36px 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(201,169,110,.3); }
.value-icon { font-size: 2.4rem; margin-bottom: 18px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }

/* ── Page Hero (non-home) ───────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy); padding: 140px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920&auto=format&q=60') center/cover;
  opacity: .1;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.1rem; margin-top: 14px; max-width: 560px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.breadcrumb .current { color: var(--gold); }

/* ── Product Detail Page ───────────────────────────────────────────────────── */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.product-detail-img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  position: sticky; top: 88px;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-tag {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.product-detail-name { color: var(--navy); margin-bottom: 6px; }
.product-detail-sub  { color: var(--text-light); font-size: 1rem; margin-bottom: 24px; }
.product-detail-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--navy);
  margin-bottom: 24px;
}
.product-detail-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 28px;
}
.product-detail-meta-item {
  padding: 14px 16px; background: var(--off-white);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.product-detail-meta-item label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-light); display: block; margin-bottom: 4px; }
.product-detail-meta-item span  { font-size: .9rem; font-weight: 600; color: var(--navy); }
.benefits-list { margin-bottom: 28px; }
.benefits-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: .93rem; color: var(--text-mid);
}
.benefits-list li:last-child { border: none; }
.benefits-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.product-order-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.product-note {
  padding: 14px 16px;
  background: #fffbeb; border: 1px solid #f59e0b;
  border-radius: 8px; font-size: .85rem; color: #92400e;
}
.product-note::before { content: '⚠️  '; }

.tier-select { margin-bottom: 24px; }
.tier-select label { font-size: .875rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 8px; }
.tier-options { display: flex; flex-direction: column; gap: 8px; }
.tier-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border: 2px solid var(--border); border-radius: 8px;
  cursor: pointer; transition: var(--transition); background: var(--white);
}
.tier-option:hover, .tier-option.selected { border-color: var(--gold); background: rgba(201,169,110,.05); }
.tier-option-name { font-size: .9rem; font-weight: 500; color: var(--navy); }
.tier-option-price { font-weight: 700; color: var(--gold); }

/* ── How It Works (product detail) ─────────────────────────────────────────── */
.how-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.how-item { text-align: center; }
.how-item-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.how-item h4 { font-size: .95rem; margin-bottom: 6px; }
.how-item p  { font-size: .84rem; }

/* ── Stats Strip ───────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,169,110,.1);
  border-bottom: 1px solid rgba(201,169,110,.1);
  padding: 40px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold);
  display: block;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ── Partners Strip ─────────────────────────────────────────────────────────── */
.partners-strip {
  padding: 40px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-label { text-align: center; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 24px; }
.partners-list {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.partner-tag {
  font-size: .92rem; font-weight: 700; color: var(--text-mid);
  padding: 8px 18px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--border);
  white-space: nowrap;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,.1);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white);
  margin-bottom: 14px; display: block;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.6; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h5 {
  font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: .9rem; color: rgba(255,255,255,.6); transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: rgba(255,255,255,.6);
  margin-bottom: 12px; text-decoration: none; transition: var(--transition);
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item .icon { flex-shrink: 0; font-size: 1.1rem; margin-top: 1px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Notification / Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--navy); color: var(--white);
  padding: 14px 22px; border-radius: 10px;
  box-shadow: var(--shadow-lg); border-left: 4px solid var(--gold);
  font-size: .9rem; font-weight: 500;
  transform: translateX(120%); transition: transform .3s ease;
  max-width: 340px;
}
.toast.show { transform: translateX(0); }

/* ── Checkout Page ─────────────────────────────────────────────────────────── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: flex-start;
  padding: 40px 0;
}

.checkout-form-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.checkout-summary-col {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.checkout-section-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin: 24px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-cards        { display: none; }
  .hero-desc         { max-width: 100%; }
  .category-grid     { grid-template-columns: repeat(2, 1fr); }
  .product-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .checkout-grid     { grid-template-columns: 1fr; }
  .checkout-summary-col { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-img { position: static; }
  .how-steps         { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
}

/* Hide Contact Us in nav on all desktops up to wide screens — the nav has 6 menu
   items + search + Shop Now and runs out of room. Contact is still in the footer
   and accessible via Travel Tips → Contact link if needed.
   Only show on very wide displays where it cleanly fits. */
@media (min-width: 769px) and (max-width: 1399px) {
  .nav-cta .btn-outline-white { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle          { display: flex; margin-left: auto; }
  .section             { padding: 56px 0; }
  .section-sm          { padding: 40px 0; }
  .hero-inner          { padding: 48px 0; }
  .hero-trust          { gap: 20px; }
  .testimonial-grid    { grid-template-columns: 1fr; }
  .blog-grid           { grid-template-columns: 1fr; }
  .values-grid         { grid-template-columns: 1fr; }
  .why-grid            { grid-template-columns: 1fr; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .how-list            { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .product-detail-meta { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .checkout-form-col   { padding: 24px 20px; }
}

@media (max-width: 540px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid  { grid-template-columns: 1fr; }
  .hero-cta      { flex-direction: column; }
  .cta-btns      { flex-direction: column; align-items: center; }
  .how-steps     { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 24px; }
}

/* ── Search ─────────────────────────────────────────────────────────────────── */

/* Solid gold button — high contrast against the dark navy nav bar.
   Uses hex (not CSS vars) so it renders correctly even if vars aren't loaded. */
.search-btn {
  display: inline-flex !important;
  align-items: center; gap: 7px;
  padding: 9px 11px;
  border-radius: 8px;
  background: #c9a96e;
  border: 2px solid #c9a96e;
  color: #0d1b2a;
  font-size: .85rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  line-height: 1;
}
.search-btn:hover {
  background: #e8d5a3;
  border-color: #e8d5a3;
  color: #0d1b2a;
  transform: translateY(-1px);
}
.search-btn:active { transform: translateY(0); }
.search-btn svg { display: inline-block; }
.search-btn span { display: none; }  /* icon-only on desktop too — saves nav space */

/* Mobile-only icon button (sits next to hamburger). Hidden on desktop. */
.search-btn-mobile { display: none !important; padding: 8px 10px; }

@media (max-width: 768px) {
  /* Hide the desktop "Search" button (it's inside .nav-cta which is hidden on mobile) */
  .nav-cta .search-btn { display: none !important; }
  /* Show the icon-only mobile one */
  .search-btn-mobile { display: inline-flex !important; }
}

/* ── Overlay ── */
.search-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,12,22,.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; justify-content: center; align-items: flex-start;
  padding: 90px 16px 16px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s, visibility .18s;
}
.search-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

.search-box { width: 100%; max-width: 660px; }

.search-input-row {
  display: flex; align-items: center; gap: 12px;
  background: #1a2a3a;
  border: 2px solid #c9a96e;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.search-input-row svg { color: #c9a96e; flex-shrink: 0; }
.search-input-row input {
  flex: 1; background: none; border: 0; outline: 0;
  font-size: 1.1rem; color: #fff; font-family: inherit;
}
.search-input-row input::placeholder { color: rgba(255,255,255,.3); }
.search-close-btn {
  background: none; border: 0; cursor: pointer;
  color: rgba(255,255,255,.5); padding: 2px; line-height: 0;
}
.search-close-btn:hover { color: #fff; }

.search-hint {
  font-size: .75rem; color: rgba(255,255,255,.3);
  text-align: center; margin: 8px 0 10px;
}
.search-results {
  border-radius: 12px; overflow: hidden;
  max-height: 58vh; overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px;
  background: #1a2a3a;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none; color: #fff; cursor: pointer;
  transition: background .14s;
}
.search-result-item:last-child { border-bottom: 0; }
.search-result-item:hover,
.search-result-item.active { background: rgba(201,169,110,.15); }
.search-result-img {
  width: 50px; height: 50px;
  border-radius: 8px; object-fit: cover; flex-shrink: 0;
  background: #0d1b2a;
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-name {
  font-weight: 600; font-size: .95rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.search-result-sub { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.search-result-price { font-weight: 700; color: #c9a96e; font-size: .95rem; flex-shrink: 0; }
.search-no-results {
  background: #1a2a3a; padding: 32px; text-align: center;
  color: rgba(255,255,255,.35); font-size: .95rem; border-radius: 12px;
}

/* ── Blog (post.html + travel-tips.html dynamic) ───────────────────────────── */

/* Category chips on travel-tips.html */
.blog-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--surface); border: 1.5px solid var(--border);
  color: var(--text-mid); font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.blog-chip:hover { color: var(--navy); border-color: var(--gold-dark); }
.blog-chip.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Post page — hero */
.post-shell { padding-top: 24px; }
.post-hero { padding: 32px 0 24px; }
.post-breadcrumb { margin-bottom: 24px; font-size: .85rem; color: var(--text-light); }
.post-breadcrumb a { color: var(--text-light); }
.post-breadcrumb a:hover { color: var(--gold-dark); }
.post-breadcrumb .current { color: var(--text); font-weight: 500; }
.post-category-pill {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold-dark); margin-bottom: 12px;
}
.post-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15;
  margin-bottom: 16px; max-width: 820px;
}
.post-excerpt {
  font-size: 1.15rem; color: var(--text-mid);
  line-height: 1.55; margin-bottom: 32px; max-width: 740px;
}
.post-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.post-author { display: flex; align-items: center; gap: 12px; }
.post-author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; letter-spacing: .04em;
  background-size: cover; background-position: center;
}
.post-author-name { font-weight: 600; font-size: .92rem; }
.post-meta-line { font-size: .82rem; color: var(--text-light); margin-top: 2px; }
.post-share { display: flex; gap: 8px; }
.post-share-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--surface); color: var(--text-mid);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.post-share-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Cover */
.post-cover {
  max-width: 1080px; margin: 32px auto 0; padding: 0 24px;
}
.post-cover img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius-lg); display: block;
  background: var(--surface);
}

/* Body grid: TOC + main */
.post-body-wrap {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 56px; align-items: flex-start;
  max-width: 1080px; margin: 56px auto;
}
.post-toc {
  position: sticky; top: 96px; align-self: start;
  font-size: .85rem; max-height: calc(100vh - 120px); overflow-y: auto;
  padding-right: 16px;
}
.post-toc-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--text-light); margin-bottom: 12px;
}
.post-toc ol { list-style: none; padding: 0; }
.post-toc li { margin: 6px 0; }
.post-toc a {
  display: block; color: var(--text-mid); text-decoration: none;
  padding: 4px 12px; border-left: 2px solid transparent;
  line-height: 1.4; transition: color .18s, border-color .18s;
}
.post-toc a:hover { color: var(--navy); }
.post-toc a.active { color: var(--gold-dark); border-left-color: var(--gold); }
.post-toc li.lvl-3 a { padding-left: 24px; font-size: .82rem; }

/* Article body */
.post-body { font-size: 1.05rem; line-height: 1.75; color: var(--text); }
.post-body h2 {
  font-size: 1.85rem; margin: 48px 0 16px;
  color: var(--navy); scroll-margin-top: 96px;
}
.post-body h3 {
  font-size: 1.35rem; margin: 36px 0 12px;
  color: var(--navy); scroll-margin-top: 96px;
}
.post-body p { margin: 0 0 18px; color: var(--text); }
.post-body ul, .post-body ol { padding-left: 1.5em; margin: 0 0 18px; list-style: revert; }
.post-body li { margin: 8px 0; }
.post-body a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--gold); }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px; margin: 24px 0;
  color: var(--text-mid); font-style: italic;
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
}
.post-body strong { color: var(--navy); font-weight: 700; }
.post-body img {
  width: 100%; border-radius: var(--radius); margin: 24px 0;
}
.post-body code {
  background: var(--surface); padding: 2px 6px; border-radius: 4px;
  font-family: ui-monospace, 'SF Mono', monospace; font-size: .92em;
  color: var(--navy);
}
.post-body pre {
  background: var(--navy); color: var(--off-white);
  padding: 18px 22px; border-radius: var(--radius);
  overflow-x: auto; margin: 24px 0;
  font-family: ui-monospace, 'SF Mono', monospace; font-size: .9rem; line-height: 1.5;
}
.post-body pre code { background: none; color: inherit; padding: 0; }
.post-body hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.post-body table {
  border-collapse: collapse; width: 100%; margin: 24px 0; font-size: .95rem;
}
.post-body th, .post-body td {
  border: 1px solid var(--border); padding: 10px 14px; text-align: left;
}
.post-body th { background: var(--surface); font-weight: 600; color: var(--navy); }

/* Inline product card embed (rendered by app.js from a placeholder div) */
.post-product-card {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 16px; align-items: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; margin: 24px 0;
  background: var(--off-white);
  text-decoration: none; color: inherit;
  transition: var(--transition);
}
.post-product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--gold); }
.post-product-card img { width: 120px; height: 80px; object-fit: cover; border-radius: 8px; }
.post-product-card .ppc-name { font-weight: 600; color: var(--navy); margin: 2px 0 4px; }
.post-product-card .ppc-sub { font-size: .85rem; color: var(--text-light); }
.post-product-card .ppc-price { font-size: 1.15rem; font-weight: 700; color: var(--gold-dark); white-space: nowrap; }

/* Related sections */
.post-related-products, .post-related-posts {
  background: var(--off-white); padding: 64px 0;
}
.post-related-posts { background: var(--white); border-top: 1px solid var(--border); }

/* Mobile */
@media (max-width: 900px) {
  .post-body-wrap { grid-template-columns: 1fr; gap: 24px; }
  .post-toc { display: none; }
  .post-meta-row { flex-direction: column; align-items: flex-start; }
  .post-share { width: 100%; }
}

/* Loading skeleton */
.post-skeleton-line {
  background: linear-gradient(90deg, var(--surface) 0%, var(--border) 50%, var(--surface) 100%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite;
  border-radius: 4px; height: 16px; margin: 8px 0;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
