@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Dancing+Script:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:       #f5e4c8;
  --bg2:      #ebdab8;
  --surface:  #e2cfaa;
  --surf2:    #d7c298;
  --text:     #2c1808;
  --muted:    #7a5030;
  --dim:      #b08060;
  --rose:     #b83a55;
  --rose-lt:  #cc4868;
  --caramel:  #8a5210;
  --car-lt:   #b06a20;
  --cream:    #1c0c06;
  --green:    #287848;
  --border:   #ccb888;
  --border2:  #b8a070;
  --grad:     linear-gradient(135deg, var(--rose) 0%, var(--caramel) 100%);
  --bar-h:    38px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 120% at 50% 50%, transparent 55%, rgba(120,60,10,0.07) 100%),
    radial-gradient(ellipse 60% 40% at   0%   0%, rgba(198,79,107,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(138,82,16,0.05) 0%, transparent 55%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film-grain texture layer — adds the tactile quality of fine matte paper */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 9998; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: multiply;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7vw, 6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p  { font-size: 1rem; color: var(--muted); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, #a0354e 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 22px rgba(198,79,107,0.3), 0 1px 0 rgba(255,255,255,0.07) inset;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--rose-lt) 0%, var(--rose) 100%);
  box-shadow: 0 6px 32px rgba(198,79,107,0.48), 0 1px 0 rgba(255,255,255,0.1) inset;
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border2); }
.btn-outline:hover {
  border-color: var(--rose); color: var(--rose);
  box-shadow: 0 0 0 1px rgba(198,79,107,0.2), 0 4px 16px rgba(198,79,107,0.08);
}

/* Section helpers */
.section { padding: 6rem 0; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before { display: none; }
.section-heading { color: var(--cream); margin-bottom: 1.25rem; }
.section-sub { color: var(--muted); margin-bottom: 3rem; max-width: 52ch; }

/* NAV */
.nav {
  position: fixed; top: var(--bar-h); left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.3s, padding 0.3s;
  /* Dark gradient band keeps nav links readable over any hero background */
  background: linear-gradient(to bottom, rgba(8,4,2,0.65) 0%, rgba(8,4,2,0.2) 70%, transparent 100%);
}
.nav.scrolled {
  background: rgba(245,228,200,0.94);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 24px rgba(100,50,10,0.1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.nav-brand span {
  font-family: 'Dancing Script', cursive;
  font-size: 1.45rem;
  color: var(--rose);
  font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,245,230,0.9);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav.scrolled .nav-links a:not(.btn) { color: var(--muted); }
.nav.scrolled .nav-links a:not(.btn):hover,
.nav.scrolled .nav-links a:not(.btn).active { color: var(--text); }
.nav-links .btn { padding: 0.5rem 1.25rem; color: #fff; }
.nav-links .btn:hover { color: #fff; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(8rem + var(--bar-h)) clamp(2rem, 4vw, 3.5rem) 5rem clamp(2rem, calc((100vw - 1200px) / 2 + 2rem), 7rem);
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before { display: none; }
.hero-headline {
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.hero-headline em {
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  font-size: 1.15em;
  font-weight: 700;
  display: block;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-lt) 60%, var(--caramel) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(184,58,85,0.18));
}
.hero-tagline { color: var(--muted); max-width: 38ch; margin-bottom: 2.5rem; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-note { font-size: 0.72rem; color: var(--dim); letter-spacing: 0.06em; }

.hero-visual {
  position: relative;
  background-color: #0e0a06;
  background-image:
    radial-gradient(ellipse at 25% 30%, rgba(198,79,107,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(192,122,56,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(76,173,118,0.04) 0%, transparent 70%);
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}
.choc-drip {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  color: var(--bg);
  z-index: 2;
}

/* Chocolate orbs */
.choc-orb {
  position: absolute;
  border-radius: 50%;
  box-shadow:
    inset -10px -14px 28px rgba(0,0,0,0.65),
    inset 4px 6px 14px rgba(255,255,255,0.08),
    0 18px 45px rgba(0,0,0,0.5),
    0 0 60px rgba(0,0,0,0.2);
}
.orb-1 { width: 190px; height: 190px; background: radial-gradient(circle at 37% 32%, #7a4030 0%, #3a1808 55%, #1a0804 100%); top: 18%; left: 12%; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 130px; height: 130px; background: radial-gradient(circle at 37% 32%, #f2e8d8 0%, #d8c8a8 42%, #a89878 80%, #786848 100%); top: 10%; left: 52%; animation: float 10s ease-in-out infinite 1.5s; }
.orb-3 { width: 160px; height: 160px; background: radial-gradient(circle at 37% 32%, #8b5030 0%, #2c0e06 70%); top: 43%; left: 32%; animation: float 9s ease-in-out infinite 3s; }
.orb-4 { width: 100px; height: 100px; background: radial-gradient(circle at 37% 32%, #704030 0%, #200a04 70%); top: 28%; left: 70%; animation: float 11s ease-in-out infinite 0.8s; }
.orb-5 { width: 145px; height: 145px; background: radial-gradient(circle at 37% 32%, #eedcc0 0%, #c8b890 45%, #988060 100%); top: 63%; left: 8%; animation: float 9.5s ease-in-out infinite 2s; }
.orb-6 { width: 85px; height: 85px; background: radial-gradient(circle at 37% 32%, #6a3820 0%, #1e0a04 70%); top: 66%; left: 62%; animation: float 12s ease-in-out infinite 4s; }
.orb-7 { width: 65px; height: 65px; background: radial-gradient(circle at 37% 32%, #c64f6b 0%, #6a1830 100%); top: 80%; left: 38%; animation: float 7s ease-in-out infinite 2.5s; box-shadow: inset -6px -8px 18px rgba(0,0,0,0.6), inset 3px 4px 10px rgba(255,255,255,0.08), 0 8px 30px rgba(198,79,107,0.35), 0 0 50px rgba(198,79,107,0.15); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(1.2deg); }
  66%       { transform: translateY(7px) rotate(-0.8deg); }
}

/* Trust band */
.band {
  background: linear-gradient(90deg, rgba(198,79,107,0.04) 0%, var(--bg2) 30%, var(--bg2) 70%, rgba(192,122,56,0.04) 100%);
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band-inner { display: flex; gap: 3rem; flex-wrap: wrap; }
.band-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  transition: color 0.2s;
}
.band-item:hover { color: var(--text); }
.band-item svg { color: var(--caramel); flex-shrink: 0; }

/* Categories */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.cat-card {
  background: var(--surface);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  display: block;
}
.cat-card:hover {
  background: var(--surf2);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
  z-index: 1;
}
.cat-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  transition: width 0.3s;
}
.cat-card:hover::before { width: 4px; }
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.015) 0%, transparent 60%);
  pointer-events: none;
}
.cat-card.chocolates::before { background: var(--rose); }
.cat-card.bars::before       { background: var(--caramel); }
.cat-card.lollypops::before  { background: var(--cream); }
.cat-card.lollipops::before  { background: var(--cream); }
.cat-card.sugarfree::before  { background: var(--green); }
.cat-icon {
  font-size: 2.2rem; margin-bottom: 1.5rem; display: block;
  transition: transform 0.3s;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.cat-card:hover .cat-icon { transform: scale(1.15) rotate(-4deg); }
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.5rem;
}
.cat-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.5rem; max-width: none; }
.cat-count { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dim); }
.cat-arrow {
  position: absolute; bottom: 2rem; right: 2rem;
  color: var(--dim); font-size: 1.2rem;
  transition: color 0.2s, transform 0.2s;
}
.cat-card:hover .cat-arrow { color: var(--rose); transform: translateX(5px); }

/* Featured grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.feat-card {
  background: var(--surface); padding: 2rem 1.75rem;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feat-card:hover { background: var(--surf2); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,0,0,0.1); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.feat-label.rose    { color: var(--rose); }
.feat-label.caramel { color: var(--caramel); }
.feat-label.green   { color: var(--green); }
.feat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.5rem; line-height: 1.3;
}
.feat-desc { font-size: 0.84rem; color: var(--muted); max-width: none; }

/* Prebook callout */
.prebook-callout {
  background: var(--bg2);
  border: 1px solid rgba(198,79,107,0.2);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative; overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), inset 0 1px 0 rgba(255,255,255,0.03);
}
.prebook-callout::before {
  content: '';
  position: absolute; top: -50%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(198,79,107,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.callout-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--rose); color: #fff;
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; margin-bottom: 1.5rem;
}
.callout-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--cream); margin-bottom: 1rem;
}
.callout-heading em {
  font-family: 'Dancing Script', cursive;
  font-style: normal; color: var(--rose);
  font-size: 1.2em; font-weight: 700;
}
.callout-text { color: var(--muted); max-width: 48ch; }

/* Story */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-visual {
  position: relative; height: 380px;
  background: var(--surface); border: 1px solid var(--border); overflow: hidden;
}
.story-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-style: italic; color: var(--cream);
  margin-bottom: 1.75rem; line-height: 1.55;
}
.story-attr { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--caramel); }

/* Footer */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 900; color: var(--cream); margin-bottom: 0.75rem; }
.footer-brand span { font-family: 'Dancing Script', cursive; font-size: 1.7rem; color: var(--rose); }
.footer-tagline { font-size: 0.85rem; color: var(--dim); max-width: 28ch; }
.footer-heading { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.87rem; color: var(--dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--dim); }

/* Page header (menu/order pages) */
.page-header {
  padding: calc(9rem + var(--bar-h)) 0 3.5rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(198,79,107,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute; bottom: -30%; right: 5%;
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(192,122,56,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Filter tabs */
.filter-tabs { display: flex; border: 1px solid var(--border2); width: fit-content; margin-bottom: 3rem; overflow: hidden; }
.filter-tab {
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: transparent;
  border-right: 1px solid var(--border2);
  transition: background 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.filter-tab:last-child { border-right: none; }
.filter-tab.active {
  background: linear-gradient(135deg, var(--rose) 0%, #a0354e 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.filter-tab:not(.active):hover { background: var(--surf2); color: var(--text); }

/* Product sections */
.products-section { margin-bottom: 4.5rem; }
.products-section-heading {
  display: flex; align-items: baseline; gap: 1.25rem;
  margin-bottom: 1.5rem; padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.products-section-heading::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 3rem; height: 1px;
  background: var(--grad);
}
.products-section-heading h2 {
  font-size: 1.5rem;
  color: var(--cream);
}
.products-section-heading .count { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dim); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--border);
  border-left: 1.5px solid var(--border);
}
.product-card {
  background: var(--surface); padding: 1.9rem;
  position: relative; overflow: hidden;
  transition: background 0.25s, box-shadow 0.25s;
  border-right: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 1;
}
.product-card:hover { background: var(--surf2); box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.product-card:hover::before { transform: scaleX(1); }
.product-card-inner { display: flex; gap: 1.2rem; align-items: flex-start; }
.product-card-inner > div:last-child { padding-right: 5rem; min-width: 0; flex: 1; overflow: hidden; }

.product-dot {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  box-shadow: inset -4px -5px 10px rgba(0,0,0,0.5), inset 2px 2px 6px rgba(255,255,255,0.05), 0 4px 10px rgba(0,0,0,0.4);
}
.dot-dark  { background: radial-gradient(circle at 37% 32%, #7a4030, #1a0804); }
.dot-white { background: radial-gradient(circle at 37% 32%, #f2e8d8, #a89878); }
.dot-assorted { background: conic-gradient(#7a4030 0 50%, #f0e8d8 50% 100%); }
.dot-pop   { background: radial-gradient(circle at 37% 32%, #c64f6b, #6a1830); }
.dot-bar-dark  { border-radius: 4px; width: 44px; height: 28px; margin-top: 8px; background: linear-gradient(135deg, #7a4030, #200a04); }
.dot-bar-white { border-radius: 4px; width: 44px; height: 28px; margin-top: 8px; background: linear-gradient(135deg, #f0e8d8, #c4b090); }
.dot-bar-mix   { border-radius: 4px; width: 44px; height: 28px; margin-top: 8px; background: linear-gradient(90deg, #7a4030 50%, #f0e8d8 50%); }
.dot-bar-crisp-dark  { border-radius: 4px; width: 44px; height: 28px; margin-top: 8px; background: linear-gradient(135deg, #5a3020, #150602); }
.dot-bar-crisp-white { border-radius: 4px; width: 44px; height: 28px; margin-top: 8px; background: linear-gradient(135deg, #eedcd0, #b8a898); }

.product-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--cream); margin-bottom: 0.3rem; line-height: 1.3; overflow-wrap: break-word; }
.product-desc { font-size: 0.83rem; color: var(--muted); max-width: none; }
.product-tag { position: absolute; top: 1.4rem; right: 1.4rem; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.18rem 0.55rem; border: 1px solid; }
.tag-choc  { color: var(--rose);    border-color: rgba(198,79,107,0.4); }
.tag-bar   { color: var(--caramel); border-color: rgba(192,122,56,0.4); }
.tag-pop   { color: var(--text);    border-color: var(--border2); }
.tag-sugar { color: var(--green);   border-color: rgba(76,173,118,0.4); }

.product-price {
  display: inline-block;
  font-size: 1.05rem; font-weight: 700; font-variant-numeric: tabular-nums;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
  color: var(--caramel); /* solid fallback — shown if gradient text fails */
  background: linear-gradient(135deg, var(--caramel) 0%, var(--car-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-price-note { font-size: 0.67rem; color: var(--dim); margin-left: 0.3rem; font-weight: 400; }
.badge-best {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--caramel), var(--car-lt));
  color: var(--bg);
  padding: 0.2rem 0.7rem; margin-bottom: 0.6rem;
  box-shadow: 0 2px 10px rgba(192,122,56,0.35);
}

.product-card.assorted { grid-column: 1 / -1; background: var(--bg2); }
.assorted-contents { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.75rem; }
.assorted-item { font-size: 0.72rem; color: var(--dim); background: var(--surface); border: 1px solid var(--border); padding: 0.22rem 0.65rem; }

/* Order page */
.order-page { padding-top: 4rem; padding-bottom: 6rem; }
.order-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }

.form-section { margin-bottom: 2.5rem; }
.form-section-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.form-label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.55rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border2);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 1rem;
  padding: 0.8rem 1rem; transition: border-color 0.2s; outline: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--rose); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--dim); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a7060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }

.item-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem; }
.item-check {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--surface); border: 1px solid var(--border2);
  padding: 0.7rem 0.9rem; cursor: pointer; min-height: 44px;
  transition: border-color 0.15s, background 0.15s;
}
.item-check:hover { border-color: var(--rose); background: var(--surf2); }
.item-check input { accent-color: var(--rose); width: 18px; height: 18px; cursor: pointer; margin-top: 1px; flex-shrink: 0; }
.item-check-name { font-size: 0.83rem; color: var(--text); display: block; line-height: 1.3; }
.item-check-sub  { font-size: 0.68rem; color: var(--dim); display: block; }

.order-sidebar { position: sticky; top: 6rem; }
.sidebar-card { background: var(--surface); border: 1px solid var(--border2); padding: 2rem; margin-bottom: 1.25rem; }
.sidebar-heading { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--cream); margin-bottom: 1.25rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--border); }

.process-steps { display: flex; flex-direction: column; gap: 1.1rem; }
.process-step { display: flex; gap: 0.85rem; align-items: flex-start; }
.step-num {
  width: 26px; height: 26px; background: var(--surf2); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: var(--caramel);
  flex-shrink: 0; font-variant-numeric: tabular-nums;
}
.step-text { font-size: 0.83rem; color: var(--muted); padding-top: 2px; }
.step-text strong { color: var(--text); display: block; font-weight: 600; font-size: 0.86rem; margin-bottom: 0.15rem; }

.submit-area { padding-top: 0.5rem; }
.submit-note { font-size: 0.76rem; color: var(--dim); margin-top: 0.75rem; max-width: none; }

.form-success { display: none; background: var(--surf2); border: 1px solid var(--border2); padding: 2.5rem; text-align: center; }
.form-success.visible { display: block; }
.form-success h3 { font-family: 'Playfair Display', serif; color: var(--cream); margin-bottom: 0.75rem; }
.form-success p { color: var(--muted); max-width: none; }

/* WhatsApp float button */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 200;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.3);
}
.wa-float svg { width: 28px; height: 28px; }

/* WhatsApp inline link */
.wa-inline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  color: #25D366; transition: opacity 0.2s;
}
.wa-inline:hover { opacity: 0.8; }
.wa-inline svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .choc-orb { animation: none; }
}

/* Mobile nav toggle button */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px 9px;
  background: none; border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0; z-index: 110;
}
.nav:not(.scrolled) .nav-brand { color: rgba(255,245,230,0.95); }
.nav:not(.scrolled) .nav-toggle span { background: rgba(255,245,230,0.9); }
.nav.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 1px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: calc(8rem + var(--bar-h)) 2rem 3rem; }
  .hero-visual { height: 55vw; min-height: 280px; clip-path: none; }
  .orb-1 { width: 140px; height: 140px; }
  .orb-2 { width: 95px;  height: 95px; }
  .orb-3 { width: 120px; height: 120px; }
  .orb-4 { width: 75px;  height: 75px; }
  .orb-5 { width: 108px; height: 108px; }
  .orb-6 { width: 64px;  height: 64px; }
  .orb-7 { width: 50px;  height: 50px; }
  .categories { grid-template-columns: 1fr 1fr; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; gap: 3rem; }
  .story-visual { height: 260px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .prebook-callout { grid-template-columns: 1fr; padding: 3.5rem 2.5rem; }
  /* Filter tabs: allow horizontal scroll so tabs aren't clipped on tablets */
  .filter-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .filter-tabs::-webkit-scrollbar { display: none; }
  /* Remove right-padding reservation for absolute tag — tag already overflows safely at this width */
  .product-card-inner > div:last-child { padding-right: 0; }
}

@media (max-width: 640px) {
  /* Hamburger nav: show toggle, turn links into fullscreen overlay */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(245,228,200,0.98);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2.5rem; padding: 3rem 2rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 105;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { display: flex; font-size: 1.3rem; letter-spacing: 0.15em; color: var(--text); }
  .nav-links .btn { padding: 0.9rem 2.5rem; font-size: 0.85rem; }

  /* Layout */
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }

  /* Hero */
  :root { --bar-h: 68px; }
  .hero-content { padding: calc(6.5rem + var(--bar-h)) 1.25rem 2.5rem; }
  .hero-visual { height: 50vw; min-height: 200px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  /* Scale down hero orbs so they fit the shorter mobile visual panel */
  .orb-1 { width: 95px; height: 95px; }
  .orb-2 { width: 65px; height: 65px; }
  .orb-3 { width: 80px; height: 80px; }
  .orb-4 { width: 52px; height: 52px; }
  .orb-5 { width: 72px; height: 72px; }
  .orb-6 { width: 44px; height: 44px; }
  .orb-7 { width: 36px; height: 36px; }

  /* Band: horizontal scroll instead of wrapping */
  .band-inner { flex-wrap: nowrap; overflow-x: auto; gap: 2rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .band-inner::-webkit-scrollbar { display: none; }

  /* Category / product grids */
  .categories { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; border-left: none; }
  .product-card { padding: 1.4rem; border-left: 1.5px solid var(--border); }

  /* Product tag: flow above content on mobile so it never overlaps the name */
  .product-tag {
    position: static;
    display: inline-block;
    margin-bottom: 0.65rem;
  }
  .product-card-inner > div:last-child { padding-right: 0; }

  /* Page header (menu / order pages) */
  .page-header { padding: calc(6rem + var(--bar-h)) 0 1.75rem; }

  /* Filter tabs: 2-row grid on mobile, no scrolling */
  .filter-tabs { width: 100%; overflow: visible; flex-wrap: wrap; margin-bottom: 2rem; }
  .filter-tab { flex: 0 0 33.33%; text-align: center; white-space: nowrap; border-right: 1px solid var(--border2); border-bottom: 1px solid var(--border2); padding: 0.75rem 0.4rem; min-height: 44px; font-size: 0.65rem; }
  .filter-tab:nth-child(3n) { border-right: none; }
  .filter-tab:nth-last-child(-n+3) { border-bottom: none; }

  /* Order form */
  .order-page { padding-top: 2rem; padding-bottom: 4rem; }
  .item-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Story section */
  .story-visual { height: 200px; }
  .story-quote { font-size: 1.15rem; }

  /* Prebook callout */
  .prebook-callout { padding: 2.5rem 1.25rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* WA float: slightly smaller on phone */
  .wa-float { width: 52px; height: 52px; bottom: 1.25rem; right: 1.25rem; }
  .wa-float svg { width: 25px; height: 25px; }
}

@media (max-width: 540px) {
  /* Announcement bar stacks to 2 rows — nav needs more top offset */
  :root { --bar-h: 86px; }
}

@media (max-width: 400px) {
  .item-grid { grid-template-columns: 1fr; }
  .cat-card { padding: 2rem 1.5rem; }
  .feat-card { padding: 1.5rem; }
  .hero-actions { gap: 0.75rem; }
}

/* ══════════════════════════════════════════════
   VISUAL POLISH & GLOW LAYER
   ══════════════════════════════════════════════ */

/* Hero: ambient atmospheric glow behind content */
.hero { position: relative; }
.hero::before {
  content: '';
  position: absolute; top: -10%; left: -5%;
  width: 55%; height: 80%;
  background: radial-gradient(ellipse, rgba(198,79,107,0.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 1; }

/* Product dots: warm glow per type */
.dot-dark  { box-shadow: inset -4px -5px 10px rgba(0,0,0,0.55), inset 2px 2px 6px rgba(255,255,255,0.05), 0 4px 14px rgba(80,20,10,0.5); }
.dot-white { box-shadow: inset -4px -5px 10px rgba(0,0,0,0.2),  inset 2px 2px 6px rgba(255,255,255,0.25), 0 4px 14px rgba(200,180,140,0.35); }
.dot-assorted { box-shadow: inset -4px -5px 10px rgba(0,0,0,0.4), 0 4px 14px rgba(100,50,30,0.4); }
.dot-pop   { box-shadow: inset -4px -5px 10px rgba(0,0,0,0.5), inset 2px 2px 6px rgba(255,255,255,0.08), 0 4px 18px rgba(198,79,107,0.4), 0 0 28px rgba(198,79,107,0.12); }
.dot-bar-dark  { box-shadow: 0 4px 14px rgba(60,15,5,0.5); }
.dot-bar-white { box-shadow: 0 4px 14px rgba(180,160,120,0.3); }

/* Assorted chip tags: subtle caramel tint */
.assorted-item {
  font-size: 0.72rem; color: var(--muted);
  background: rgba(192,122,56,0.05);
  border: 1px solid rgba(192,122,56,0.18);
  padding: 0.22rem 0.65rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.product-card.assorted:hover .assorted-item {
  color: var(--caramel); border-color: rgba(192,122,56,0.35);
  background: rgba(192,122,56,0.08);
}

/* Footer brand */
.footer-brand {
  color: var(--cream);
}
.footer-brand span {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-lt) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Step numbers: caramel gradient background */
.step-num {
  background: linear-gradient(135deg, rgba(192,122,56,0.12) 0%, rgba(192,122,56,0.04) 100%);
  border-color: rgba(192,122,56,0.25);
}

/* Form inputs: rose glow on focus */
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(198,79,107,0.08);
}

/* Sidebar card */
.sidebar-card {
  border-color: var(--border2);
  background: var(--surface);
}

/* Section headings */
.section-heading {
  color: var(--cream);
}

/* Product section: add ambient glow per section */
#chocolates { position: relative; }
#chocolates::before {
  content: ''; position: absolute; top: -2rem; right: -3rem;
  width: 300px; height: 200px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(198,79,107,0.06) 0%, transparent 70%);
}
#sugarfree::before {
  content: ''; position: absolute; top: -2rem; left: -3rem;
  width: 300px; height: 200px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(76,173,118,0.05) 0%, transparent 70%);
}
#bars::before {
  content: ''; position: absolute; top: -2rem; right: -3rem;
  width: 300px; height: 200px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(192,122,56,0.06) 0%, transparent 70%);
}
#sugarfree, #bars, #lollipops { position: relative; }

/* Callout badge: gradient treatment */
.callout-badge {
  background: linear-gradient(135deg, var(--rose) 0%, #a0354e 100%);
  box-shadow: 0 2px 12px rgba(198,79,107,0.3);
}

/* WhatsApp float: pulse ring on load */
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0   rgba(37,211,102,0.3); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0   rgba(37,211,102,0); }
}
.wa-float { animation: wa-pulse 2.5s ease-out 3s 3; }

/* Story visual: gradient fill instead of plain surface */
.story-visual {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg2) 50%, rgba(198,79,107,0.04) 100%);
}
.story-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(192,122,56,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Page header title */
.page-header .section-heading,
.page-header h1 {
  color: var(--cream);
}

@media (max-width: 1024px) {
  .categories { grid-template-columns: repeat(2, 1fr); }
}

/* iOS Safari: background-attachment:fixed doesn't work on mobile — fall back to scroll */
@media (max-width: 768px) {
  body { background-attachment: scroll; }
}

/* ── Android Chrome mobile fixes ─────────────────────────────── */

/* Grain texture: position:fixed + mix-blend-mode triggers compositing
   bugs on Android Chrome — disable on mobile */
@media (max-width: 768px) {
  body::after { display: none; }
}

/* Ensure section headings and brand text always have a solid fallback
   in case -webkit-background-clip:text fails on older Android WebView */
.footer-brand span {
  color: var(--rose); /* solid fallback */
}
.hero-headline em {
  color: var(--rose); /* solid fallback */
}


/* SF pill badges: prevent them overflowing card width on very small screens */
@media (max-width: 380px) {
  .product-card-inner > div:last-child > div[style*="flex"] { gap: 0.4rem; }
  .product-card-inner span[style*="border-radius:999px"] {
    font-size: 0.6rem !important;
    padding: 0.18rem 0.5rem !important;
    white-space: normal !important;
  }
}

/* Product card text: improve legibility on small screens */
@media (max-width: 480px) {
  .product-name { font-size: 0.98rem; }
  .product-desc { font-size: 0.8rem; }
  .product-price { font-size: 1rem; }
}

/* Nav: always scrolled-style on non-hero pages (menu, order) so
   brand text is always readable over the light page-header background */
@media (max-width: 640px) {
  .page-header ~ * .nav,
  body:not(:has(.hero)) .nav {
    background: rgba(245,228,200,0.97);
  }
}

/* Ensure inline price tables inside cards are scrollable on mobile */
.product-card [style*="min-width"] {
  /* parent must have overflow-x:auto — already done in RB card */
}

/* Safe area padding for devices with notch / home bar */
@supports (padding: max(0px)) {
  .container { padding-left: max(1.25rem, env(safe-area-inset-left)); padding-right: max(1.25rem, env(safe-area-inset-right)); }
  .wa-float { bottom: max(1.25rem, env(safe-area-inset-bottom)); right: max(1.25rem, env(safe-area-inset-right)); }
  .prebook-float { bottom: calc(max(1.25rem, env(safe-area-inset-bottom)) + 52px + 0.6rem); right: max(1.25rem, env(safe-area-inset-right)); }
}

/* Pre-book floating button — mobile only */
.prebook-float {
  display: none;
  position: fixed;
  bottom: calc(1.25rem + 52px + 0.6rem);
  right: 1.25rem;
  z-index: 200;
  width: 52px; height: 52px;
  background: var(--caramel);
  border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(138,82,16,0.45), 0 2px 8px rgba(0,0,0,0.3);
  color: #fff;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.prebook-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(138,82,16,0.55), 0 4px 12px rgba(0,0,0,0.3); }
.prebook-float svg { width: 24px; height: 24px; }
.prebook-float { display: flex; }
.prebook-float-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--rose); color: #fff; border-radius: 50%;
  width: 18px; height: 18px; font-size: 0.6rem; font-weight: 800;
  display: none; align-items: center; justify-content: center;
  pointer-events: none; font-family: 'Inter', sans-serif;
}

/* Cart summary panel */
.cart-panel-overlay {
  display: none; position: fixed; inset: 0; z-index: 290;
  background: rgba(15,6,0,0.55); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.cart-panel-overlay.open { display: block; }
.cart-panel {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 295;
  background: var(--bg); border-radius: 1.25rem 1.25rem 0 0;
  max-height: 72vh; display: flex; flex-direction: column;
  transform: translateY(100%); transition: transform 0.28s cubic-bezier(.32,0,.15,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
  padding-bottom: env(safe-area-inset-bottom);
}
.cart-panel.open { transform: translateY(0); }
.cart-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem 0.75rem; border-bottom: 1px solid var(--border2); flex-shrink: 0;
}
.cart-panel-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.cart-panel-count { font-size: 0.72rem; font-weight: 600; color: var(--muted); margin-left: 0.4rem; }
.cart-panel-close {
  background: var(--surf2); border: none; border-radius: 50%; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: var(--muted); font-size: 0.9rem; font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
.cart-panel-close:hover { background: var(--border2); color: var(--text); }
.cart-panel-body { overflow-y: auto; flex: 1; padding: 0.25rem 1.25rem; }
.cart-panel-empty {
  padding: 2.5rem 1rem; text-align: center; color: var(--muted); font-size: 0.85rem; line-height: 1.6;
}
.cart-panel-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border2);
}
.cart-panel-item:last-child { border-bottom: none; }
.cart-panel-item-info { flex: 1; display: flex; flex-direction: column; gap: 0.1rem; overflow: hidden; }
.cart-panel-item-name { font-size: 0.82rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.cart-panel-item-price { font-size: 0.72rem; color: var(--caramel); font-weight: 700; }
.cart-panel-qty {
  display: inline-flex; align-items: center; gap: 0; flex-shrink: 0;
}
.cart-panel-qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surf2); border: 1px solid var(--border2);
  color: var(--text); font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s, color .15s;
}
.cart-panel-qty-btn:hover { background: var(--caramel); color: #fff; border-color: var(--caramel); }
.cart-panel-qty-num {
  min-width: 30px; text-align: center; font-size: 0.82rem;
  font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums;
}
.cart-panel-foot {
  padding: 0.85rem 1.25rem 1rem; border-top: 1px solid var(--border2); flex-shrink: 0;
}
.cart-panel-cta {
  display: block; width: 100%; text-align: center;
  padding: 0.8rem 1rem; font-size: 0.88rem; border-radius: 999px;
  text-decoration: none; box-sizing: border-box;
}
