/* ═══════════════════════════════════════════════════════════════
   CHINNU FOODS — DESIGN SYSTEM v4
   20% Paper Boat · 20% Apple · 60% Andhra Heritage
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --green:     #1C3A2A;
  --green-l:   #2A5A40;
  --green-d:   #0E2418;
  --gold:      #B8860B;
  --gold-l:    #D4A017;
  --red:       #8B1A1A;
  --cream:     #FAF6EE;
  --cream-d:   #F0E8D8;
  --ink:       #1A1410;
  --muted:     #6B5E4E;
  --white:     #FFFFFF;
  --border:    rgba(184,134,11,0.22);
  --seasonal:  #2E7D32;

  --serif:   'Playfair Display', Georgia, serif;
  --display: 'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;

  --shadow-sm: 0 2px 10px rgba(26,20,16,0.07);
  --shadow-md: 0 8px 32px rgba(26,20,16,0.11);
  --shadow-lg: 0 20px 64px rgba(26,20,16,0.17);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-pill:999px;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button {
  cursor: pointer;
  font-family: var(--sans);
  border: none;
  background: none;
  line-height: 1;
  vertical-align: middle;
}
ul { list-style: none; }

/* ─── LOADER ─────────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green-d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.8s var(--ease-out);
}
#loader.hide { opacity: 0; pointer-events: none; }
.loader-logo-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--gold), 0 8px 32px rgba(0,0,0,0.4);
  animation: pulse 1.6s ease infinite;
}
.loader-text {
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
}
.loader-bar {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.loader-bar::after {
  content: '';
  position: absolute;
  inset-y: 0;
  left: -100%;
  width: 100%;
  background: var(--gold);
  animation: load 1.8s var(--ease-out) forwards;
}
@keyframes load { to { left: 0; } }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(250,246,238,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.65rem 5%;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.45);
  transition: box-shadow 0.4s;
}
nav.scrolled .nav-logo-img { box-shadow: 0 0 0 2px var(--gold); }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.4s;
  line-height: 1.2;
}
nav.scrolled .nav-logo-text { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.25s;
  font-weight: 500;
}
nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--gold); }
nav.scrolled .nav-links a:hover { color: var(--gold); }
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.4s, transform 0.3s;
  border-radius: 2px;
}
nav.scrolled .nav-ham span { background: var(--ink); }
.nav-search-mobile svg { stroke: var(--white); transition: stroke 0.4s; }
nav.scrolled .nav-search-mobile svg { stroke: var(--ink); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-d);
  z-index: 950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 2rem;
  animation: menuFadeIn 0.3s var(--ease-out);
}
.mobile-menu.open { display: flex; }
@keyframes menuFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--cream);
  transition: color 0.25s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 2rem; right: 5%;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ─── NAV CART BUTTON ─────────────────────────────────────────── */
.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.48rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
  background: none;
  white-space: nowrap;
}
nav.scrolled .nav-cart-btn { color: var(--green); border-color: var(--border); }
.nav-cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-count {
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-cart-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}
nav.scrolled .nav-cart-mobile { color: var(--ink); }
.nav-cart-mobile .cart-count { position: absolute; top: -4px; right: -4px; }
@media(max-width:900px) {
  .nav-cart-btn { display: none; }
  .nav-cart-mobile { display: flex; }
}

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.48);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(14,36,24,0.52) 0%,
    rgba(14,36,24,0.42) 40%,
    rgba(14,36,24,0.86) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}
.hero-logo-badge {
  width: 108px; height: 108px;
  border-radius: 50%;
  margin: 0 auto 1.75rem;
  box-shadow: 0 0 0 3px var(--gold), 0 12px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease-spring);
}
.hero-logo-badge:hover { transform: scale(1.05); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-l);
  font-weight: 500;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.28);
}
.hero-h1 em { font-style: italic; color: var(--gold-l); }
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto 2.4rem;
  line-height: 1.85;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  height: 52px;
  min-width: 200px;
  padding: 0 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(184,134,11,0.3);
}
.btn-primary:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  height: 52px;
  min-width: 220px;
  padding: 0 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-sizing: border-box;
}
.btn-outline svg, .btn-outline img { width: 18px; height: 18px; flex-shrink: 0; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-l); }

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--green);
  padding: 0.9rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.trust-item svg { color: var(--gold-l); flex-shrink: 0; }
.trust-div { width: 1px; height: 16px; background: rgba(255,255,255,0.16); }

/* ─── SECTIONS (base) ────────────────────────────────────────── */
section { padding: 6rem 5%; }
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; }
.section-body {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 560px;
}
.divider {
  width: 44px; height: 2px;
  background: var(--gold);
  margin: 1.4rem 0;
  border-radius: 2px;
}
.text-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── OUR STORY ──────────────────────────────────────────────── */
#story { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.story-visual { position: relative; }
.story-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img-main img { width: 100%; height: 100%; }
.story-img-accent {
  position: absolute;
  bottom: -2rem; right: -1.5rem;
  width: 52%;
  aspect-ratio: 1;
  border: 4px solid var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-img-accent img { width: 100%; height: 100%; }
.story-badge {
  position: absolute;
  top: 1.5rem; left: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--serif);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 4px 20px rgba(184,134,11,0.38);
  z-index: 2;
}
.story-badge strong { display: block; font-size: 1.4rem; }
.story-pull {
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--green);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
  line-height: 1.6;
}
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 2rem;
}
.stat-box {
  padding: 1.35rem;
  background: var(--cream-d);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s;
}
.stat-box:hover { box-shadow: var(--shadow-sm); }
.stat-num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--green);
  font-weight: 400;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

/* ─── CATEGORIES ─────────────────────────────────────────────── */
#categories { background: var(--green); }
#categories .section-title { color: var(--cream); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  margin-top: 3.5rem;
}
.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  transition: transform 0.6s var(--ease-smooth);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.08) 55%, transparent 75%);
  transition: background 0.4s;
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 55%, transparent 75%);
}
.cat-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.6rem 1.4rem;
}
.cat-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.cat-count { font-size: 0.72rem; color: rgba(255,255,255,0.65); letter-spacing: 0.07em; }
.cat-arrow {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s var(--ease-out);
}
.cat-card:hover .cat-arrow {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}
.cat-dots, .gift-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
}
.cat-dot, .gift-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(184,134,11,0.25);
  transition: background 0.25s, transform 0.25s;
}
.cat-dot--active, .gift-dot--active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ─── PRODUCT CARDS ──────────────────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}
.prod-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s ease, opacity 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.prod-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--cream-d);
}
.prod-img-wrap img {
  width: 100%; height: 100%;
  transition: transform 0.5s var(--ease-smooth);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.06); }
.prod-badge-tag {
   white-space: nowrap;
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  z-index: 2;
  color: var(--white);
}
.prod-badge-tag + .prod-badge-tag { top: auto; margin-top: 0.35rem; }
.badge-bestseller { background: var(--green); }
.badge-star { background: var(--gold); }
.badge-seasonal {
  background: var(--seasonal);
  color: #fff;
  display: inline-block;
  margin-left: auto;
  padding: 0.22rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.6rem;
  font-weight: 600;
}
.prod-img-wrap .badge-seasonal { position: absolute; top: 0.9rem; left: 0.9rem; }
.prod-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.prod-name {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.prod-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.9rem;
  flex: 1;
}
.prod-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 0.85rem;
  gap: 0.5rem;
  margin-top: auto;
}
.prod-price {
  font-family: var(--serif);
  font-size: 0.92rem;
  color: var(--green);
  font-weight: 600;
}
.prod-price span {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 400;
  font-family: var(--sans);
  margin-left: 0.15rem;
}
.btn-order {
  background: var(--green);
  color: var(--white);
  padding: 0.58rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  white-space: nowrap;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  box-shadow: 0 2px 10px rgba(28,58,42,0.22);
  position: relative;
  overflow: hidden;
}
.btn-order::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.btn-order:hover {
  background: var(--green-l);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(28,58,42,0.32);
}
.btn-order:active { transform: translateY(0); box-shadow: none; }
.por-text { font-size: 0.76rem; color: var(--gold); font-weight: 600; font-family: var(--sans); font-style: italic; }
.por-label { font-size: 0.66rem; color: var(--gold); font-style: italic; }
.btn-enquire { background: var(--gold); }
.btn-enquire:hover { background: var(--gold-l); }
.price-note { margin-top: 4px; font-size: 0.7rem; color: var(--gold); font-style: italic; }

/* ─── BEST SELLERS ───────────────────────────────────────────── */
#bestsellers { background: var(--cream-d); }
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.product-search { margin: 2rem 0 2.5rem; }
.product-search input {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink);
  font-size: 0.93rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.product-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.14);
}
.product-search input::placeholder { color: var(--muted); }

/* ─── ALL PRODUCTS — TABS ────────────────────────────────────── */
#products { background: var(--cream); }
.prod-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.prod-tabs::-webkit-scrollbar { display: none; }
.prod-tab {
  padding: 0.85rem 1.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.prod-tab.active { color: var(--green); border-bottom-color: var(--green); }
.prod-tab:hover { color: var(--green); }
.prod-panel { display: none; }
.prod-panel.active {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  animation: panelFadeIn 0.32s var(--ease-out) both;
}
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
#searchResults {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  justify-content: start;
  gap: 1.5rem;
}

/* ─── GIFT BOXES ─────────────────────────────────────────────── */
#gifts { background: var(--green); }
#gifts .section-title { color: var(--cream); }
#gifts .section-body { color: rgba(255,255,255,0.62); }
.gift-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.gift-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s ease;
  display: flex;
  flex-direction: column;
}
.gift-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gift-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.gift-img-wrap img { width: 100%; height: 100%; transition: transform 0.5s var(--ease-smooth); }
.gift-card:hover .gift-img-wrap img { transform: scale(1.05); }
.gift-body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem; }
.gift-name {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.gift-items { flex: 1; margin-bottom: 1rem; }
.gift-items li {
  font-size: 0.76rem;
  color: var(--muted);
  padding: 0.28rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.gift-items li::before { content: '✦'; color: var(--gold); font-size: 0.52rem; flex-shrink: 0; }
.gift-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.8rem;
}
.gift-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--green);
  font-weight: 600;
}

/* ─── TRUST SECTION ──────────────────────────────────────────── */
#trust { background: var(--cream-d); padding: 5rem 5%; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  margin-top: 3.5rem;
}
.trust-cell {
  background: var(--cream);
  padding: 2.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.trust-cell:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.trust-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: border-color 0.25s;
}
.trust-cell:hover .trust-icon { border-color: var(--gold); }
.trust-label { font-family: var(--serif); font-size: 0.93rem; color: var(--green); font-weight: 600; }
.trust-desc { font-size: 0.76rem; color: var(--muted); line-height: 1.6; }
.fssai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(184,134,11,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.48rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   CLOUD KITCHEN — PREMIUM BANNER
   ═══════════════════════════════════════════════════════════════ */
#cloud-kitchen {
  background: linear-gradient(180deg, #F7F1E7 0%, #EADFCB 100%);
}
#cloud-kitchen .section-eyebrow { color: var(--gold-l); }
#cloud-kitchen .section-title { color: var(--green); }
#cloud-kitchen .section-body { color: var(--muted); }

.ck-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(184,134,11,0.1);
  border: 1px solid rgba(184,134,11,0.28);
  color: var(--ink);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  line-height: 1.55;
  margin-top: 1.5rem;
  text-align: left;
}
.ck-notice svg { flex-shrink: 0; color: var(--gold-l); margin-top: 0.1rem; }
.ck-notice strong { color: var(--gold-l); }

/* ── PREMIUM BANNER ─────────────────────────────────────────── */
/* Inline banner inside #categories */
.ck-banner-inline { margin-top: 1rem !important; }
.ck-banner {
  position: relative;
  margin-top: 3.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 24px 72px rgba(26,20,16,0.22), 0 4px 16px rgba(26,20,16,0.1);
border: 2px solid rgb(144, 105, 7);  will-change: transform;
  transition: box-shadow 0.4s ease;
}
.ck-banner:hover {
  box-shadow: 0 32px 88px rgba(26,20,16,0.28), 0 8px 24px rgba(26,20,16,0.14);
}
.ck-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-smooth);
}
.ck-banner:hover .ck-banner-img { transform: scale(1.025); }
.ck-banner-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14,36,24,0.88) 0%,
    rgba(14,36,24,0.72) 40%,
    rgba(14,36,24,0.18) 70%,
    transparent 100%
  );
}
.ck-banner-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem;
  max-width: 560px;
  width: 100%;
}
.ck-banner-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-l);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}
.ck-banner-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.ck-banner-title em { font-style: italic; color: var(--gold-l); }
.ck-banner-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 400px;
}
.ck-banner-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.ck-banner-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.ck-feature-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-l);
  background: rgba(255,255,255,0.05);
  transition: background 0.25s, border-color 0.25s;
}
.ck-banner:hover .ck-feature-icon {
  background: rgba(184,134,11,0.15);
  border-color: rgba(184,134,11,0.4);
}
.ck-feature-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.ck-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  padding: 0 2.2rem;
  height: 52px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(184,134,11,0.45);
  text-decoration: none;
}
.ck-banner-btn:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,134,11,0.55);
}
.ck-banner-btn:active { transform: translateY(0); }

/* ── CK CARDS GRID ──────────────────────────────────────────── */
.ck-track-wrap { margin-top: 3rem; position: relative; }
.ck-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ck-card {
  background: var(--white);
  border: 1px solid rgba(184,134,11,0.13);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s ease;
  overflow: hidden;
  will-change: transform;
}
.ck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(26,20,16,0.14), 0 4px 14px rgba(26,20,16,0.07);
}
.ck-img-wrap { aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; }
.ck-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-smooth);
}
.ck-card:hover .ck-img-wrap img { transform: scale(1.05); }
.ck-body { padding: 1.4rem 1.5rem 1.65rem; display: flex; flex-direction: column; gap: 0; flex: 1; }
.ck-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,134,11,0.09);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.65rem;
  width: fit-content;
  margin-bottom: 0.8rem;
}
.ck-card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.55rem;
}
.ck-card-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.ck-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  border-top: 1px solid rgba(184,134,11,0.11);
  padding-top: 0.9rem;
}
.ck-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 400;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(184,134,11,0.07);
  line-height: 1.4;
}
.ck-list li:last-child { border-bottom: none; }
.ck-list li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 15px; height: 15px;
  border-radius: 50%;
  background-color: rgba(184,134,11,0.06);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23B8860B' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px 9px;
  border: 1.5px solid rgba(184,134,11,0.3);
}
.ck-seasonal-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--seasonal);
  background: rgba(46,125,50,0.09);
  border: 1px solid rgba(46,125,50,0.22);
  border-radius: var(--radius-pill);
  padding: 0.08rem 0.4rem;
  margin-left: 0.3rem;
}
.ck-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
}
.ck-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(184,134,11,0.25);
  transition: background 0.25s, transform 0.25s;
}
.ck-dot--active { background: var(--gold); transform: scale(1.25); }
.ck-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(184,134,11,0.14);
}
.ck-cta-text { font-size: 1rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ─── FAQ ────────────────────────────────────────────────────── */
#faq { background: var(--cream-d); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 1.15rem 0;
  font-family: var(--serif);
  font-size: 0.96rem;
  color: var(--green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.78;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.2rem; }

/* ─── CONTACT ────────────────────────────────────────────────── */
#contact { background: var(--green); }
#contact .section-title { color: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 3rem auto 0;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: border-color 0.25s;
}
.contact-item:hover .contact-icon { border-color: var(--gold-l); }
.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.contact-val { color: var(--cream); font-size: 0.9rem; }
.contact-val a { color: var(--gold-l); transition: color 0.2s; }
.contact-val a:hover { color: var(--gold); }

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-select, .form-input, .form-textarea {
  width: 100%;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(0,0,0,0.13);
  border-radius: var(--radius-md);
  font-family: var(--sans);
  font-size: 0.87rem;
  color: var(--ink);
  background: var(--cream);
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-select:focus, .form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}
.form-textarea { resize: vertical; min-height: 75px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.req-star { color: var(--red); font-weight: 700; }
.opt-tag { font-size: 0.63rem; font-weight: 400; color: var(--muted); text-transform: none; }
.form-input.input-error { border-color: var(--red); background: rgba(139,26,26,0.04); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--green-d); padding: 4.5rem 5% 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.2rem; }
.footer-logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold);
}
.footer-logo-text { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); font-weight: 600; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 260px; margin-bottom: 1.4rem; }
.footer-fssai {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184,134,11,0.13);
  border: 1px solid rgba(184,134,11,0.28);
  color: var(--gold-l);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links li a { font-size: 0.82rem; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-links li a:hover { color: var(--gold-l); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.74rem; color: rgba(255,255,255,0.28); }

/* ═══════════════════════════════════════════════════════════════
   CART SYSTEM
   ═══════════════════════════════════════════════════════════════ */
.added-toast {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
  z-index: 2000;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(28,58,42,0.35);
}
.added-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Floating cart */
.floating-cart {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s var(--ease-out), box-shadow 0.25s;
  box-shadow: 0 6px 28px rgba(28,58,42,0.45);
  white-space: nowrap;
  will-change: transform;
}
.floating-cart-divider { width: 1px; height: 15px; background: rgba(255,255,255,0.32); flex-shrink: 0; }
.floating-cart-cta { opacity: 0.88; font-weight: 500; }
.floating-cart.visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: all; }
.floating-cart:hover { background: var(--green-l); box-shadow: 0 8px 32px rgba(28,58,42,0.5); }
body.pdp-open .floating-cart,
body.pdp-open .mobile-checkout-bar { z-index: 970; }

/* Mobile checkout bar */
.mobile-checkout-bar {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 810;
  background: var(--green);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 6px 28px rgba(28,58,42,0.45);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.mobile-checkout-bar.visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: all; }
.mobile-checkout-total { font-size: 0.84rem; font-weight: 700; color: var(--gold-l); }
.mobile-checkout-divider { width: 1px; height: 15px; background: rgba(255,255,255,0.32); flex-shrink: 0; }
.mobile-checkout-cta { opacity: 0.88; font-weight: 500; }
@media(max-width:600px) { .mobile-checkout-bar { display: flex; } }
@media(max-width:600px) { .floating-cart { display: none; } }

/* Weight picker */
.modal-sm { max-width: 380px; }
.picker-options { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.5rem; }
.picker-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.2rem;
  border: 1.5px solid rgba(0,0,0,0.11);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.22s var(--ease-out);
  background: var(--white);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.picker-opt::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.22s;
  border-radius: 0 2px 2px 0;
}
.picker-opt:hover {
  border-color: var(--green);
  background: rgba(28,58,42,0.04);
  transform: translateX(2px);
}
.picker-opt:hover::before { opacity: 1; }
.picker-weight { font-family: var(--serif); font-size: 1rem; color: var(--ink); font-weight: 600; }
.picker-price { font-size: 1.05rem; color: var(--green); font-weight: 700; font-family: var(--serif); }

/* Cart drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.16);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#cartDrawer.open .drawer { transform: translateX(0); }
#cartDrawer { pointer-events: none; }
#cartDrawer.open { display: flex; align-items: stretch; justify-content: flex-end; pointer-events: all; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.drawer-footer { padding: 1.25rem 1.5rem 1.5rem; border-top: 1px solid rgba(0,0,0,0.07); }
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-weight { font-size: 0.72rem; color: var(--muted); margin: 0.15rem 0; }
.cart-item-price { font-family: var(--serif); font-size: 0.88rem; color: var(--green); font-weight: 600; }
.cart-item-controls { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.13);
  background: none;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.qty-btn:hover { border-color: var(--green); color: var(--green); }
.qty-value { font-size: 0.86rem; font-weight: 700; color: var(--ink); min-width: 20px; text-align: center; }
.remove-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: none;
  background: none;
  font-size: 0.7rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.2rem;
}
.remove-btn:hover { background: rgba(139,26,26,0.08); color: var(--red); }
.cart-subtotal-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.cart-subtotal-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.cart-subtotal-val { font-family: var(--serif); font-size: 1.4rem; color: var(--green); font-weight: 700; }
.cart-shipping-note {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  padding: 0.6rem 0.85rem;
  background: rgba(184,134,11,0.06);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius-sm);
}
.cart-empty { text-align: center; padding: 3rem 1rem; }
.cart-empty-icon { font-size: 2.8rem; margin-bottom: 1rem; opacity: 0.38; }
.cart-empty-title { font-family: var(--serif); font-size: 1.12rem; color: var(--green); font-weight: 600; margin-bottom: 0.4rem; }
.cart-empty-sub { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14,36,24,0.8);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s var(--ease-out);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  padding: 1.65rem 1.65rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}
.modal-title { font-family: var(--serif); font-size: 1.25rem; color: var(--green); }
.modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border: 1px solid rgba(0,0,0,0.1);
  transition: all 0.2s;
  flex-shrink: 0;
}
.modal-close:hover { background: var(--cream-d); transform: rotate(90deg); }
.modal-body { padding: 1.5rem 1.65rem; }
.modal-prod-name {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--green);
  margin-bottom: 1.3rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.modal-footer { padding: 1rem 1.65rem 1.65rem; }

/* Order flow */
.preview-list { margin-bottom: 1.25rem; }
.preview-item { display: flex; gap: 0.75rem; padding: 0.72rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.preview-num { font-family: var(--serif); font-size: 0.88rem; color: var(--muted); flex-shrink: 0; width: 1.5rem; }
.preview-details { flex: 1; }
.preview-name { font-family: var(--serif); font-size: 0.93rem; color: var(--ink); font-weight: 600; }
.preview-weight { font-size: 0.78rem; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.preview-qty-price { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
.shipping-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  background: rgba(184,134,11,0.06);
  border: 1px solid var(--border);
  padding: 0.78rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 1rem;
}
.shipping-info-box svg { flex-shrink: 0; color: var(--gold); margin-top: 0.1rem; }
.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin: 1rem 0;
  border-top: 1px dashed rgba(0,0,0,0.1);
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.order-total-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.order-total-value { font-family: var(--serif); font-size: 1.5rem; color: var(--green); font-weight: 700; }

/* WA buttons */
.btn-wa-order {
  width: 100%;
  background: #25D366;
  color: var(--white);
  padding: 1rem;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: background 0.25s, transform 0.2s;
}
.btn-wa-order:hover { background: #20ba58; transform: translateY(-1px); }
.btn-wa-note { margin-top: 0.65rem; text-align: center; font-size: 0.72rem; color: var(--muted); }

/* WA redirect overlay */
.wa-redirect-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(14,36,24,0.9);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.wa-redirect-overlay.visible { opacity: 1; pointer-events: all; }
.wa-redirect-box { text-align: center; color: var(--white); }
.wa-redirect-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  animation: wa-icon-pop 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both;
}
.wa-redirect-title { font-family: var(--display); font-size: 1.6rem; color: var(--white); margin-bottom: 0.5rem; }
.wa-redirect-sub { font-size: 0.88rem; color: rgba(255,255,255,0.58); }
@keyframes wa-icon-pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE (PDP)
   ═══════════════════════════════════════════════════════════════ */
#productDetailPage {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--cream);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
#productDetailPage.open { transform: translateX(0); }
.pdp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 5% 7rem;
  /* JS sets opacity/transform for fade-in; this is the settled state */
  opacity: 1;
  transform: translateY(0);
}
@keyframes pdpContentIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pdp-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--ink);
  background: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pdp-back:hover { color: #fff; background: var(--green); border-color: var(--green); }
.pdp-back svg { flex-shrink: 0; }
.pdp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.pdp-image-col { position: sticky; top: 1.5rem; }
.pdp-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream-d);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.pdp-main-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.pdp-img-wrap:hover .pdp-main-img { transform: scale(1.03); }
.pdp-badges { position: absolute; top: 1rem; left: 1rem; display: flex; flex-direction: column; gap: 0.4rem; z-index: 2; }
.pdp-avail-note { margin-top: 0.9rem; font-size: 0.78rem; color: var(--seasonal); font-weight: 500; }
.pdp-info-col { padding-top: 0.5rem; }
.pdp-meta { margin-bottom: 0.75rem; }
.pdp-category-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,134,11,0.1);
  border: 1px solid rgba(184,134,11,0.24);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.7rem;
}
.pdp-title { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: var(--green); line-height: 1.15; margin-bottom: 0.9rem; }
.pdp-description { font-size: 0.94rem; color: var(--muted); line-height: 1.88; margin-bottom: 1.5rem; max-width: 480px; }
.pdp-sizes { margin-bottom: 1.5rem; }
.pdp-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.pdp-size-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pdp-size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.68rem 1.1rem;
  border: 1.5px solid rgba(0,0,0,0.13);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  min-width: 70px;
}
.pdp-size-btn:hover { border-color: var(--green); background: rgba(28,58,42,0.04); }
.pdp-size-btn.active { border-color: var(--green); background: rgba(28,58,42,0.07); }
.pdp-size-label { font-family: var(--serif); font-size: 0.88rem; color: var(--ink); font-weight: 600; }
.pdp-size-price { font-size: 0.73rem; color: var(--green); font-weight: 600; }
.pdp-price-row { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.4rem; }
.pdp-current-price { font-family: var(--serif); font-size: 2rem; color: var(--green); font-weight: 700; }
.pdp-per { font-size: 0.84rem; color: var(--muted); }
.pdp-note { font-size: 0.76rem; color: var(--gold); font-style: italic; margin-bottom: 1rem; }
.pdp-qty-row { margin-bottom: 1rem; }
.pdp-qty-ctrl {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  width: fit-content;
  border: 1.5px solid rgba(0,0,0,0.13);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pdp-qty-btn {
  width: 40px; height: 40px;
  font-size: 1.2rem;
  color: var(--ink);
  background: var(--cream-d);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-qty-btn:hover { background: var(--border); }
.pdp-qty-val { min-width: 44px; text-align: center; font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--ink); }
.pdp-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.pdp-add-btn {
  flex: 1;
  min-width: 140px;
  background: var(--green);
  color: var(--white);
  padding: 0.92rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.pdp-add-btn:hover { background: var(--green-l); transform: translateY(-1px); }
.pdp-wa-btn {
  flex: 1;
  min-width: 140px;
  background: #25D366;
  color: var(--white);
  padding: 0.92rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.25s, transform 0.2s;
}
.pdp-wa-btn:hover { background: #20ba58; transform: translateY(-1px); }
.pdp-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 500;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.pdp-related { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.pdp-section-title { font-family: var(--display); font-size: 1.55rem; font-weight: 400; color: var(--green); margin-bottom: 2rem; }
.pdp-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pdp-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 960;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.09);
  padding: 0.9rem 5%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.09);
}
.pdp-sticky-price { font-family: var(--serif); font-size: 1.3rem; color: var(--green); font-weight: 700; }
.pdp-sticky-btn {
  background: var(--green);
  color: var(--white);
  padding: 0.72rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  flex-shrink: 0;
}
.pdp-sticky-btn:hover { background: var(--green-l); }
.pdp-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; gap: 0.75rem; padding-bottom: 1rem; border-bottom: 1.5px solid var(--border); }
.pdp-topbar-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.pdp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.44rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  font-size: 0.76rem;
  font-family: var(--sans);
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.pdp-share-btn:hover { border-color: var(--green); background: var(--green); color: #fff; }
.pdp-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.pdp-cart-btn:hover { border-color: var(--green); background: var(--green); color: #fff; }
.pdp-cart-btn .pdp-cart-count {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--red);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.pdp-cart-btn .pdp-cart-count[style*="display: none"],
.pdp-cart-btn .pdp-cart-count[style*="display:none"] { display: none !important; }

/* Show more */
.show-more-hidden { display: none !important; }
.show-more-visible {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  animation: fadeSlideIn 0.22s ease both;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.show-more-btn {
  display: block;
  margin: 0.65rem auto 0;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.38rem 1.1rem;
  font-size: 0.73rem;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.show-more-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media(max-width:900px) {
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .prod-panel.active { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-img-accent { right: 1rem; }
  .story-badge { left: 1rem; }
  .gift-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ck-track { grid-template-columns: repeat(2, 1fr); }
  .ck-banner { min-height: 380px; }
  .ck-banner-content { padding: 2.5rem; }
  .ck-banner-title { font-size: clamp(2rem, 5vw, 2.8rem); }
  .pdp-layout { grid-template-columns: 1fr; gap: 2rem; }
  .pdp-image-col { position: static; }
  .pdp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-inner { padding-bottom: 6rem; }
}

@media(max-width:600px) {
  section { padding: 4rem 5%; }
  #searchResults {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  #searchResults .prod-body { padding: 0.85rem; }
  #searchResults .prod-name { font-size: 0.92rem; }
  #searchResults .btn-order { padding: 0.42rem 0.65rem; font-size: 0.63rem; }
  .cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .cat-dots { display: none; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .prod-panel.active { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gift-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gift-grid::-webkit-scrollbar { display: none; }
  .gift-dots { display: flex; }
  .gift-card { flex: 0 0 85%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    justify-items: start;
  }
  .trust-item { width: 100%; text-align: left; font-size: 0.7rem; }
  .trust-div { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Cloud Kitchen mobile */
  .ck-banner {
    min-height: 0;
    aspect-ratio: auto;
    height: auto;
    align-items: flex-end;
    border: 1.5px solid rgba(184,134,11,0.45);
  }
  /* Inline banner (inside #categories): auto-height so nothing clips */
  .ck-banner-inline {
    aspect-ratio: auto;
    min-height: 0;
  }
  .ck-banner-gradient {
    background: linear-gradient(
      to top,
      rgba(14,36,24,0.97) 0%,
      rgba(14,36,24,0.82) 55%,
      rgba(14,36,24,0.25) 100%
    );
  }
  /* Tighten all content so it fits without clipping */
  .ck-banner-content {
    padding: 1.25rem 1.2rem 1.4rem;
    max-width: 100%;
    width: 100%;
  }
  .ck-banner-eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; margin-bottom: 0.35rem; }
  .ck-banner-title { font-size: 1.6rem; margin-bottom: 0.35rem; }
  .ck-banner-sub { font-size: 0.78rem; line-height: 1.5; margin-bottom: 1rem; max-width: 100%; }
  .ck-banner-features {
    gap: 0.85rem;
    margin-bottom: 1.1rem;
    flex-wrap: nowrap;
  }
  .ck-banner-feature { gap: 0.25rem; }
  /* Smaller icon boxes */
  .ck-feature-icon {
    width: 28px;
    height: 28px;
  }
  .ck-feature-icon svg { width: 13px; height: 13px; }
  .ck-feature-label { font-size: 0.58rem; letter-spacing: 0.06em; }
  /* Smaller, less dominating Explore Menu button */
  .ck-banner-btn {
    height: 38px;
    padding: 0 1.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 10px rgba(184,134,11,0.38);
  }
  /* Inline banner on mobile: image fills card with overlay text */
  .ck-banner-inline {
    flex-direction: row;
    align-items: flex-end;
    aspect-ratio: auto;
    min-height: 320px;
    border: 1.5px solid rgba(184,134,11,0.55);
    box-shadow: 0 0 0 1px rgba(184,134,11,0.18), 0 16px 48px rgba(26,20,16,0.28);
  }
  .ck-banner-inline .ck-banner-img {
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }
  .ck-banner-inline .ck-banner-gradient {
    background: linear-gradient(
      to top,
      rgba(10,28,18,0.97) 0%,
      rgba(10,28,18,0.80) 45%,
      rgba(10,28,18,0.25) 80%,
      transparent 100%
    );
  }
  .ck-banner-inline .ck-banner-content {
    background: transparent;
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 1.25rem 1.2rem 1.4rem;
    max-width: 100%;
    width: 100%;
  }
  .ck-track {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: 1.25rem;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }
  .ck-track::-webkit-scrollbar { display: none; }
  .ck-card {
    flex: 0 0 calc(100% - 2.5rem);
    min-width: 0;
  }
  .ck-dots { display: flex; }
  .form-row { grid-template-columns: 1fr; }

  /* PDP mobile */
  .pdp-inner { padding: 1rem 4% 5rem; }
  .pdp-title { font-size: 1.7rem; }
  .pdp-layout { gap: 1.5rem; }
  .pdp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pdp-actions { flex-direction: column; }
  .pdp-add-btn, .pdp-wa-btn { width: 100%; }
}

@media(max-width:360px) {
  .pdp-share-btn span { display: none; }
  .pdp-share-btn { padding: 0.44rem 0.65rem; }
  .pdp-back { font-size: 0.7rem; padding: 0.42rem 0.75rem 0.42rem 0.6rem; }
}
