/* ============================================================
   ZOYFUL — Global Stylesheet
   Palette: cream #FBF1E2 · choc #5B3A1F · gold #D9A646 · pink #FF8C7A
   ============================================================ */

/* ── RESET & ROOT ── */
:root {
  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'Nunito', system-ui, sans-serif;
  --hand:  'Caveat', cursive;
  --bg:    #FBF1E2;
  --choc:  #5B3A1F;
  --choc2: #8B5A2E;
  --gold:  #D9A646;
  --cream: #FFF8EC;
  --pink:  #FF8C7A;
  --ink:   #2A1B0F;
  --shadow: 0 8px 32px rgba(91,58,31,0.14);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); font-family: var(--sans); color: var(--ink); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-gap { padding: 80px 0; }
.section-gap-sm { padding: 48px 0; }
.text-choc  { color: var(--choc); }
.text-gold  { color: var(--gold); }
.text-pink  { color: var(--pink); }
.text-choc2 { color: var(--choc2); }
.bg-cream   { background: var(--cream); }
.bg-choc    { background: var(--choc); }

/* ── ANIMATIONS ── */
@keyframes marquee        { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bob            { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fade-up        { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pop-in         { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(1); } }
@keyframes slide-in-right { from { transform: translateX(110%); } to { transform: translateX(0); } }
@keyframes confetti-fall  { 0% { transform: translateY(-20px) rotate(0); opacity: 0; } 10% { opacity: 1; } 100% { transform: translateY(100vh) rotate(720deg); opacity: 0; } }
@keyframes spin           { to { transform: rotate(360deg); } }

.fade-up { animation: fade-up .6s ease both; }
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .2s; }
.fade-up-d3 { animation-delay: .3s; }

/* ── PROMO BAR ── */
.promo-bar { background: var(--choc); color: var(--cream); font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 9px 0; overflow: hidden; }
.promo-bar .marquee-track { display: inline-flex; gap: 40px; animation: marquee 32s linear infinite; white-space: nowrap; padding-right: 40px; }
.promo-bar .dot { color: var(--gold); margin: 0 4px; }

/* ── NAVIGATION ── */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 48px; border-bottom: 2px solid rgba(91,58,31,.1); background: var(--bg); position: sticky; top: 0; z-index: 100; }
.nav-logo img { height: 52px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { color: var(--choc); font-weight: 700; font-size: 14px; padding: 8px 14px; border-radius: 999px; transition: background .15s; }
.nav-links a:hover, .nav-links a.active { background: rgba(91,58,31,.09); }
.nav-icons { display: flex; align-items: center; gap: 8px; }
.nav-icon { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1.5px solid rgba(91,58,31,.2); cursor: pointer; background: transparent; font-size: 16px; transition: all .15s; position: relative; }
.nav-icon:hover { background: var(--choc); color: var(--cream); border-color: var(--choc); }
.nav-hamburger { display: none; width: 38px; height: 38px; border-radius: 50%; align-items: center; justify-content: center; border: 1.5px solid rgba(91,58,31,.2); cursor: pointer; background: transparent; font-size: 18px; color: var(--choc); flex-shrink: 0; }
.nav-hamburger:hover { background: rgba(91,58,31,.09); }
.cart-count { display: none; position: absolute; top: -4px; right: -4px; background: var(--pink); color: white; width: 18px; height: 18px; border-radius: 50%; font-size: 10px; font-weight: 900; align-items: center; justify-content: center; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; border-radius: 999px; padding: 14px 28px; font-size: 15px; font-weight: 800; transition: all .2s; }
.btn-primary { background: var(--choc); color: var(--cream); }
.btn-primary:hover { background: var(--gold); color: var(--choc); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,58,31,.22); }
.btn-outline { background: transparent; color: var(--choc); border: 2px solid var(--choc); }
.btn-outline:hover { background: var(--choc); color: var(--cream); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--choc); }
.btn-gold:hover { background: var(--choc); color: var(--cream); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── PILLS ── */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.pill-pink  { background: var(--pink);  color: white; }
.pill-gold  { background: var(--gold);  color: var(--choc); }
.pill-cream { background: var(--cream); color: var(--choc); border: 1.5px solid rgba(91,58,31,.2); }
.pill-choc  { background: var(--choc);  color: var(--cream); }

/* ── SECTION HEADING ── */
.section-heading { text-align: center; margin-bottom: 56px; }
.section-eyebrow { font-family: var(--hand); font-size: 26px; color: var(--pink); display: block; transform: rotate(-1deg); margin-bottom: 8px; }
.section-title { font-family: var(--serif); font-size: 52px; line-height: 1; color: var(--choc); font-weight: 400; letter-spacing: -.02em; }
.section-title em { font-style: italic; color: var(--pink); }
.section-sub { font-size: 16px; color: var(--choc2); font-weight: 500; margin-top: 14px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ── CART TOAST ── */
.cart-toast { position: fixed; top: 80px; right: 24px; z-index: 700; padding: 13px 20px; border-radius: 14px; background: white; box-shadow: 0 12px 30px rgba(91,58,31,.16); font-weight: 700; color: var(--choc); display: flex; align-items: center; gap: 10px; animation: pop-in .35s cubic-bezier(.2,1.4,.4,1); max-width: 320px; }
.cart-toast-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--choc); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.cart-toast.warning { background: #FFF1EC; color: #8A3B1F; }
.cart-toast.warning .cart-toast-icon { background: var(--pink); color: #fff; }

/* ── CART DRAWER ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(42,27,15,.35); z-index: 499; }
.cart-drawer  { position: fixed; top: 0; right: 0; width: 400px; max-width: 95%; height: 100vh; background: var(--cream); box-shadow: -20px 0 40px rgba(91,58,31,.18); z-index: 500; animation: slide-in-right .35s cubic-bezier(.2,.8,.3,1); display: flex; flex-direction: column; }
.cart-header  { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 2px solid rgba(91,58,31,.1); }
.cart-header h2 { font-family: var(--serif); font-size: 24px; color: var(--choc); }
.cart-close   { border: none; background: transparent; cursor: pointer; font-size: 20px; color: var(--choc); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.cart-close:hover { background: rgba(91,58,31,.1); }
.cart-body    { flex: 1; padding: 20px 24px; overflow-y: auto; }
.cart-empty   { text-align: center; padding: 48px 0; color: var(--choc2); font-size: 14px; font-weight: 600; opacity: .6; }
.cart-item    { display: flex; gap: 12px; padding: 14px; background: var(--bg); border-radius: 14px; margin-bottom: 10px; align-items: center; }
.cart-item-thumb { width: 56px; height: 56px; background: #EFD9B6; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 800; color: var(--choc); font-size: 13px; }
.cart-item-meta { font-size: 11px; color: rgba(91,58,31,.5); margin-top: 2px; }
.cart-item-price { font-weight: 800; color: var(--choc); margin-top: 4px; }
.cart-item-remove { border: none; background: rgba(91,58,31,.08); border-radius: 50%; width: 28px; height: 28px; cursor: pointer; font-size: 13px; color: var(--choc); flex-shrink: 0; transition: background .15s; }
.cart-item-remove:hover { background: var(--pink); color: white; }
.cart-footer  { padding: 18px 24px; border-top: 2px solid rgba(91,58,31,.1); }
.ship-nudge   { display: none; margin-bottom: 12px; padding: 10px 14px; background: #FFF3DC; border-radius: 10px; font-size: 12px; color: var(--choc); font-weight: 700; border: 1px solid rgba(217,166,70,.3); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 14px; font-weight: 700; color: var(--choc); font-size: 16px; }
.checkout-btn { width: 100%; background: var(--choc); color: var(--cream); border: none; border-radius: 12px; padding: 14px; font-weight: 800; font-size: 14px; cursor: pointer; font-family: var(--sans); transition: background .2s; }
.checkout-btn:hover { background: var(--gold); color: var(--choc); }

/* ── CONFETTI ── */
#confetti { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 800; }

/* ── HERO (PDP) ── */
.hero { display: grid; grid-template-columns: 1.1fr 1fr; height: 680px; align-items: stretch; }

/* SLIDER */
.slider-panel { position: relative; background: linear-gradient(150deg, #F5E8D0 0%, #EDD9B8 100%); overflow: hidden; display: flex; flex-direction: column; height: 680px; }
.slider-main  { position: relative; overflow: hidden; flex: 1; min-height: 0; }
.slider-main::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,248,236,.85) 0%, rgba(255,248,236,0) 68%); z-index: 1; pointer-events: none; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .55s ease; display: flex; align-items: center; justify-content: center; padding: 24px; }
.slide.active { opacity: 1; z-index: 2; }
.slide img { max-width: 90%; max-height: 90%; width: auto; height: auto; object-fit: contain; position: relative; z-index: 3; filter: drop-shadow(0 20px 40px rgba(91,58,31,.18)); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,248,236,.92); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--choc); box-shadow: 0 4px 16px rgba(91,58,31,.18); transition: all .2s; backdrop-filter: blur(4px); }
.slider-arrow:hover { background: var(--choc); color: var(--cream); transform: translateY(-50%) scale(1.08); }
.arrow-prev { left: 14px; } .arrow-next { right: 14px; }
.thumb-strip { display: flex; gap: 8px; padding: 12px 16px; background: rgba(255,248,236,.55); overflow-x: auto; scrollbar-width: none; flex-shrink: 0; height: 88px; align-items: center; }
.thumb-strip::-webkit-scrollbar { display: none; }
.thumb { width: 64px; height: 64px; border-radius: 12px; overflow: hidden; border: 2.5px solid transparent; cursor: pointer; transition: all .2s; flex-shrink: 0; background: rgba(255,248,236,.7); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--choc); box-shadow: 0 4px 12px rgba(91,58,31,.22); }
.thumb:hover:not(.active) { border-color: rgba(91,58,31,.35); transform: translateY(-2px); }
.slide-counter { position: absolute; bottom: 100px; right: 14px; z-index: 10; background: rgba(255,248,236,.88); backdrop-filter: blur(6px); border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 800; color: var(--choc); }
.variant-pills { position: absolute; top: 16px; left: 16px; z-index: 10; display: flex; flex-direction: column; gap: 7px; }
.var-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 999px; font-size: 12px; font-weight: 800; cursor: pointer; transition: all .2s; backdrop-filter: blur(8px); border: none; font-family: var(--sans); }
.var-pill.peanut  { background: rgba(91,58,31,.88); color: var(--cream); }
.var-pill.nutty   { background: rgba(255,248,236,.88); color: var(--choc); border: 1.5px solid rgba(91,58,31,.25); }
.var-pill.inactive { opacity: .4; }

/* PRODUCT INFO */
.hero-info { padding: 40px 48px; display: flex; flex-direction: column; justify-content: center; background: var(--bg); overflow-y: auto; }
.breadcrumb { font-size: 11px; color: var(--choc2); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; opacity: .75; }
.eyebrow { font-family: var(--hand); font-size: 26px; color: var(--pink); font-weight: 700; transform: rotate(-1.5deg); display: inline-block; margin-bottom: 6px; }
.product-title { font-family: var(--serif); font-size: 52px; line-height: .92; font-weight: 400; color: var(--choc); letter-spacing: -.02em; margin-bottom: 6px; }
.product-title em { font-style: italic; color: var(--pink); }
.product-sub { font-size: 13px; font-weight: 700; color: var(--choc2); margin-bottom: 12px; font-family: var(--serif); font-style: italic; }
.stars-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.tagline { font-size: 13px; line-height: 1.65; color: var(--choc2); font-weight: 500; margin-bottom: 18px; border-left: 3px solid var(--gold); padding-left: 14px; }
.variant-tabs { display: flex; gap: 10px; margin-bottom: 16px; }
.vtab { flex: 1; padding: 10px 12px; border-radius: 14px; border: 2px solid rgba(91,58,31,.15); background: transparent; cursor: pointer; font-family: var(--sans); text-align: left; transition: all .2s; }
.vtab.active { border-color: var(--choc); background: var(--cream); box-shadow: 0 4px 16px rgba(91,58,31,.12); }
.vtab-name { font-size: 13px; font-weight: 800; color: var(--choc); }
.vtab-desc { font-size: 11px; color: var(--choc2); font-weight: 600; margin-top: 3px; }
.badge-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.badge-card { background: var(--cream); border: 1px solid rgba(91,58,31,.12); border-radius: 12px; padding: 9px 12px; display: flex; align-items: center; gap: 9px; }
.badge-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--choc); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.badge-text { font-weight: 700; color: var(--choc); font-size: 12px; }
.size-label { font-size: 11px; font-weight: 800; color: var(--choc); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.size-picker { display: flex; gap: 10px; margin-bottom: 16px; }
.size-opt { flex: 1; border: 2px solid rgba(91,58,31,.15); border-radius: 14px; padding: 10px 12px; cursor: pointer; background: transparent; font-family: var(--sans); text-align: left; transition: all .2s; }
.size-opt.active { border-color: var(--choc); background: var(--cream); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(91,58,31,.14); }
.s-weight { font-size: 12px; font-weight: 700; color: var(--choc2); }
.s-price  { font-size: 20px; font-weight: 900; color: var(--choc); line-height: 1.2; }
.s-og     { font-size: 11px; color: rgba(91,58,31,.38); text-decoration: line-through; }
.s-save   { font-size: 10px; font-weight: 800; color: var(--pink); text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }
.cta-row  { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.qty-box  { display: inline-flex; align-items: center; gap: 4px; background: var(--cream); border-radius: 12px; padding: 6px 8px; border: 1.5px solid rgba(91,58,31,.15); flex-shrink: 0; height: 50px; }
.qty-btn  { width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer; font-weight: 800; background: transparent; color: var(--choc); font-size: 18px; display: inline-flex; align-items: center; justify-content: center; transition: all .15s; }
.qty-btn:hover { background: rgba(91,58,31,.09); }
.qty-num  { width: 28px; text-align: center; font-weight: 900; color: var(--choc); font-size: 16px; }
.add-btn  { flex: 1; background: var(--choc); color: var(--cream); border: none; border-radius: 12px; padding: 13px 18px; font-size: 15px; font-weight: 800; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans); transition: all .2s; height: 50px; }
.add-btn:hover { background: var(--gold); color: var(--choc); transform: translateY(-2px); }
.wish-btn { background: transparent; border: 1.5px solid rgba(91,58,31,.18); border-radius: 12px; width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; transition: all .2s; flex-shrink: 0; }
.wish-btn:hover { background: var(--pink); color: white; border-color: var(--pink); }
.ship-row { display: flex; gap: 12px; font-size: 11px; color: var(--choc2); font-weight: 600; flex-wrap: wrap; margin-bottom: 16px; }
.ship-item { display: inline-flex; align-items: center; gap: 5px; }
.ship-dot  { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.perfect-for { background: var(--cream); border: 1.5px solid rgba(91,58,31,.12); border-radius: 16px; padding: 12px 16px; }
.pf-title { font-size: 11px; font-weight: 800; color: var(--choc); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.pf-items { display: flex; gap: 6px; flex-wrap: wrap; }
.pf-tag   { background: rgba(91,58,31,.07); border-radius: 999px; padding: 5px 11px; font-size: 11px; font-weight: 700; color: var(--choc); }

/* ── INGREDIENT STRIP ── */
.ing-strip { display: flex; align-items: center; gap: 28px; padding: 15px 48px; background: var(--cream); border-top: 2px dashed rgba(91,58,31,.15); border-bottom: 2px dashed rgba(91,58,31,.15); flex-wrap: wrap; }
.ing-label { font-size: 11px; font-weight: 800; color: var(--choc); text-transform: uppercase; letter-spacing: .1em; }
.ing-item  { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--choc2); }
.ing-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ── PROOF BAND ── */
.proof-band { display: grid; grid-template-columns: repeat(4,1fr); background: var(--choc); padding: 28px 48px; }
.proof-stat { text-align: center; padding: 0 16px; border-right: 1px solid rgba(255,255,255,.12); }
.proof-stat:last-child { border-right: none; }
.proof-num   { font-family: var(--serif); font-size: 36px; color: var(--gold); font-weight: 400; line-height: 1; }
.proof-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,248,236,.65); margin-top: 6px; }

/* ── ABOUT SECTION ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 32px; width: 100%; object-fit: cover; }
.about-img-badge { position: absolute; top: -20px; left: -15px; background: var(--gold); color: var(--choc); border-radius: 50%; width: 80px; height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; text-align: center; line-height: 1.3; box-shadow: 0 12px 28px rgba(91,58,31,.2); animation: bob 4s ease-in-out infinite; }
.about-img-badge span { font-family: var(--serif); font-size: 22px; font-weight: 400; display: block; line-height: 1; }
.about-content h2 { font-family: var(--serif); font-size: 48px; line-height: 1; color: var(--choc); margin-bottom: 20px; }
.about-content h2 em { font-style: italic; color: var(--pink); }
.about-content p { font-size: 15px; line-height: 1.7; color: var(--choc2); margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about-value  { background: var(--cream); border: 1.5px solid rgba(91,58,31,.12); border-radius: 14px; padding: 14px 16px; display: flex; align-items: flex-start; gap: 10px; }
.about-value-icon { font-size: 22px; }
.about-value-text  { font-size: 13px; font-weight: 700; color: var(--choc); }
.about-value-sub   { font-size: 11px; color: var(--choc2); font-weight: 500; margin-top: 2px; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card  { background: var(--cream); border: 1.5px solid rgba(91,58,31,.1); border-radius: 20px; padding: 24px; transition: transform .2s, box-shadow .2s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text  { font-size: 14px; line-height: 1.65; color: var(--choc2); font-weight: 500; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--choc); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.review-name   { font-weight: 800; color: var(--choc); font-size: 13px; }
.review-meta   { font-size: 11px; color: var(--choc2); margin-top: 1px; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid rgba(91,58,31,.12); }
.faq-q    { width: 100%; background: transparent; border: none; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); font-size: 15px; font-weight: 800; color: var(--choc); text-align: left; transition: color .15s; }
.faq-q:hover { color: var(--choc2); }
.faq-chevron { font-size: 18px; transition: transform .25s; flex-shrink: 0; margin-left: 16px; }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a { font-size: 14px; line-height: 1.7; color: var(--choc2); font-weight: 500; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-a.open { max-height: 200px; padding-bottom: 20px; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 8px 24px rgba(0,0,0,.22); transition: transform .2s; text-decoration: none; }
.wa-float:hover { transform: scale(1.1); }

/* ── FOOTER ── */
.footer { background: var(--choc); color: var(--cream); padding: 56px 48px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.65; color: rgba(255,248,236,.65); }
.footer-col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 13px; color: rgba(255,248,236,.7); font-weight: 600; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,248,236,.45); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,248,236,.6); }
.footer-bottom a:hover { color: var(--cream); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .slider-panel { height: 480px; flex-shrink: 0; }
  .hero-info { height: auto; overflow-y: visible; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .proof-band { grid-template-columns: repeat(2,1fr); gap: 24px; padding: 28px 24px; }
  .proof-stat { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { padding: 12px 20px; position: sticky; top: 0; justify-content: space-between; }
  .nav-hamburger { display: inline-flex; order: -1; }
  .nav-logo { position: static; }
  .nav-logo img { height: 46px; display: block; }
  .nav-icons { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 2px solid rgba(91,58,31,.1);
    padding: 10px 20px 16px; box-shadow: 0 12px 20px rgba(91,58,31,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .hero-info { padding: 28px 24px; }
  .ing-strip { padding: 15px 24px; }
  .section-title { font-size: 38px; }
  .section-gap { padding: 50px 0; }
  .section-gap-sm { padding: 28px 0; }
  .footer { padding: 50px 24px 28px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .proof-band { grid-template-columns: 1fr 1fr; }
  .badge-row { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .checkout-body { padding: 16px 20px 24px; }
  .checkout-header { padding: 18px 20px 0; }
}

/* ── CHECKOUT MODAL ── */
.checkout-overlay { position: fixed; inset: 0; background: rgba(42,27,15,.5); z-index: 600; display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.checkout-modal { background: var(--cream); border-radius: 24px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 60px rgba(91,58,31,.28); animation: pop-in .35s cubic-bezier(.2,1.4,.4,1); }
.checkout-modal::-webkit-scrollbar { width: 4px; }
.checkout-modal::-webkit-scrollbar-thumb { background: rgba(91,58,31,.2); border-radius: 4px; }
.checkout-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px 0; }
.checkout-header h2 { font-family: var(--serif); font-size: 26px; color: var(--choc); }
.checkout-close { border: none; background: transparent; cursor: pointer; font-size: 20px; color: var(--choc); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.checkout-close:hover { background: rgba(91,58,31,.1); }
.checkout-body { padding: 20px 28px 28px; }
.checkout-section-title { font-size: 11px; font-weight: 800; color: var(--choc); text-transform: uppercase; letter-spacing: .1em; margin: 20px 0 12px; }
.checkout-section-title:first-child { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; min-width: 0; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--choc2); }
.form-group input, .form-group textarea, .form-group select { background: var(--bg); border: 1.5px solid rgba(91,58,31,.18); border-radius: 10px; padding: 10px 14px; font-size: 14px; font-family: var(--sans); color: var(--ink); outline: none; transition: border-color .15s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--choc); }
.form-group textarea { resize: none; height: 72px; }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: var(--pink); }
.form-error-msg { font-size: 11px; color: var(--pink); font-weight: 700; margin-top: 2px; }
.checkout-order-summary { background: var(--bg); border-radius: 14px; padding: 14px 16px; margin-bottom: 16px; }
.checkout-order-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; color: var(--choc2); font-weight: 600; }
.checkout-order-row.total { font-size: 16px; font-weight: 900; color: var(--choc); border-top: 1.5px dashed rgba(91,58,31,.15); margin-top: 8px; padding-top: 10px; }
.pay-btn { width: 100%; background: var(--choc); color: var(--cream); border: none; border-radius: 14px; padding: 16px; font-size: 16px; font-weight: 800; cursor: pointer; font-family: var(--sans); transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; }
.pay-btn:hover { background: var(--gold); color: var(--choc); transform: translateY(-2px); }
.pay-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.razorpay-badge { text-align: center; margin-top: 10px; font-size: 11px; color: rgba(91,58,31,.45); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; }
