/* ═══════════ KICKER — faithful SunMall layout ═══════════
   Tokens lifted from the SunMall source (thebuggeddev/sunmall) */
:root {
  --cream: #F4F2EC;
  --ink: #151310;
  --teal: #0E6B58;
  --teal-deep: #0A5344;
  --teal-muted: #4BA98B;
  --leaf: #8BC34A;
  --tang: #F9A01B;
  --sun: #FFC61A;
  --chili: #E33224;
  --bubblegum: #E75D9C;
  --paper: #FCFAF4;
  --font-display: "Anton", Impact, sans-serif;
  --font-script: "Patrick Hand", cursive;
  --font-sans: "Be Vietnam Pro", ui-sans-serif, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
.ic { display: block; }

#page { min-height: 100vh; padding-bottom: 16px; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.btn-push { transition: transform .22s cubic-bezier(.34, 1.56, .64, 1); }
.btn-push:hover { transform: scale(1.05); }
.btn-push:active { transform: scale(.97); }

/* ═══════════ Header ═══════════ */
#site-header {
  position: relative; z-index: 40;
  margin: 0 auto; width: 100%; max-width: 1600px;
  padding: 36px 56px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; user-select: none; }
.logo-seal { width: 46px; height: 46px; border-radius: 50%; }
.logo-word {
  font-family: var(--font-script); font-size: 36px; font-weight: 700; line-height: 1;
  color: var(--ink); transform: rotate(-2deg); letter-spacing: -.02em;
}
.nav-desktop { display: flex; align-items: center; gap: clamp(28px, 3.5vw, 56px); }
.nav-desktop a {
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-decoration: none;
  color: var(--ink); transition: color .2s;
}
.nav-desktop a.active, .nav-desktop a:hover { color: var(--teal-muted); }

.header-right { display: flex; align-items: center; gap: 12px; }
.search-wrap { position: relative; }
.search-pill {
  display: flex; align-items: center; gap: 12px;
  height: 48px; width: 270px; border-radius: 999px; background: var(--ink);
  padding: 0 16px 0 20px;
  box-shadow: 0 10px 24px rgba(21, 19, 16, .25);
}
.ic-search { width: 18px; height: 18px; color: rgba(252, 250, 244, .9); flex-shrink: 0; }
.search-pill input {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  font-size: 13px; font-weight: 500; color: var(--paper); font-family: var(--font-sans);
}
.search-pill input::placeholder { color: rgba(252, 250, 244, .6); }
.search-divider { width: 1px; height: 20px; background: rgba(252, 250, 244, .25); flex-shrink: 0; }
.cart-btn { color: var(--paper); flex-shrink: 0; position: relative; }
.ic-bag { width: 19px; height: 19px; }
.cart-badge {
  position: absolute; right: -8px; top: -8px;
  display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%;
  background: var(--chili); color: #fff; font-size: 12px; font-weight: 700;
  box-shadow: 0 4px 10px rgba(227, 50, 36, .45); border: 2.5px solid var(--cream);
}
.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  place-items: center; box-shadow: 0 10px 24px rgba(21, 19, 16, .25);
}
.menu-toggle .ic { width: 20px; height: 20px; }

.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  margin: 16px 20px 0; padding: 16px; border-radius: 24px; background: var(--paper);
  box-shadow: 0 18px 40px rgba(21, 19, 16, .12);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px; border-radius: 16px; text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; color: var(--ink);
}
.nav-mobile a.active { background: var(--cream); color: var(--teal-muted); }

/* ═══════════ Hero ═══════════ */
.hero {
  position: relative; margin: 0 auto; width: 100%; max-width: 1600px;
  display: grid; grid-template-columns: 1.05fr 1.15fr .8fr; align-items: center;
  gap: 16px; padding: 24px 56px 64px;
}

.hero-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  line-height: 1.22; letter-spacing: .005em; color: var(--ink);
}
.hero-line { display: block; white-space: nowrap; font-size: clamp(2.7rem, 5.5vw, 5.4rem); }
.hero-desc { margin-top: 24px; max-width: 360px; font-size: 15px; line-height: 1.75; color: rgba(21, 19, 16, .45); }

.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.add-cart {
  display: flex; align-items: center; gap: 16px; height: 60px;
  border-radius: 999px; background: var(--ink); padding: 0 32px 0 8px;
  box-shadow: 0 16px 30px rgba(21, 19, 16, .28);
}
.add-cart-ic {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--sun); color: var(--ink);
}
.add-cart-ic .ic { width: 22px; height: 22px; }
.add-cart-label { font-size: 14px; font-weight: 700; letter-spacing: .12em; color: var(--paper); }

.qty { display: flex; align-items: center; gap: 14px; }
.qty-btn {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper); font-size: 20px; font-weight: 600; color: var(--ink);
  box-shadow: 0 8px 18px rgba(21, 19, 16, .14);
}
.qty-num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper); font-size: 15px; font-weight: 700; color: var(--ink);
  box-shadow: 0 8px 18px rgba(21, 19, 16, .10), 0 0 0 2px rgba(21, 19, 16, .14);
}

/* ── center product ── */
.hero-product { position: relative; }
.product-box { position: relative; margin: 0 auto; width: 100%; max-width: 430px; }

.sun-rays { pointer-events: none; position: absolute; top: -32px; left: 50%; transform: translateX(-50%); width: 56%; z-index: 0; opacity: .9; }
.sun-rays svg { width: 100%; display: block; }

.tilt { position: relative; z-index: 10; will-change: transform; transform-style: preserve-3d; }

.bottle-slot { position: relative; transform: rotate(-5deg); }
#bottle-canvas {
  display: block; width: 100%; aspect-ratio: 3 / 4;
  border-radius: 24px;
}

.tag { position: absolute; z-index: 20; pointer-events: none; }
.tag svg { width: 100%; display: block; filter: drop-shadow(0 14px 16px rgba(21, 19, 16, .22)); }
.tag text { font-family: var(--font-script); font-weight: 700; }
#tag-a-text { font-size: 44px; }
#tag-b-text { font-size: 38px; }
.tag-a { left: -6%; top: 38%; width: 56%; transform: rotate(-7deg); }
.tag-b { left: 8%; top: 54%; width: 48%; transform: rotate(5deg); }

.decor { position: absolute; pointer-events: none; }
.decor svg { width: 100%; display: block; }
.tri-1 { right: -7%; top: 8%; width: 56px; z-index: 20; transform: rotate(12deg); }
.tri-2 { left: -9%; bottom: 16%; width: 40px; z-index: 20; transform: rotate(-24deg); }
.dot-1 { left: 3%; top: 10%; width: 16px; z-index: 0; }
.dot-2 { right: 10%; top: 2%; width: 12px; z-index: 0; }
.dot-3 { left: -4%; top: 32%; width: 10px; z-index: 0; }
.dot-4 { right: 5%; bottom: 6%; width: 14px; z-index: 0; }
.dot-5 { right: 16%; bottom: 28%; width: 8px; z-index: 0; }

/* ── right features ── */
.hero-features ul { list-style: none; display: grid; grid-template-columns: 1fr; gap: 36px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-ic {
  display: grid; place-items: center; flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  box-shadow: 0 10px 20px rgba(21, 19, 16, .16);
}
.feature-ic .ic { width: 28px; height: 28px; }
.feature-txt b { display: block; font-size: 13.5px; font-weight: 800; letter-spacing: .08em; color: var(--ink); }
.feature-txt small { display: block; margin-top: 6px; max-width: 190px; font-size: 12px; line-height: 1.65; color: rgba(21, 19, 16, .4); }

/* ═══════════ Carousel ═══════════ */
.carousel-section { position: relative; margin: 0 auto; width: 100%; max-width: 1600px; padding: 0 40px 24px; }
.tri-panel { top: -32px; left: 64px; width: 48px; z-index: 10; transform: rotate(-12deg); }

.panel {
  position: relative; overflow: hidden; border-radius: 44px;
  background-color: var(--teal);
  background-image:
    repeating-conic-gradient(from -10deg at 10% 125%, rgba(255, 255, 255, .05) 0deg 4.5deg, transparent 4.5deg 10deg),
    repeating-conic-gradient(from 2deg at 90% 125%, rgba(255, 255, 255, .05) 0deg 4.5deg, transparent 4.5deg 10deg);
  padding: 64px;
}
.panel-rays { top: auto; left: auto; bottom: -8px; right: 48px; transform: rotate(18deg); width: 144px; }

.cards {
  position: relative; z-index: 10;
  display: flex; gap: 64px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 36px 16px 36px 80px;
}
.flavor-card {
  position: relative; flex-shrink: 0; scroll-snap-align: center; text-align: left;
  height: 148px; width: 340px;
  transition: transform .3s;
}
.flavor-card:hover { transform: translateY(-4px); }
.flavor-card.active { transform: translateY(-6px); }

.card-bottle {
  pointer-events: none; position: absolute; left: -28px; top: 50%; z-index: 20;
  height: 204px; width: auto; transform: translateY(-50%); user-select: none;
  filter: drop-shadow(0 14px 14px rgba(21, 19, 16, .22));
  transition: transform .3s;
}
.flavor-card:hover .card-bottle { transform: translateY(-50%) scale(1.04); }

.card-face {
  position: absolute; top: 0; bottom: 0; right: 0; z-index: 10;
  display: block; width: 268px; border-radius: 22px; background: var(--paper);
  box-shadow: 0 20px 36px rgba(6, 40, 33, .35);
}
.flavor-card.active .card-face { box-shadow: 0 20px 36px rgba(6, 40, 33, .35), 0 0 0 3px var(--sun); }
.card-inner { display: flex; height: 100%; flex-direction: column; justify-content: center; gap: 6px; padding: 0 20px 0 40px; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.card-name { font-size: 14.5px; font-weight: 800; text-transform: uppercase; line-height: 1.2; letter-spacing: .04em; color: var(--ink); }
.card-price { padding-top: 2px; font-size: 14.5px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.card-sub { font-size: 11.5px; font-weight: 600; color: rgba(21, 19, 16, .45); letter-spacing: .06em; }
.card-stars { display: flex; align-items: center; gap: 4px; }
.card-stars svg { width: 14px; height: 14px; }
.card-order {
  margin-top: 8px; display: inline-flex; width: fit-content; align-items: center;
  border-radius: 999px; background: var(--chili); padding: 10px 24px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; color: #fff;
  box-shadow: 0 8px 16px rgba(227, 50, 36, .4);
}

/* ═══════════ Community / TikTok ═══════════ */
.community {
  position: relative; margin: 0 auto; width: 100%; max-width: 1600px;
  padding: 88px 56px 72px;
}
.tri-comm-1 { top: 64px; right: 8%; width: 52px; transform: rotate(16deg); }
.dot-comm-1 { top: 140px; left: 6%; width: 16px; }
.dot-comm-2 { bottom: 90px; right: 5%; width: 10px; }

.community-head { text-align: center; margin-bottom: 44px; }
.community-eyebrow {
  display: inline-block; font-family: var(--font-script); font-size: 22px; color: var(--paper);
  background: var(--ink); border-radius: 999px; padding: 6px 22px; transform: rotate(-2deg);
  box-shadow: 0 10px 22px rgba(21, 19, 16, .2); margin-bottom: 18px;
}
.community-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.15; color: var(--ink); letter-spacing: .005em;
}
.community-title em { font-style: normal; color: var(--chili); position: relative; }
.community-title em::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: -6px; height: 5px;
  background: var(--sun); border-radius: 3px; transform: rotate(-1deg);
}
.community-note { margin-top: 16px; font-size: 14px; color: rgba(21, 19, 16, .45); }

/* two groups: brand channel (auto-latest) + world viral clips */
.tok-group { margin-bottom: 28px; }
.tok-group-head {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 0 12px; margin-bottom: 4px;
}
.tok-group-pill {
  font-family: var(--font-script); font-size: 20px; color: var(--paper);
  border-radius: 999px; padding: 5px 20px; transform: rotate(-2deg);
  box-shadow: 0 8px 18px rgba(21, 19, 16, .18); border: 2.5px solid var(--ink);
}
.tok-group-pill.main-ch { background: var(--teal); }
.tok-group-pill.world { background: var(--chili); }
.tok-group-title { font-size: 15px; font-weight: 800; letter-spacing: .06em; color: var(--ink); }
.tok-group-title em { font-style: normal; font-weight: 500; color: rgba(21, 19, 16, .45); }

.tok-row {
  display: flex; gap: 44px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 28px 12px 36px; justify-content: safe center;
  -ms-overflow-style: none; scrollbar-width: none;
}
.tok-row::-webkit-scrollbar { display: none; }
.tok-card {
  flex-shrink: 0; scroll-snap-align: center; width: 320px; margin: 0;
  background: var(--paper); border: 3px solid var(--ink); border-radius: 28px;
  padding: 12px 12px 10px; transform: rotate(var(--tilt, -2deg));
  box-shadow: 0 22px 44px rgba(21, 19, 16, .18);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s;
  position: relative;
}
.tok-card:hover { transform: rotate(0deg) translateY(-8px); box-shadow: 0 30px 56px rgba(21, 19, 16, .24); }
.tok-badge {
  position: absolute; top: -16px; left: -14px; z-index: 5;
  font-family: var(--font-script); font-size: 19px; color: var(--ink);
  background: var(--sun); border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 3px 14px; transform: rotate(-8deg);
  box-shadow: 0 8px 16px rgba(21, 19, 16, .2);
}
.tok-frame {
  overflow: hidden; border-radius: 18px; background: var(--ink);
  height: 566px; position: relative;
}
.tok-frame iframe { display: block; width: 100%; height: 100%; border: 0; }

/* tap-to-unmute: overlay catches the click, chip shows the audio state */
.tok-sound-overlay { position: absolute; inset: 0; cursor: pointer; background: transparent; }
.tok-sound-chip {
  position: absolute; right: 12px; bottom: 12px; pointer-events: none;
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--paper); color: var(--ink); border: 2.5px solid var(--ink);
  box-shadow: 0 8px 18px rgba(21, 19, 16, .35);
  transition: background .25s, transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.tok-sound-chip svg { width: 20px; height: 20px; }
.tok-sound-chip .snd-on { display: none; }
.tok-card.sound-on .tok-sound-chip { background: var(--sun); transform: scale(1.12); }
.tok-card.sound-on .tok-sound-chip .snd-on { display: block; }
.tok-card.sound-on .tok-sound-chip .snd-off { display: none; }
.tok-card.sound-on .tok-frame { box-shadow: 0 0 0 3px var(--sun); }
.tok-caption {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 4px 4px; font-family: var(--font-script); font-size: 20px; color: var(--ink);
}
.tok-caption svg { width: 18px; height: 18px; }

/* thumbnail cards — click to open the lightbox player */
.tok-card.is-thumb { cursor: pointer; }
.tok-thumb { position: relative; overflow: hidden; border-radius: 18px; background: var(--ink); height: 566px; }
.tok-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tok-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(to top, rgba(21, 19, 16, .35), transparent 45%);
}
.tok-play span {
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  background: var(--sun); border: 3px solid var(--ink);
  box-shadow: 0 12px 24px rgba(21, 19, 16, .35);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.tok-card:hover .tok-play span { transform: scale(1.12); }
.tok-play svg { width: 24px; height: 24px; margin-left: 3px; }

/* inline TikTok player (replaces the thumbnail on click, no popup) */
.tok-inline { position: absolute; inset: 0; z-index: 3; background: var(--ink); }
.tok-inline iframe { display: block; width: 100%; height: 100%; border: 0; }
.tok-inline-close {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--chili); color: #fff; font-size: 15px; font-weight: 700;
  border: 2.5px solid var(--ink); box-shadow: 0 8px 18px rgba(21, 19, 16, .4);
  display: grid; place-items: center;
}
.tok-card.tok-playing { transform: rotate(0deg); }
.tok-card.tok-playing .tok-frame, .tok-card.tok-playing .tok-thumb { box-shadow: 0 0 0 3px var(--sun); }

/* ═══════════ Editorial panels (N.o 400 / N.o 500) ═══════════ */
.editorial { margin: 0 auto; width: 100%; max-width: 1600px; padding: 24px 40px; display: grid; gap: 28px; }
.edit-panel {
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  border-radius: 44px; min-height: 520px;
}
.edit-panel.reverse .edit-media { order: 2; }
.edit-panel.dark { background: var(--ink); color: var(--paper); }
.edit-panel.light { background: var(--paper); color: var(--ink); box-shadow: 0 20px 44px rgba(21, 19, 16, .1); }
.edit-media { position: relative; min-height: 380px; background-size: cover; background-position: center; }
.edit-body { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 10px; padding: clamp(28px, 4vw, 64px); }
.edit-eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .2em; color: var(--sun); }
.edit-panel.light .edit-eyebrow { color: var(--chili); }
.edit-notes { font-family: var(--font-script); font-size: 22px; opacity: .9; }
.edit-spec { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; opacity: .6; max-width: 420px; }
.edit-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.4vw, 34px); letter-spacing: .02em; margin-top: 14px; }
.edit-no { font-family: var(--font-display); font-weight: 400; font-size: clamp(64px, 9vw, 140px); line-height: .95; letter-spacing: .01em; }
.edit-panel.dark .edit-no { color: var(--sun); }
.edit-panel.light .edit-no { color: var(--ink); }
/* signature CTA pill — same anatomy as the hero's "RÓT VÀO GIỎ" */
.cta-pill {
  display: inline-flex; align-items: center; gap: 16px; height: 60px;
  border-radius: 999px; background: var(--ink); padding: 0 32px 0 8px;
  box-shadow: 0 16px 30px rgba(21, 19, 16, .28);
  text-decoration: none; margin-top: 18px;
  transition: transform .22s cubic-bezier(.34, 1.56, .64, 1);
}
.cta-pill:hover { transform: scale(1.05); }
.cta-pill:active { transform: scale(.97); }
.cta-ic {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--sun); color: var(--ink);
}
.cta-ic .ic { width: 22px; height: 22px; }
.cta-label { font-size: 14px; font-weight: 700; letter-spacing: .12em; color: var(--paper); }
/* on dark panels the pill flips to gold so it pops */
.cta-pill.on-dark { background: var(--sun); box-shadow: 0 16px 30px rgba(0, 0, 0, .4); }
.cta-pill.on-dark .cta-ic { background: var(--ink); color: var(--sun); }
.cta-pill.on-dark .cta-label { color: var(--ink); }

/* image-slot placeholder (before a real photo is dropped in) */
.ph-slot {
  background-image: repeating-linear-gradient(-45deg, rgba(21, 19, 16, .06) 0 14px, transparent 14px 28px);
  background-color: var(--cream-soft, #F4F2EC);
  display: grid; place-items: center;
}
.ph-slot::after {
  content: attr(data-note);
  font-family: var(--font-script); font-size: 19px; color: rgba(21, 19, 16, .5);
  background: var(--paper); border: 2px dashed rgba(21, 19, 16, .3); border-radius: 999px;
  padding: 6px 18px; transform: rotate(-2deg);
}
.ph-slot.snap { background-repeat: no-repeat; background-size: contain; background-position: center; background-color: transparent; }
.ph-slot.snap::after { display: none; }
.edit-panel.dark .ph-slot { background-color: #211e1a; }
.edit-panel.dark .ph-slot::after { background: transparent; color: rgba(252, 250, 244, .55); border-color: rgba(252, 250, 244, .3); }

/* ═══════════ Facts tiles ═══════════ */
.facts { margin: 0 auto; width: 100%; max-width: 1600px; padding: 4px 40px 24px; display: grid; gap: 28px; }
.fact-tile { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 44px; min-height: 380px; }
.fact-media { background-size: cover; background-position: center; min-height: 300px; }
.fact-text {
  display: flex; align-items: center; padding: clamp(28px, 4vw, 60px);
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 34px); line-height: 1.35; letter-spacing: .02em;
}
.chili-bg { background: var(--chili); color: #fff; }
.teal-bg { background: var(--teal); color: var(--paper); }

/* ═══════════ Assure ═══════════ */
.assure { margin: 0 auto; width: 100%; max-width: 1200px; padding: 72px 40px; text-align: center; }
.assure-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-bottom: 64px; }
.assure-grid li { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.assure-grid b { font-size: 15px; font-weight: 800; letter-spacing: .08em; }
.assure-grid small { font-size: 13px; line-height: 1.65; color: rgba(21, 19, 16, .45); max-width: 260px; }
.assure-statement {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(28px, 4.2vw, 56px); line-height: 1.15; margin-bottom: 28px;
}
.assure-statement em { font-style: normal; color: var(--chili); }

/* ═══════════ Stories ═══════════ */
.stories { margin: 0 auto; width: 100%; max-width: 1600px; padding: 40px 40px 64px; }
.stories .community-title { text-align: center; margin-bottom: 44px; }
.story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 44px; max-width: 1100px; margin: 0 auto; }
.story-card {
  display: block; text-decoration: none; color: var(--ink);
  background: var(--paper); border: 3px solid var(--ink); border-radius: 28px;
  overflow: hidden; transform: rotate(var(--tilt, 0deg));
  box-shadow: 0 22px 44px rgba(21, 19, 16, .14);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s;
}
.story-card:hover { transform: rotate(0deg) translateY(-8px); box-shadow: 0 30px 56px rgba(21, 19, 16, .22); }
.story-media { height: 260px; background-size: cover; background-position: center; border-bottom: 3px solid var(--ink); }
.story-body { padding: 24px 26px 28px; }
.story-body h3 { font-size: 17px; font-weight: 800; line-height: 1.4; letter-spacing: .02em; margin-bottom: 10px; }
.story-meta { font-family: var(--font-script); font-size: 18px; color: var(--teal-muted); margin-bottom: 10px; }
.story-excerpt { font-size: 13.5px; line-height: 1.7; color: rgba(21, 19, 16, .5); }

/* ═══════════ Salad ═══════════ */
.salad {
  margin: 0 auto; width: 100%; max-width: 1600px; padding: 24px 40px 48px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center;
}
.salad-body { text-align: center; }
.salad-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(30px, 4vw, 52px); line-height: 1.12;
}
.salad-title em { font-style: normal; color: var(--chili); }
.salad-script { font-family: var(--font-script); font-size: 26px; color: var(--teal-muted); margin: 14px 0 26px; }
.salad-media { border-radius: 44px; min-height: 400px; background-size: cover; background-position: center; overflow: hidden; }

/* ═══════════ Punch band ═══════════ */
.punch-band {
  background: var(--chili); color: #fff; padding: clamp(44px, 6vw, 88px) 24px;
  transform: rotate(-1.2deg) scale(1.02); margin: 32px 0 48px;
  box-shadow: 0 20px 40px rgba(227, 50, 36, .3);
}
.punch-band p {
  max-width: 1100px; margin: 0 auto; text-align: center;
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(22px, 3.4vw, 44px); line-height: 1.35; letter-spacing: .02em;
}
.punch-band em { font-style: normal; color: var(--sun); }

/* reveal-on-scroll */
.rv { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }
.story-card.rv { transform: rotate(var(--tilt, 0deg)) translateY(34px); }
.story-card.rv.in { transform: rotate(var(--tilt, 0deg)); }
.punch-band.rv { transform: rotate(-1.2deg) scale(1.02) translateY(34px); }
.punch-band.rv.in { transform: rotate(-1.2deg) scale(1.02); }

/* ═══════════ Responsive ═══════════ */
@media (max-width: 1024px) {
  #site-header { padding: 24px 32px 0; }
  .nav-desktop { display: none; }
  .menu-toggle { display: grid; }
  .search-pill { width: 200px; height: 44px; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 32px 32px 56px; }
  .hero-left { order: 1; max-width: 560px; }
  .hero-product { order: 2; }
  .hero-features { order: 3; }
  .hero-features ul { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .panel { padding: 48px 32px; border-radius: 36px; }
  .cards { padding-left: 56px; gap: 56px; }
}
@media (max-width: 900px) {
  .edit-panel, .fact-tile { grid-template-columns: 1fr; }
  .edit-panel.reverse .edit-media { order: 0; }
  .assure-grid { grid-template-columns: 1fr; }
  .salad { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  #site-header { padding: 16px 16px 0; gap: 8px; }
  .logo { gap: 8px; }
  .logo-seal { width: 40px; height: 40px; }
  .logo-word { font-size: 28px; }
  .header-right { gap: 8px; }
  .search-pill { width: 138px; height: 42px; padding: 0 10px 0 14px; gap: 8px; }
  .search-pill input { font-size: 12px; }
  .menu-toggle { width: 42px; height: 42px; }
  .cart-badge { width: 21px; height: 21px; font-size: 11px; }
  .community { padding: 64px 20px 48px; }
  .tok-row { gap: 32px; }
  .tok-card { width: 290px; }
  .tok-frame { height: 516px; }
  .editorial, .facts, .stories, .salad { padding-left: 14px; padding-right: 14px; }
  .edit-panel, .fact-tile, .salad-media { border-radius: 32px; }
  .search-pill { width: 172px; }
  .hero { padding: 28px 20px 48px; }
  .hero-features ul { grid-template-columns: 1fr; gap: 24px; }
  .carousel-section { padding: 0 12px 20px; }
  .panel { padding: 44px 20px; }
  .cards { padding-left: 48px; gap: 52px; }
  .flavor-card { width: 292px; height: 140px; }
  .card-face { width: 229px; }
  .card-inner { padding-left: 36px; }
  .card-bottle { left: -22px; height: 176px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-push, .flavor-card, .card-bottle { transition: none; }
}
