/* ─── VARIABLES ─────────────────────────────────────────────────────────────── */
:root {
  --cream: #FDFAF6;
  --light: #F5EDE0;
  --brown: #3D1F00;
  --mocha: #7B4F2E;
  --gold: #C9922A;
  --gold-light: #F0C060;
  --dark: #1a1207;
  --white: #FFFFFF;
  --green: #25D366;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --shadow: 0 8px 40px rgba(61,31,0,0.12);
  --shadow-lg: 0 20px 60px rgba(61,31,0,0.18);
  --radius: 20px;
  --radius-sm: 12px;
}

/* ─── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--dark); line-height: 1.7; font-size: 16px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brown);
  margin-top: 12px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title.white { color: #fff; }

.section-tag {
  display: inline-block;
  background: var(--light);
  color: var(--mocha);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.section-tag.light-tag {
  background: rgba(201,146,42,0.2);
  color: #FFD580;
  border: 1px solid rgba(201,146,42,0.4);
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light { color: #fff; }

/* ─── LAYOUT ────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.bg-cream { background: var(--light); }

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.btn-primary:hover { background: #a87520; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,146,42,0.4); }

.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.45);
  transition: all 0.3s;
  cursor: pointer;
  font-family: var(--font-sans);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-ghost-dark {
  display: inline-block;
  background: transparent;
  color: var(--brown);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--brown);
  transition: all 0.3s;
  cursor: pointer;
}
.btn-ghost-dark:hover { background: var(--brown); color: #fff; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

/* ─── PROMO BANNER ──────────────────────────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(90deg, #3D1F00, #7B4F2E, #3D1F00);
  color: #FFD580;
  text-align: center;
  padding: 11px 50px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  position: relative;
}
.promo-close {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,220,120,0.7); cursor: pointer; font-size: 16px;
}

/* ─── NAVIGATION ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,250,246,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,221,208,0.6);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--mocha));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-serif); font-size: 20px; font-weight: 900;
}
.logo-main { display: block; font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--brown); line-height: 1.1; }
.logo-sub { display: block; font-size: 10px; color: var(--mocha); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--brown); transition: color 0.2s; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:2px; background:var(--gold); transition:width 0.25s; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.btn-cart {
  position: relative; background: var(--light); padding: 10px 16px;
  border-radius: 30px; font-size: 18px; color: var(--brown); transition: all 0.2s;
}
.btn-cart:hover { background: var(--gold); color: #fff; }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: #fff; border-radius: 50%;
  width: 20px; height: 20px; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
}
.nav-hamburger {
  display: none; background: none; border: none; font-size: 24px;
  cursor: pointer; color: var(--brown);
}

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 94vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,12,0,0.85) 0%, rgba(61,31,0,0.6) 60%, rgba(123,79,46,0.4) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 40px 24px; max-width: 860px;
  animation: heroFade 1.1s ease both;
}
@keyframes heroFade { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

.hero-badge {
  display: inline-block;
  background: rgba(201,146,42,0.18);
  border: 1px solid rgba(201,146,42,0.45);
  color: #FFD580;
  font-size: 13px; font-weight: 600;
  padding: 8px 22px; border-radius: 30px;
  letter-spacing: 0.8px; margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 22px; letter-spacing: -1px;
}
.hero-em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: clamp(15px, 2.5vw, 19px);
  opacity: 0.82; max-width: 560px; margin: 0 auto 40px;
  line-height: 1.75; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center; align-items: center;
  gap: 32px; margin-top: 56px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-n { display: block; font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--gold-light); }
.stat-l { display: block; font-size: 13px; opacity: 0.7; letter-spacing: 0.5px; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 6px; height: 6px; background: rgba(255,255,255,0.6); border-radius: 50%;
  animation: scrollBounce 2s infinite; margin: auto;
}
@keyframes scrollBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }


/* ── Scrolling Features Ticker ── */
.features-ticker {
  background: #2a1200;          /* deep brown — matches your site */
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid rgba(212,160,23,0.25);
  border-bottom: 1px solid rgba(212,160,23,0.25);
  position: relative;
}

/* Fade edges for a polished look */
.features-ticker::before,
.features-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.features-ticker::before {
  left: 0;
  background: linear-gradient(to right, #2a1200, transparent);
}
.features-ticker::after {
  right: 0;
  background: linear-gradient(to left, #2a1200, transparent);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 22s linear infinite;
}

/* Pause on hover */
.features-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold, #d4a017);
  letter-spacing: 0.03em;
  padding: 0 28px;
  text-transform: uppercase;
}

.ticker-icon {
  font-size: 16px;
}

.ticker-divider {
  color: rgba(212,160,23,0.4);
  font-size: 12px;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ─── TRUST BAR ─────────────────────────────────────────────────────────────── */
.trust-bar { background: var(--brown); padding: 18px 24px; }
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  color: rgba(255,230,180,0.85);
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 8px; letter-spacing: 0.3px;
}

/* ─── STORY SECTION ─────────────────────────────────────────────────────────── */
.story-section { overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-images { position: relative; }
.story-img-main {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.story-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px; object-fit: cover;
  border-radius: var(--radius-sm); border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}
.story-badge {
  position: absolute; top: -16px; left: -16px;
  background: var(--gold); color: #fff;
  padding: 18px 22px; border-radius: 16px;
  text-align: center; box-shadow: 0 8px 24px rgba(201,146,42,0.45);
}
.badge-num { font-family: var(--font-serif); font-size: 36px; font-weight: 900; line-height: 1; }
.badge-txt { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }

.story-text { }
.story-text p {
  color: var(--mocha); line-height: 1.9; font-size: 16px; margin-top: 18px;
}

/* ─── PRODUCTS ──────────────────────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.35s;
  border: 1px solid rgba(232,221,208,0.5);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-img-wrap { position: relative; height: 260px; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.product-badge.popular { background: var(--brown); }
.product-body { padding: 24px; }
.product-cat {
  font-size: 11px; font-weight: 600; color: var(--mocha);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.product-body h3 {
  font-family: var(--font-serif); font-size: 22px; color: var(--brown);
  margin: 8px 0;
}
.product-body p { color: #888; font-size: 14px; line-height: 1.6; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.product-price { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--gold); }
.btn-add {
  background: var(--light); color: var(--brown);
  padding: 10px 20px; border-radius: 30px; font-weight: 600; font-size: 14px;
  border: 1.5px solid #e8ddd0; transition: all 0.25s; cursor: pointer;
}
.btn-add:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.section-cta { text-align: center; margin-top: 48px; }

/* ─── INGREDIENTS ───────────────────────────────────────────────────────────── */
.ingredients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.ing-card {
  background: #fff; border-radius: 18px; padding: 28px 20px; text-align: center;
  border: 1px solid #e8ddd0; transition: all 0.3s; box-shadow: 0 4px 16px rgba(61,31,0,0.06);
}
.ing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.ing-icon { font-size: 40px; margin-bottom: 12px; }
.ing-name { font-weight: 700; font-size: 15px; color: var(--brown); margin-bottom: 6px; }
.ing-benefit { font-size: 13px; color: var(--mocha); line-height: 1.6; }

/* ─── WHY SECTION ───────────────────────────────────────────────────────────── */
.why-section { position: relative; padding: 100px 0; overflow: hidden; }
.why-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #3D1F00 0%, #5C2E00 100%);
}
.why-section .container { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 32px 24px; text-align: center; transition: all 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.why-icon { font-size: 40px; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-serif); font-size: 20px; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ─── EVENT CTA ─────────────────────────────────────────────────────────────── */
.event-cta-section { padding: 80px 0; }
.event-cta-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--cream);
}
.event-cta-text {
  padding: 60px 52px; background: #fff;
}
.event-cta-text p { color: var(--mocha); line-height: 1.8; margin-top: 16px; font-size: 16px; }
.event-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px;
}
.event-badges span {
  background: var(--light); color: var(--brown);
  padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
}
.event-cta-img { position: relative; min-height: 440px; }
.event-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.event-price-tag {
  position: absolute; bottom: 28px; right: 28px;
  background: var(--gold); color: #fff; padding: 16px 22px;
  border-radius: 16px; text-align: center; font-size: 13px; font-weight: 600;
  box-shadow: 0 8px 28px rgba(201,146,42,0.5);
}
.ep-price { font-family: var(--font-serif); font-size: 28px; font-weight: 800; line-height: 1.1; }

/* ─── REVIEWS ───────────────────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.review-card {
  background: #fff; border-radius: 20px; padding: 28px;
  box-shadow: 0 4px 20px rgba(61,31,0,0.07); border: 1px solid #e8ddd0;
  transition: all 0.3s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.featured-review { border: 2px solid var(--gold); position: relative; }
.featured-review::before {
  content: '⭐ Top Review';
  position: absolute; top: -14px; left: 20px;
  background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px;
  letter-spacing: 0.5px;
}
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.review-text {
  color: #5C3A1E; line-height: 1.75; font-size: 14px; font-style: italic;
  margin-bottom: 20px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--light); }
.reviewer strong { display: block; color: var(--brown); font-size: 15px; }
.reviewer span { font-size: 12px; color: #aaa; }

/* ─── FINAL CTA ─────────────────────────────────────────────────────────────── */
.final-cta {
  padding: 120px 24px; position: relative; overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--brown) 0%, var(--mocha) 50%, #8B4513 100%);
}


/* ── Mobile Nav Overlay ── */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;

    /* Slide in from right */
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: #fff;          /* or var(--brown) for dark drawer */
    padding: 80px 32px 40px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: right 0.35s ease;
    overflow-y: auto;
  }

  /* When open — toggled via JS */
  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
  }

  /* Close button inside drawer */
  .nav-links-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--brown);
    line-height: 1;
  }

  .nav-links-close::before {
    content: '✕';
  }

  /* Dim overlay behind drawer */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
  }

  .nav-overlay.open {
    display: block;
  }
}

/* Hide close button on desktop */
@media (min-width: 769px) {
  .nav-links-close { display: none; }
}
/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.footer { background: #1a1207; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 48px; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 42px; height: 42px; background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all 0.25s; border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--gold); }
.footer-col h4 {
  font-family: var(--font-serif); font-size: 18px; color: #fff;
  margin-bottom: 20px; font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col li { color: rgba(255,255,255,0.55); font-size: 14px; }
.footer-payment { margin-top: 24px; }
.payment-logos { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-logo {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px; text-align: center;
  color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 60px;
}

/* ─── WHATSAPP FAB ──────────────────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 62px; height: 62px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s; text-decoration: none;
  animation: fabPulse 3s infinite;
}
.whatsapp-fab:hover { transform: scale(1.12); }
@keyframes fabPulse { 0%,100%{box-shadow:0 8px 28px rgba(37,211,102,0.45)} 50%{box-shadow:0 8px 40px rgba(37,211,102,0.7)} }

/* ─── SHOP PAGE ─────────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--brown), var(--mocha));
  padding: 80px 24px 60px; text-align: center; color: #fff;
}
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2.5rem,5vw,4rem); font-weight: 900; }
.page-hero p { font-size: 17px; opacity: 0.8; margin-top: 10px; }

.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.filter-sidebar {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); height: fit-content; position: sticky; top: 90px;
}
.filter-sidebar h3 {
  font-family: var(--font-serif); font-size: 20px; color: var(--brown); margin-bottom: 20px;
}
.filter-btn {
  display: block; width: 100%; text-align: left;
  padding: 12px 16px; border-radius: 12px; border: none;
  background: var(--light); color: var(--brown); font-family: var(--font-sans);
  font-size: 15px; font-weight: 500; cursor: pointer; margin-bottom: 8px;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: #fff; }

.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.qty-control { display: flex; align-items: center; gap: 12px; margin: 14px 0; }
.qty-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid #e8ddd0;
  background: #fff; cursor: pointer; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  color: var(--brown);
}
.qty-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.qty-num { font-weight: 700; font-size: 17px; min-width: 28px; text-align: center; color: var(--brown); }

/* ─── CART SIDEBAR ──────────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(26,18,7,0.6);
  backdrop-filter: blur(4px); z-index: 400; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; right: -480px; top: 0; bottom: 0; width: min(480px, 100vw);
  background: #fff; z-index: 500; transition: right 0.38s cubic-bezier(0.25,0.8,0.25,1);
  display: flex; flex-direction: column; box-shadow: -12px 0 48px rgba(0,0,0,0.2);
}
.cart-drawer.open { right: 0; }
.cart-header {
  background: var(--brown); color: #fff; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.cart-header h2 { font-family: var(--font-serif); font-size: 22px; }
.cart-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item {
  display: flex; gap: 14px; padding: 16px; background: var(--cream);
  border-radius: 14px; margin-bottom: 14px; align-items: center;
}
.cart-item-img { width: 70px; height: 70px; border-radius: 12px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; color: var(--brown); font-size: 15px; }
.cart-item-price { color: var(--gold); font-weight: 700; font-size: 14px; margin-top: 2px; }
.cart-item-remove { background: none; border: none; color: #ccc; cursor: pointer; font-size: 20px; transition: color 0.2s; }
.cart-item-remove:hover { color: #e53e3e; }
.cart-footer { padding: 20px; border-top: 1px solid #e8ddd0; background: var(--cream); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.cart-total-label { color: var(--mocha); font-size: 15px; }
.cart-total-amt { font-family: var(--font-serif); font-size: 30px; font-weight: 700; color: var(--brown); }
.cart-empty { text-align: center; padding: 60px 20px; color: #aaa; }
.cart-empty .empty-icon { font-size: 60px; margin-bottom: 16px; }

/* ─── CHECKOUT / PAYMENT MODALS ─────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(26,18,7,0.7);
  backdrop-filter: blur(5px); z-index: 600;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff; border-radius: 28px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto; box-shadow: 0 28px 80px rgba(0,0,0,0.3);
  animation: modalIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalIn { from{opacity:0;transform:scale(0.92) translateY(20px)} to{opacity:1;transform:none} }
.modal-head {
  padding: 28px; border-bottom: 1px solid #e8ddd0;
  display: flex; justify-content: space-between; align-items: center;
}
.modal-head h2 { font-family: var(--font-serif); font-size: 26px; color: var(--brown); }
.modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: #aaa; }
.modal-body { padding: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--mocha); margin-bottom: 7px; letter-spacing: 0.3px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #e8ddd0; border-radius: 12px;
  font-family: var(--font-sans); font-size: 15px;
  color: var(--dark); background: #fff; outline: none; transition: border 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.order-summary {
  background: var(--cream); border-radius: 14px; padding: 16px 18px; margin: 18px 0;
}
.order-line { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; color: var(--brown); }
.order-line.total { font-weight: 700; font-size: 16px; border-top: 1px solid #e8ddd0; margin-top: 8px; padding-top: 10px; }

/* PAYMENT BOX */
.payment-gradient-head {
  background: linear-gradient(135deg, var(--brown), var(--mocha));
  padding: 28px; border-radius: 28px 28px 0 0; color: #fff; position: relative;
}
.payment-gradient-head h2 { font-family: var(--font-serif); font-size: 24px; }
.payment-amount-bar {
  background: rgba(255,245,230,0.12); border: 1px solid rgba(201,146,42,0.3);
  border-radius: 12px; padding: 14px 20px; margin-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.amount-label { font-size: 13px; opacity: 0.75; }
.amount-value { font-family: var(--font-serif); font-size: 28px; font-weight: 800; color: var(--gold-light); }
.bank-detail-block {
  border: 1.5px solid #e8ddd0; border-radius: 16px; overflow: hidden; margin: 18px 0;
}
.bank-row { padding: 14px 18px; border-bottom: 1px solid #e8ddd0; }
.bank-row:last-child { border-bottom: none; }
.bank-row-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: #aaa; margin-bottom: 4px; }
.bank-row-value { font-weight: 700; color: var(--brown); font-size: 15px; }
.acct-number-row {
  display: flex; align-items: center; justify-content: space-between; padding: 14px 18px;
}
.acct-number { font-family: var(--font-serif); font-size: 28px; font-weight: 900; color: var(--brown); letter-spacing: 3px; }
.copy-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 10px; border: none;
  background: #FFF3E0; color: var(--gold); font-weight: 700; font-size: 13px;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-sans);
}
.copy-btn:hover, .copy-btn.copied { background: #e8f5e9; color: #2e7d32; }
.steps-box {
  background: #FFF8EE; border: 1px solid #FFE0A0; border-radius: 14px;
  padding: 16px 18px; margin-bottom: 18px;
}
.steps-box p { font-weight: 700; font-size: 13px; color: var(--mocha); margin-bottom: 10px; }
.steps-box ol { padding-left: 18px; color: var(--mocha); font-size: 13px; line-height: 2.1; }
.whatsapp-notify-btn {
  width: 100%; background: #25D366; color: #fff; border: none;
  padding: 16px; border-radius: 14px; font-weight: 700; font-size: 16px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 10px; font-family: var(--font-sans); transition: background 0.2s;
}
.whatsapp-notify-btn:hover { background: #1da851; }
.success-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  background: #2e7d32; color: #fff; padding: 16px 32px; border-radius: 50px;
  font-weight: 600; font-size: 15px; z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: none; align-items: center; gap: 10px; white-space: nowrap;
  animation: toastIn 0.4s ease;
}
@keyframes toastIn { from{opacity:0;transform:translateX(-50%) translateY(20px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }
.success-toast.show { display: flex; }

/* ─── EVENTS PAGE ───────────────────────────────────────────────────────────── */
.event-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.event-pkg {
  background: #fff; border-radius: 20px; padding: 32px;
  border: 2px solid #e8ddd0; transition: all 0.3s; text-align: center;
  box-shadow: 0 4px 20px rgba(61,31,0,0.06);
}
.event-pkg:hover, .event-pkg.highlight { border-color: var(--gold); box-shadow: 0 12px 40px rgba(201,146,42,0.2); }
.event-pkg.highlight { background: linear-gradient(135deg, #FFF8EE, #FFF3D8); }
.pkg-icon { font-size: 52px; margin-bottom: 16px; }
.pkg-name { font-family: var(--font-serif); font-size: 22px; color: var(--brown); margin-bottom: 8px; }
.pkg-price { font-family: var(--font-serif); font-size: 36px; font-weight: 900; color: var(--gold); margin: 12px 0; }
.pkg-note { font-size: 13px; color: #aaa; margin-bottom: 20px; }

/* ─── CONTACT PAGE ──────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: linear-gradient(135deg, var(--brown), var(--mocha));
  color: #fff; padding: 48px 40px; border-radius: 24px;
}
.contact-info-card h2 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 8px; }
.contact-info-card p { opacity: 0.8; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { font-size: 24px; margin-top: 2px; }
.contact-item-label { font-size: 12px; opacity: 0.65; text-transform: uppercase; letter-spacing: 1px; }
.contact-item-value { font-weight: 600; font-size: 16px; margin-top: 2px; }
.contact-item-value a { color: #FFD580; }
.contact-form-card {
  background: #fff; padding: 44px 40px; border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--brown); margin-bottom: 8px; }
.contact-form-card > p { color: var(--mocha); margin-bottom: 28px; }

/* ─── ADMIN ─────────────────────────────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: var(--brown); color: #fff;
  padding: 24px 0; position: fixed; top: 0; bottom: 0; left: 0; overflow-y: auto;
}
.admin-logo { padding: 0 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-nav { padding: 20px 12px; }
.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 12px; cursor: pointer;
  transition: all 0.2s; color: rgba(255,255,255,0.7); font-size: 15px;
  margin-bottom: 4px; border: none; background: none; width: 100%; text-align: left;
  font-family: var(--font-sans);
}
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(255,255,255,0.12); color: #fff; }
.admin-main { margin-left: 260px; padding: 32px; flex: 1; background: #f5f0eb; min-height: 100vh; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-topbar h1 { font-family: var(--font-serif); font-size: 28px; color: var(--brown); }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 2px 12px rgba(61,31,0,0.07);
}
.stat-card-num { font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--gold); }
.stat-card-label { font-size: 13px; color: #888; margin-top: 4px; }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img-accent { display: none; }
  .story-images { max-height: 360px; }
  .story-img-main { height: 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .event-cta-card { grid-template-columns: 1fr; }
  .event-cta-img { min-height: 280px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
}

/* ─── MOBILE NAV OVERLAY ────────────────────────────────────────────────────── */
/* Dark overlay backdrop for mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 12, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: 190;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  /* ── Nav ── */
  .nav-inner { height: 64px; padding: 0 16px; }

  /* Slide-in drawer from RIGHT, fully contained */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -280px;
    bottom: 0;
    width: 260px;
    background: #fff;
    padding: 0;
    padding-top: 72px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    transition: right 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 200;
    gap: 0;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { border-bottom: 1px solid rgba(61,31,0,0.07); }
  .nav-links a {
    display: block;
    font-size: 16px;
    padding: 16px 24px;
    color: var(--brown);
    font-weight: 600;
  }
  .nav-links a.active, .nav-links a:hover { color: var(--gold); background: #FFF8EE; }
  .nav-links a::after { display: none; }

  /* Close (X) button inside menu panel */
  .nav-links-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 20px;
    cursor: pointer;
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 201;
  }

  /* Admin link inside the panel */
  .nav-links .admin-link {
    color: var(--mocha);
    font-size: 14px;
    padding: 12px 24px;
  }

  .nav-hamburger { display: block; }
  .nav-actions .btn-order { display: none; }

  /* ── Promo Banner ── */
  .promo-banner {
    font-size: 11px;
    padding: 10px 40px 10px 12px;
    line-height: 1.5;
    text-align: left;
  }

  /* ── Hero ── */
  .hero { min-height: 88vh; }
  .hero-content { padding: 32px 20px; }
  .hero-badge { font-size: 11px; padding: 6px 16px; margin-bottom: 20px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); margin-bottom: 16px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 14px; margin-bottom: 28px; }
  .hero-btns { gap: 12px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    padding: 13px 28px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 36px;
  }
  .stat-div { display: none; }
  .stat-n { font-size: 26px; }
  .stat-l { font-size: 11px; }

  /* ── Trust Bar ── */
  .trust-bar { padding: 14px 16px; }
  .trust-inner {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .trust-item { font-size: 13px; }

  /* ── Sections ── */
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* ── Story ── */
  .story-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-images { max-height: 260px; border-radius: var(--radius); overflow: hidden; }
  .story-img-main { height: 260px; border-radius: var(--radius); }
  .story-badge { top: -12px; left: -8px; padding: 12px 16px; border-radius: 12px; }
  .badge-num { font-size: 26px; }
  .badge-txt { font-size: 10px; }
  .story-text p { font-size: 15px; margin-top: 14px; }
  .story-text .btn-primary { margin-top: 20px !important; }

  /* ── Products ── */
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-img-wrap { height: 220px; }
  .product-body { padding: 18px; }
  .product-body h3 { font-size: 19px; }
  .product-price { font-size: 20px; }
  .btn-add { padding: 9px 16px; font-size: 13px; }

  /* ── Ingredients ── */
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ing-card { padding: 20px 14px; border-radius: 14px; }
  .ing-icon { font-size: 32px; margin-bottom: 8px; }
  .ing-name { font-size: 13px; }
  .ing-benefit { font-size: 11px; }

  /* ── Why Section ── */
  .why-section { padding: 60px 0; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 22px 16px; border-radius: 16px; }
  .why-icon { font-size: 32px; margin-bottom: 10px; }
  .why-card h3 { font-size: 17px; }
  .why-card p { font-size: 13px; }

  /* ── Event CTA ── */
  .event-cta-section { padding: 48px 0; }
  .event-cta-card { grid-template-columns: 1fr; border-radius: 20px; }
  .event-cta-text { padding: 32px 24px; }
  .event-cta-text p { font-size: 14px; }
  .event-badges { gap: 8px; margin-top: 16px; }
  .event-badges span { font-size: 12px; padding: 6px 12px; }
  .event-cta-img { min-height: 220px; }
  .event-price-tag { bottom: 16px; right: 16px; padding: 12px 16px; border-radius: 12px; }
  .ep-price { font-size: 22px; }
  .event-cta-text > div:last-child {
    margin-top: 24px !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  .event-cta-text .btn-primary,
  .event-cta-text .btn-ghost-dark { width: 100%; text-align: center; display: block !important; }

  /* ── Reviews ── */
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 22px 20px; border-radius: 16px; }
  .review-text { font-size: 13px; }

  /* ── Final CTA ── */
  .final-cta { padding: 72px 20px; }
  .final-cta div[style] > div[style] {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .final-cta .btn-primary,
  .final-cta .btn-ghost {
    width: 100%;
    text-align: center;
    display: block !important;
    font-size: 16px !important;
    padding: 16px 28px !important;
    box-sizing: border-box;
  }

  /* ── Footer ── */
  .footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col h4 { font-size: 16px; margin-bottom: 14px; }
  .footer-bottom { padding: 20px 16px; margin-top: 36px; font-size: 12px; }

  /* ── WhatsApp FAB ── */
  .whatsapp-fab { width: 54px; height: 54px; font-size: 26px; bottom: 20px; right: 20px; }

  /* ── Cart Drawer ── */
  .cart-drawer { width: 100vw; right: -100vw; }
  .cart-drawer.open { right: 0; }

  /* ── Modals ── */
  .modal-box { border-radius: 20px; }
  .modal-head { padding: 20px; }
  .modal-body { padding: 20px; }

  /* ── Shop Page ── */
  .page-hero { padding: 60px 16px 40px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; border-radius: 16px; }
  .shop-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ── Events Page ── */
  .event-packages { grid-template-columns: 1fr; gap: 16px; }
  .event-pkg { padding: 24px 20px; }

  /* ── Contact Page ── */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-card, .contact-form-card { padding: 28px 20px; border-radius: 16px; }
  .contact-info-card h2, .contact-form-card h2 { font-size: 1.6rem; }

  /* ── Form ── */
  .form-row { grid-template-columns: 1fr; }

  /* ── Admin ── */
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; position: relative; }
  .admin-main { margin-left: 0; padding: 20px 16px; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
}
