:root {
  --forest-950: #0b2519;
  --forest-900: #103522;
  --forest-800: #16462f;
  --forest-700: #225a3d;
  --forest-500: #4f7a5d;
  --linen-50: #fbf8f1;
  --linen-100: #f4eddf;
  --linen-200: #e8dcc8;
  --gold-500: #80672f;
  --gold-300: #d6bd82;
  --ink: #173026;
  --muted: #667269;
  --white: #fffdf8;
  --orange: #c76d3b;
  --shadow-sm: 0 10px 30px rgba(34, 45, 37, 0.07);
  --shadow-md: 0 26px 70px rgba(12, 35, 24, 0.13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --section-width: 1240px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--linen-50);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid #d8a738;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--forest-950);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(calc(100% - 48px), var(--section-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: var(--forest-950);
  background: rgba(251, 248, 241, 0.9);
  border-bottom: 1px solid rgba(22, 61, 43, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1380px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--forest-800);
  border: 1px solid rgba(22, 70, 47, 0.13);
  border-radius: 14px;
  background: var(--linen-100);
}

.brand-mark svg {
  width: 33px;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.2;
}

.brand-copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--forest-500);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 100%;
  margin-left: auto;
  margin-right: 34px;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #284638;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 17px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-500);
  content: "";
  transition: width 0.2s ease, left 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  left: 0;
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-button,
.heart-button,
.drawer-close,
.round-add {
  border: 0;
  cursor: pointer;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--forest-800);
  background: transparent;
  border: 1px solid rgba(22, 70, 47, 0.16);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.icon-button:hover {
  color: var(--linen-50);
  background: var(--forest-800);
}

.icon-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.list-count {
  position: absolute;
  top: -4px;
  right: -2px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  color: #fff;
  background: var(--orange);
  border: 2px solid var(--linen-50);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.menu-button {
  display: none;
  align-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 12px;
  background: transparent;
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--forest-900);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 10px 24px 20px;
  background: var(--linen-50);
  border-bottom: 1px solid var(--linen-200);
  box-shadow: 0 22px 35px rgba(13, 37, 25, 0.12);
}

.noscript-nav {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(22, 61, 43, 0.08);
  font-weight: 700;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  color: var(--linen-50);
  background:
    radial-gradient(circle at 72% 18%, rgba(177, 148, 80, 0.23), transparent 28%),
    linear-gradient(115deg, #0d2d1e 0%, #16472f 55%, #0f3422 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: repeating-linear-gradient(90deg, transparent 0 11.9%, rgba(255, 255, 255, 0.025) 12% 12.2%);
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(214, 189, 130, 0.14);
  border-radius: 50%;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  inset: 12%;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.hero-orbit-one {
  top: -280px;
  left: -170px;
}

.hero-orbit-two {
  right: -270px;
  bottom: -240px;
  width: 650px;
  height: 650px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 32px;
  width: min(calc(100% - 64px), 1360px);
  min-height: calc(100vh - var(--header-height) - 54px);
  margin-inline: auto;
  padding: 70px 0 80px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
  padding-left: clamp(0px, 2vw, 28px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow > span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--gold-300);
}

.hero h1 {
  margin: 0;
  font-size: clamp(50px, 6.1vw, 92px);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.hero h1 em {
  color: var(--gold-300);
  font-style: normal;
  font-weight: 520;
}

.hero-intro {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(248, 244, 234, 0.76);
  font-size: 16px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--forest-950);
  background: var(--gold-300);
  box-shadow: 0 12px 30px rgba(214, 189, 130, 0.18);
}

.button-primary:hover {
  background: #e0ca97;
  box-shadow: 0 16px 36px rgba(214, 189, 130, 0.24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 248, 0.9);
  font-size: 14px;
  font-weight: 720;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.dark-link {
  color: var(--forest-800);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 48px 0 0;
}

.hero-stats div {
  display: grid;
  padding-left: 16px;
  border-left: 1px solid rgba(214, 189, 130, 0.32);
}

.hero-stats dt {
  color: var(--white);
  font-size: 21px;
  font-weight: 760;
  line-height: 1.1;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(248, 244, 234, 0.55);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.hero-scene {
  position: relative;
  min-height: 620px;
  transform-style: preserve-3d;
}

.scene-label {
  position: absolute;
  z-index: 5;
  top: 48px;
  right: 48px;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--forest-900);
  background: var(--gold-300);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  transform: rotate(8deg);
  box-shadow: 0 14px 35px rgba(6, 28, 17, 0.2);
}

.scene-halo {
  position: absolute;
  top: 50%;
  left: 53%;
  width: min(36vw, 490px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(244, 234, 214, 0.14) 0 54%, transparent 55%);
  border: 1px solid rgba(244, 234, 214, 0.1);
  border-radius: 50%;
  transform: translate3d(-50%, calc(-50% + var(--parallax-y, 0px)), 0);
}

.scene-halo::before,
.scene-halo::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(244, 234, 214, 0.09);
  border-radius: 50%;
  content: "";
}

.scene-halo::after {
  inset: 26%;
}

.hero-product {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 32px 32px rgba(5, 24, 14, 0.32));
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.hero-product-bag {
  z-index: 3;
  top: 120px;
  left: 33%;
  width: 240px;
  height: 330px;
  padding-top: 12px;
  background: #e6c26d;
  border-radius: 18px 18px 34px 34px;
  clip-path: polygon(5% 0, 95% 0, 100% 97%, 91% 100%, 10% 98%, 0 100%);
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(-4deg);
}

.hero-product-bag::after {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background: linear-gradient(90deg, transparent, white 35%, transparent 46%);
  content: "";
}

.bag-seal {
  display: block;
  height: 12px;
  border-top: 2px dashed rgba(65, 47, 20, 0.25);
  border-bottom: 2px solid rgba(65, 47, 20, 0.18);
}

.bag-art {
  position: absolute;
  top: 72px;
  left: 31px;
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  background: var(--forest-800);
  border: 8px solid var(--linen-100);
  border-radius: 50%;
}

.bag-art i {
  width: 88px;
  height: 54px;
  background: #f4d27e;
  border-radius: 50%;
  transform: rotate(-14deg);
}

.bag-art i::after {
  display: block;
  width: 56px;
  height: 34px;
  margin: 10px auto;
  border: 3px dashed #bf812f;
  border-radius: 50%;
  content: "";
}

.bag-art b {
  position: absolute;
  right: 18px;
  bottom: 4px;
  width: 33px;
  height: 33px;
  background: var(--orange);
  border: 4px solid var(--linen-100);
  border-radius: 50%;
}

.hero-product-bottle {
  top: 208px;
  left: 6%;
  width: 150px;
  height: 305px;
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(5deg);
}

.bottle-cap {
  display: block;
  width: 59px;
  height: 25px;
  margin: 0 auto;
  background: #d9b36b;
  border-radius: 9px 9px 5px 5px;
}

.bottle-body {
  position: relative;
  display: block;
  width: 136px;
  height: 270px;
  margin: -2px auto 0;
  overflow: hidden;
  background: linear-gradient(90deg, #d7a5a1, #efc9bf 38%, #d9aea4);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 26px 26px 36px 36px;
}

.bottle-body::before {
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  height: 110px;
  background: var(--linen-100);
  border-top: 8px solid var(--forest-700);
  border-bottom: 8px solid var(--forest-700);
  content: "";
}

.bottle-body i {
  position: absolute;
  z-index: 1;
  top: 110px;
  left: 39px;
  width: 58px;
  height: 58px;
  background: #e9b9aa;
  border: 5px solid #fff5e5;
  border-radius: 45% 55% 48% 52%;
}

.hero-product-can {
  top: 250px;
  right: 3%;
  width: 148px;
  height: 245px;
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(8deg);
}

.can-top {
  position: relative;
  z-index: 2;
  display: block;
  width: 144px;
  height: 24px;
  background: #d4d2c7;
  border: 6px solid #9d9b8f;
  border-radius: 50%;
}

.can-body {
  position: relative;
  display: block;
  width: 144px;
  height: 224px;
  margin-top: -12px;
  overflow: hidden;
  background: linear-gradient(90deg, #78a574, #b5ca89 44%, #6b956b);
  border-radius: 12px 12px 24px 24px;
}

.can-body::before {
  position: absolute;
  top: 60px;
  left: 23px;
  width: 98px;
  height: 98px;
  background: rgba(251, 248, 241, 0.9);
  border-radius: 50%;
  content: "";
}

.can-body i,
.can-body i::before,
.can-body i::after {
  position: absolute;
  z-index: 1;
  top: 89px;
  left: 52px;
  width: 40px;
  height: 50px;
  background: #80a849;
  border-radius: 48% 52% 50% 50%;
  content: "";
}

.can-body i::before {
  top: -13px;
  left: 34px;
  width: 13px;
  height: 28px;
  background: var(--forest-700);
  transform: rotate(38deg);
}

.can-body i::after {
  top: -5px;
  left: -18px;
  width: 30px;
  height: 18px;
  background: var(--forest-700);
  transform: rotate(-25deg);
}

.scene-shelf {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 92px;
  left: 1%;
  height: 32px;
  background: linear-gradient(#d8c097 0 38%, #a3844d 40% 72%, #715a36 74%);
  border-radius: 4px 4px 16px 16px;
  box-shadow: 0 35px 40px rgba(5, 23, 14, 0.38);
  transform: perspective(500px) rotateX(15deg);
}

.scene-shelf span {
  position: absolute;
  top: 100%;
  left: 8%;
  width: 12px;
  height: 65px;
  background: #6f593c;
  box-shadow: 510px 0 #6f593c;
}

.scene-note {
  position: absolute;
  z-index: 4;
  right: 7%;
  bottom: 7px;
  display: grid;
  min-width: 242px;
  padding: 18px 22px;
  color: var(--forest-950);
  background: var(--linen-100);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(5, 23, 14, 0.22);
}

.scene-note span {
  color: var(--gold-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.scene-note strong {
  margin-top: 3px;
  font-size: 17px;
}

.scene-note small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.ticker {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54px;
  overflow: hidden;
  color: var(--forest-950);
  background: var(--gold-300);
}

.ticker-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  min-width: 1050px;
  height: 100%;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  background: var(--forest-700);
  border-radius: 50%;
}

.category-rail,
.products-section,
.snack-section {
  padding-top: 112px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  margin-bottom: 13px;
}

.section-heading h2,
.ranking-intro h2,
.drink-copy h2 {
  margin: 0;
  color: var(--forest-950);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.section-heading > div > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-card {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 104px;
  padding: 16px;
  overflow: hidden;
  background: #f1eadc;
  border: 1px solid rgba(22, 61, 43, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(30, 48, 37, 0.035);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  z-index: 2;
  background: #f6f0e4;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.category-card > span:nth-child(2) {
  display: grid;
}

.category-card strong {
  font-size: 15px;
}

.category-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.category-card > b {
  align-self: start;
  color: var(--gold-500);
  font-size: 15px;
}

.category-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  overflow: hidden;
  background: var(--forest-800);
  border-radius: 18px;
}

.category-icon i,
.category-icon i::before,
.category-icon i::after {
  position: absolute;
  display: block;
  content: "";
}

.icon-cracker i {
  width: 36px;
  height: 27px;
  background: var(--gold-300);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.icon-cracker i::before {
  inset: 6px 9px;
  border: 2px dashed #ad7e35;
  border-radius: 50%;
}

.icon-drink {
  background: #8fae83;
}

.icon-drink i {
  width: 24px;
  height: 42px;
  background: var(--linen-50);
  border-radius: 5px 5px 8px 8px;
}

.icon-drink i::before {
  top: -3px;
  left: 2px;
  width: 20px;
  height: 5px;
  background: #71796f;
  border-radius: 50%;
}

.icon-drink i::after {
  top: 12px;
  left: 4px;
  width: 16px;
  height: 18px;
  background: #bfd08a;
  border-radius: 50%;
}

.icon-candy {
  background: #bf7d6a;
}

.icon-candy i {
  width: 32px;
  height: 29px;
  background: #f2d2c1;
  border-radius: 50%;
}

.icon-candy i::before,
.icon-candy i::after {
  top: 4px;
  width: 18px;
  height: 22px;
  background: #f0bb9f;
  clip-path: polygon(0 0, 100% 35%, 70% 50%, 100% 75%, 0 100%);
}

.icon-candy i::before {
  left: -14px;
}

.icon-candy i::after {
  right: -14px;
  transform: scaleX(-1);
}

.icon-seaweed {
  background: #536a53;
}

.icon-seaweed i {
  width: 30px;
  height: 42px;
  background: #1f3c2e;
  border: 3px solid #c9b06f;
  transform: rotate(7deg);
}

.icon-seaweed i::before {
  inset: 6px;
  border: 1px dashed #73916f;
}

.products-section {
  padding-bottom: 125px;
}

.filter-tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: var(--linen-100);
  border: 1px solid rgba(22, 61, 43, 0.07);
  border-radius: 999px;
}

.filter-button {
  min-width: 64px;
  padding: 8px 16px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.filter-button.is-active {
  color: var(--white);
  background: var(--forest-800);
  box-shadow: 0 5px 14px rgba(22, 70, 47, 0.16);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 18px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(22, 61, 43, 0.075);
  border-radius: var(--radius-md);
  box-shadow: 0 9px 30px rgba(25, 45, 33, 0.045);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  box-shadow: 0 22px 50px rgba(25, 45, 33, 0.11);
  transform: translateY(-7px);
}

.product-card.is-filtered {
  display: none;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 275px;
  overflow: hidden;
  background: #e9e1d1;
}

.product-visual::before {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 23px rgba(255, 255, 255, 0.1);
  content: "";
}

.product-visual::after {
  position: absolute;
  right: 18%;
  bottom: 27px;
  left: 18%;
  height: 18px;
  background: rgba(29, 45, 32, 0.16);
  border-radius: 50%;
  filter: blur(9px);
  content: "";
}

.visual-rice { background: #dfc98e; }
.visual-tea { background: #e5c9bd; }
.visual-corn { background: #e2a950; }
.visual-grape { background: #a9c295; }
.visual-plum { background: #d3a6a2; }
.visual-seaweed { background: #80957a; }
.visual-coffee { background: #b58c6d; }
.visual-potato { background: #d1af5c; }

.product-badge {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 16px;
  padding: 5px 10px;
  color: #fff;
  background: var(--forest-800);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.badge-gold {
  color: var(--forest-950);
  background: var(--gold-300);
}

.badge-soft {
  color: var(--forest-900);
  background: rgba(251, 248, 241, 0.84);
}

.heart-button {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--forest-900);
  background: rgba(255, 253, 248, 0.75);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(26, 40, 31, 0.09);
  backdrop-filter: blur(7px);
}

.heart-button span {
  font-size: 23px;
  line-height: 1;
}

.heart-button[aria-pressed="true"] {
  color: #fff;
  background: var(--orange);
}

.pack {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 22px 18px rgba(40, 39, 27, 0.18));
  transition: transform 0.3s ease;
}

.product-card:hover .pack {
  transform: translateY(-5px) rotate(1deg);
}

.pack i,
.pack b,
.pack em,
.pack i::before,
.pack i::after,
.pack b::before,
.pack b::after {
  position: absolute;
  display: block;
  content: "";
}

.pack-pillow,
.pack-chip {
  width: 136px;
  height: 182px;
  background: #f3e0a8;
  border-radius: 10px 10px 24px 24px;
  clip-path: polygon(4% 0, 96% 0, 100% 95%, 91% 100%, 8% 97%, 0 100%);
}

.pack-pillow::before,
.pack-chip::before,
.pack-pouch::before {
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  border-top: 2px dashed rgba(64, 60, 32, 0.24);
  content: "";
}

.pack-pillow i,
.pack-chip i {
  top: 44px;
  left: 22px;
  width: 92px;
  height: 92px;
  background: var(--forest-700);
  border: 5px solid var(--linen-50);
  border-radius: 50%;
}

.pack-pillow i::before {
  top: 25px;
  left: 16px;
  width: 50px;
  height: 34px;
  background: #efd389;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.pack-pillow i::after {
  top: 33px;
  left: 26px;
  width: 30px;
  height: 17px;
  border: 2px dashed #af7b31;
  border-radius: 50%;
}

.pack-pillow b {
  right: 16px;
  bottom: 23px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50%;
}

.pack-bottle {
  width: 105px;
  height: 200px;
  background: linear-gradient(90deg, #ce9b95, #edc6ba 38%, #cb9a91);
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px 18px 28px 28px;
}

.pack-bottle::before {
  position: absolute;
  top: -18px;
  left: 31px;
  width: 43px;
  height: 22px;
  background: var(--forest-700);
  border-radius: 7px 7px 3px 3px;
  content: "";
}

.pack-bottle i {
  top: 59px;
  width: 100%;
  height: 92px;
  background: var(--linen-100);
  border-top: 7px solid var(--forest-700);
  border-bottom: 7px solid var(--forest-700);
}

.pack-bottle i::before {
  top: 17px;
  left: 29px;
  width: 45px;
  height: 45px;
  background: #e3aa9d;
  border: 4px solid #fff7e8;
  border-radius: 50% 48% 52% 45%;
}

.pack-box {
  width: 126px;
  height: 187px;
  background: #eecc71;
  border-radius: 7px;
  box-shadow: inset -9px 0 rgba(119, 76, 24, 0.12);
  transform: rotate(-3deg);
}

.pack-box::before {
  position: absolute;
  top: -9px;
  left: 8px;
  width: 110px;
  height: 14px;
  background: #dbb657;
  clip-path: polygon(0 100%, 8% 0, 92% 0, 100% 100%);
  content: "";
}

.pack-box i {
  top: 42px;
  left: 18px;
  width: 90px;
  height: 98px;
  background: var(--forest-800);
  border-radius: 50% 50% 38% 38%;
}

.pack-box i::before,
.pack-box i::after {
  width: 23px;
  height: 50px;
  background: #f2d362;
  border: 3px solid #fff0ba;
  border-radius: 50%;
  transform: rotate(38deg);
}

.pack-box i::before { top: 27px; left: 23px; }
.pack-box i::after { top: 18px; right: 20px; transform: rotate(-32deg); }

.pack-can {
  width: 111px;
  height: 186px;
  background: linear-gradient(90deg, #6d9268, #a9c985 42%, #76976a);
  border-radius: 9px 9px 20px 20px;
}

.pack-can::before,
.pack-can::after {
  position: absolute;
  left: 1px;
  width: 109px;
  height: 16px;
  background: #c7c8bf;
  border: 4px solid #969a8f;
  border-radius: 50%;
  content: "";
}

.pack-can::before { z-index: 2; top: -7px; }
.pack-can::after { bottom: -5px; }

.pack-can i {
  z-index: 1;
  top: 41px;
  left: 16px;
  width: 79px;
  height: 92px;
  background: var(--linen-50);
  border-radius: 40% 50% 48% 43%;
}

.pack-can i::before,
.pack-can i::after {
  background: #79a348;
  border-radius: 50%;
}

.pack-can i::before { top: 24px; left: 16px; width: 42px; height: 53px; }
.pack-can i::after { top: 15px; left: 49px; width: 13px; height: 27px; background: var(--forest-700); transform: rotate(40deg); }

.pack-pouch {
  width: 142px;
  height: 176px;
  background: #a94f55;
  border-radius: 12px 12px 30px 30px;
  clip-path: polygon(4% 0, 96% 0, 100% 95%, 88% 100%, 12% 98%, 0 100%);
}

.pack-pouch i {
  top: 45px;
  left: 24px;
  width: 94px;
  height: 90px;
  background: var(--linen-100);
  border: 5px solid #d5ad73;
  border-radius: 50%;
}

.pack-pouch i::before,
.pack-pouch i::after {
  top: 25px;
  width: 34px;
  height: 34px;
  background: #944753;
  border-radius: 50%;
}

.pack-pouch i::before { left: 15px; }
.pack-pouch i::after { right: 15px; }

.pack-pouch b {
  top: 56px;
  left: 69px;
  width: 7px;
  height: 34px;
  background: var(--forest-700);
  transform: rotate(19deg);
}

.pack-sleeve {
  width: 128px;
  height: 190px;
  padding: 11px;
  background: #234331;
  border: 4px solid #d1b06a;
  border-radius: 4px;
  transform: rotate(3deg);
}

.pack-sleeve::before {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(244, 237, 223, 0.55);
  content: "";
}

.pack-sleeve i {
  top: 45px;
  left: 29px;
  width: 62px;
  height: 84px;
  background: #172d22;
  border: 4px solid var(--linen-100);
  transform: rotate(-8deg);
}

.pack-sleeve i::after {
  inset: 8px;
  border: 1px dashed #6e8f70;
}

.pack-sleeve b {
  right: 18px;
  bottom: 18px;
  width: 26px;
  height: 26px;
  background: var(--gold-300);
  border-radius: 50%;
}

.pack-cup {
  width: 122px;
  height: 173px;
  background: linear-gradient(90deg, #d7c5ad, #f3e8d5 45%, #c8b59d);
  clip-path: polygon(7% 0, 93% 0, 82% 100%, 18% 100%);
}

.pack-cup::before {
  position: absolute;
  z-index: 2;
  top: -7px;
  left: 0;
  width: 122px;
  height: 18px;
  background: #5a3b2f;
  border-radius: 50%;
  content: "";
}

.pack-cup i {
  top: 50px;
  left: 25px;
  width: 72px;
  height: 72px;
  background: #6b4435;
  border: 5px solid var(--gold-300);
  border-radius: 50%;
}

.pack-cup i::before {
  top: 21px;
  left: 20px;
  width: 24px;
  height: 30px;
  border: 3px solid var(--linen-100);
  border-top-width: 0;
  border-radius: 0 0 50% 50%;
}

.pack-chip {
  width: 143px;
  height: 188px;
  background: #d2a942;
  transform: rotate(-4deg);
}

.pack-chip i {
  top: 39px;
  left: 24px;
  width: 95px;
  height: 104px;
  background: var(--forest-800);
}

.pack-chip i::before,
.pack-chip i::after {
  width: 54px;
  height: 38px;
  background: #efd674;
  border-radius: 50%;
}

.pack-chip i::before { top: 25px; left: 11px; transform: rotate(-20deg); }
.pack-chip i::after { right: 9px; bottom: 15px; transform: rotate(25deg); }

.product-info {
  padding: 19px 20px 20px;
}

.product-meta {
  margin: 0 0 5px;
  color: var(--gold-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-info h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.product-desc {
  min-height: 22px;
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.product-bottom > strong {
  font-size: 21px;
  letter-spacing: -0.03em;
}

.product-bottom > strong small {
  margin-right: 2px;
  font-size: 12px;
}

.add-button {
  padding: 7px 12px;
  color: var(--forest-800);
  background: transparent;
  border: 1px solid rgba(22, 70, 47, 0.22);
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease;
}

.add-button:hover,
.add-button.is-added {
  color: #fff;
  background: var(--forest-800);
}

.ranking-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--linen-50);
  background: var(--forest-900);
}

.ranking-section::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -320px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(214, 189, 130, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(214, 189, 130, 0.025), 0 0 0 160px rgba(214, 189, 130, 0.018);
  content: "";
}

.ranking-glow {
  position: absolute;
  z-index: -1;
  top: -180px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(179, 147, 80, 0.15), transparent 68%);
  border-radius: 50%;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.ranking-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 8vw, 120px);
  padding-top: 122px;
  padding-bottom: 122px;
}

.ranking-intro {
  position: relative;
  align-self: start;
  padding-top: 16px;
}

.light-eyebrow {
  color: var(--gold-300);
}

.ranking-intro h2,
.drink-copy h2 {
  color: var(--linen-50);
}

.ranking-intro > p:not(.eyebrow) {
  max-width: 400px;
  margin: 22px 0 0;
  color: rgba(244, 237, 223, 0.64);
  font-size: 14px;
  line-height: 1.85;
}

.ranking-tabs {
  display: inline-flex;
  gap: 5px;
  margin-top: 38px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.ranking-tabs button {
  min-width: 76px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.ranking-tabs button[aria-selected="true"] {
  color: var(--forest-950);
  background: var(--gold-300);
}

.ranking-stamp {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  margin: 60px 0 0 auto;
  color: var(--gold-300);
  border: 1px solid rgba(214, 189, 130, 0.44);
  border-radius: 50%;
  font-size: 9px;
  letter-spacing: 0.24em;
  line-height: 1.1;
  transform: rotate(-8deg);
}

.ranking-stamp strong {
  margin: -5px 0;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.ranking-panels {
  min-width: 0;
}

.ranking-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ranking-list li {
  display: grid;
  grid-template-columns: 40px 74px minmax(0, 1fr) auto 36px;
  align-items: center;
  gap: 18px;
  min-height: 102px;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(244, 237, 223, 0.12);
}

.ranking-list li:first-child {
  border-top: 1px solid rgba(244, 237, 223, 0.12);
}

.rank-number {
  color: var(--gold-300);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.rank-thumb {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  background: var(--linen-100);
  border-radius: 17px;
}

.rank-thumb i {
  position: relative;
  display: block;
  width: 31px;
  height: 48px;
  background: var(--gold-300);
  border-radius: 4px 4px 9px 9px;
  box-shadow: 0 9px 11px rgba(8, 29, 18, 0.18);
}

.rank-thumb i::before {
  position: absolute;
  top: 12px;
  left: 5px;
  width: 21px;
  height: 24px;
  background: var(--forest-700);
  content: "";
}

.thumb-tea { background: #e5c9bd; }
.thumb-tea i { width: 25px; background: #c9908e; }
.thumb-grape { background: #a9c295; }
.thumb-grape i { background: #799d70; }
.thumb-seaweed { background: #82947c; }
.thumb-seaweed i { background: #274332; border: 2px solid #c7ab64; }
.thumb-rice { background: #d9c58f; }
.thumb-rice i { background: #e7cf8e; }
.thumb-coffee { background: #b88d70; }
.thumb-coffee i { background: #f0dfc8; clip-path: polygon(5% 0, 95% 0, 83% 100%, 17% 100%); }

.rank-copy {
  display: grid;
  min-width: 0;
}

.rank-copy small {
  color: var(--gold-300);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.rank-copy strong {
  margin-top: 2px;
  overflow: hidden;
  color: var(--linen-50);
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-copy em {
  margin-top: 1px;
  overflow: hidden;
  color: rgba(244, 237, 223, 0.45);
  font-size: 10px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-price {
  font-size: 15px;
  font-weight: 760;
}

.round-add {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--linen-50);
  background: transparent;
  border: 1px solid rgba(244, 237, 223, 0.25);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.round-add:hover,
.round-add.is-added {
  color: var(--forest-950);
  background: var(--gold-300);
}

.drink-feature {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  overflow: hidden;
  color: var(--linen-50);
  background: #688768;
}

.drink-feature::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 23% 42%, rgba(244, 237, 223, 0.14), transparent 31%),
    linear-gradient(115deg, #456b51, #769271 66%, #90a27e);
  content: "";
}

.drink-feature::after {
  position: absolute;
  z-index: -1;
  top: -40%;
  left: 46%;
  width: 1px;
  height: 180%;
  background: rgba(255, 255, 255, 0.14);
  content: "";
  transform: rotate(14deg);
}

.drink-bubbles i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.drink-bubbles i:nth-child(1) { top: 14%; left: 8%; width: 46px; height: 46px; }
.drink-bubbles i:nth-child(2) { right: 9%; bottom: 17%; width: 80px; height: 80px; }
.drink-bubbles i:nth-child(3) { top: 19%; right: 33%; width: 25px; height: 25px; }

.drink-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  min-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.drink-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.large-can {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 430px;
  background: linear-gradient(90deg, #b4c98f, #edf0c8 38%, #8ba876 84%, #6e8d67);
  border-radius: 22px 22px 46px 46px;
  box-shadow: inset -25px 0 40px rgba(45, 75, 50, 0.2), 0 48px 60px rgba(21, 52, 33, 0.27);
  transform: rotate(-7deg);
}

.large-can::before,
.large-can::after {
  position: absolute;
  left: 0;
  width: 250px;
  height: 39px;
  background: #d7d5c9;
  border: 8px solid #a5a69c;
  border-radius: 50%;
  content: "";
}

.large-can::before { z-index: 3; top: -15px; }
.large-can::after { bottom: -12px; }

.large-can > span {
  position: absolute;
  z-index: 1;
  top: 102px;
  left: 37px;
  display: block;
  width: 176px;
  height: 210px;
  background: rgba(251, 248, 241, 0.9);
  border: 7px solid var(--forest-700);
  border-radius: 45% 55% 43% 57%;
}

.large-can i,
.large-can i::before,
.large-can i::after {
  position: absolute;
  z-index: 2;
  display: block;
  background: #86ac51;
  border-radius: 50%;
  content: "";
}

.large-can i { top: 160px; left: 76px; width: 105px; height: 126px; transform: rotate(9deg); }
.large-can i::before { top: -26px; right: -7px; width: 30px; height: 66px; background: var(--forest-700); transform: rotate(34deg); }
.large-can i::after { top: -5px; left: -37px; width: 66px; height: 40px; background: var(--forest-700); transform: rotate(-24deg); }

.large-can b {
  position: absolute;
  z-index: 2;
  top: 82px;
  right: 38px;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 20px -28px 0 -6px rgba(255, 255, 255, 0.7), -135px 225px 0 -4px rgba(255, 255, 255, 0.6);
}

.fruit {
  position: absolute;
  z-index: 3;
  width: 95px;
  height: 105px;
  background: radial-gradient(circle at 33% 28%, #c8da75, #7b9c46 70%);
  border: 7px solid rgba(249, 247, 213, 0.82);
  border-radius: 50%;
  box-shadow: 0 22px 35px rgba(19, 48, 30, 0.2);
}

.fruit::before {
  position: absolute;
  top: -26px;
  left: 54px;
  width: 35px;
  height: 22px;
  background: var(--forest-700);
  border-radius: 100% 0;
  content: "";
  transform: rotate(-19deg);
}

.fruit-one { right: 13%; bottom: 95px; transform: rotate(22deg); }
.fruit-two { top: 125px; left: 5%; width: 60px; height: 65px; transform: rotate(-25deg); }

.drink-shadow {
  position: absolute;
  bottom: 32px;
  width: 390px;
  height: 55px;
  background: rgba(18, 48, 29, 0.25);
  border-radius: 50%;
  filter: blur(16px);
}

.drink-copy {
  position: relative;
  z-index: 2;
}

.drink-copy h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.drink-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(251, 248, 241, 0.75);
  font-size: 14px;
  line-height: 1.9;
}

.taste-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 38px 0 34px;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.taste-notes li {
  display: grid;
  padding: 15px 16px;
  background: rgba(66, 99, 72, 0.72);
}

.taste-notes span {
  color: var(--gold-300);
  font-size: 9px;
  font-weight: 800;
}

.taste-notes strong {
  margin-top: 4px;
  font-size: 13px;
}

.taste-notes small {
  color: rgba(251, 248, 241, 0.55);
  font-size: 10px;
}

.button-linen {
  color: var(--forest-900);
  background: var(--linen-100);
  box-shadow: 0 14px 30px rgba(25, 51, 31, 0.15);
}

.snack-section {
  padding-bottom: 122px;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.moment-card {
  overflow: hidden;
  background: var(--linen-100);
  border: 1px solid rgba(22, 61, 43, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.moment-art {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #d2c19d;
}

.moment-movie .moment-art { background: #5c765c; }
.moment-share .moment-art { background: #bd8a76; }

.moment-art::before {
  position: absolute;
  top: -45%;
  left: -10%;
  width: 120%;
  height: 110%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.06), 0 0 0 52px rgba(255, 255, 255, 0.035);
  content: "";
}

.moment-art > i {
  position: absolute;
  right: 16%;
  bottom: 24px;
  left: 16%;
  height: 20px;
  background: rgba(40, 44, 31, 0.16);
  border-radius: 50%;
  filter: blur(9px);
}

.mini-pack {
  position: absolute;
  z-index: 2;
  display: block;
  bottom: 41px;
  background: var(--linen-50);
  box-shadow: 0 22px 28px rgba(32, 41, 31, 0.16);
}

.mini-pack::before {
  position: absolute;
  top: 25%;
  left: 20%;
  width: 60%;
  height: 50%;
  background: var(--forest-700);
  content: "";
}

.mini-pack.one { left: 27%; width: 91px; height: 136px; background: #e9cf84; border-radius: 6px 6px 18px 18px; transform: rotate(-8deg); }
.mini-pack.two { right: 27%; width: 68px; height: 150px; background: #d7a7a0; border-radius: 14px 14px 20px 20px; transform: rotate(7deg); }
.mini-pack.three { left: 25%; width: 103px; height: 143px; background: #d7ae48; border-radius: 8px 8px 21px 21px; transform: rotate(-6deg); }
.mini-pack.four { right: 27%; width: 72px; height: 132px; background: #a4c084; border-radius: 7px 7px 16px 16px; transform: rotate(9deg); }
.mini-pack.five { left: 25%; width: 91px; height: 139px; background: #a65259; border-radius: 8px 8px 22px 22px; transform: rotate(-9deg); }
.mini-pack.six { right: 26%; width: 80px; height: 144px; background: #31503d; border: 3px solid #c7aa69; transform: rotate(8deg); }

.moment-content {
  padding: 26px 28px 30px;
}

.moment-content > span {
  color: var(--gold-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.moment-content h3 {
  margin: 5px 0 0;
  font-size: 21px;
}

.moment-content p {
  margin: 9px 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.moment-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 760;
}

.service-strip {
  padding: 42px 0;
  background: #eee5d4;
  border-top: 1px solid rgba(22, 61, 43, 0.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-item > span {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--gold-300);
  background: var(--forest-800);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.service-item > div {
  display: grid;
}

.service-item strong {
  font-size: 13px;
}

.service-item small {
  color: var(--muted);
  font-size: 10px;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-left: 26px;
  border-left: 1px solid rgba(22, 61, 43, 0.14);
  font-size: 12px;
  font-weight: 750;
}

.back-top span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--linen-50);
  background: var(--forest-800);
  border-radius: 50%;
}

.drawer-backdrop {
  position: fixed;
  z-index: 190;
  inset: 0;
  background: rgba(5, 22, 14, 0.45);
  backdrop-filter: blur(4px);
}

.pick-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(440px, 100%);
  height: 100dvh;
  color: var(--ink);
  background: var(--linen-50);
  box-shadow: -22px 0 60px rgba(7, 28, 17, 0.2);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s;
}

.pick-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--linen-200);
}

.drawer-header p {
  margin: 0 0 3px;
  color: var(--gold-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.drawer-header h2 {
  margin: 0;
  font-size: 23px;
}

.drawer-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--linen-100);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 330px;
  text-align: center;
}

.empty-state > span {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: var(--forest-700);
  background: var(--linen-100);
  border-radius: 50%;
  font-size: 40px;
}

.empty-state strong {
  margin-top: -32px;
  font-size: 18px;
}

.empty-state p {
  max-width: 260px;
  margin: -32px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.pick-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pick-list li {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: var(--linen-100);
  border-radius: 14px;
}

.pick-list li > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--gold-300);
  background: var(--forest-800);
  border-radius: 12px;
  font-weight: 850;
}

.pick-list li > strong {
  font-size: 13px;
}

.remove-pick {
  padding: 7px 9px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
}

.drawer-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: var(--linen-100);
  border-top: 1px solid var(--linen-200);
  font-size: 12px;
}

.clear-list {
  padding: 8px 13px;
  color: var(--forest-800);
  background: transparent;
  border: 1px solid rgba(22, 70, 47, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
}

.toast {
  position: fixed;
  z-index: 300;
  bottom: 24px;
  left: 50%;
  min-width: 200px;
  padding: 11px 18px;
  color: var(--linen-50);
  background: var(--forest-950);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-grid .reveal:nth-child(2),
.category-grid .reveal:nth-child(2),
.moment-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.product-grid .reveal:nth-child(3),
.category-grid .reveal:nth-child(3),
.moment-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.product-grid .reveal:nth-child(4),
.category-grid .reveal:nth-child(4) { transition-delay: 0.18s; }

@media (max-width: 1180px) {
  .hero-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  }

  .hero-product-bag {
    left: 31%;
    width: 215px;
    height: 310px;
  }

  .bag-art {
    left: 27px;
    width: 161px;
    height: 161px;
  }

  .hero-product-bottle {
    left: 0;
    transform: translate3d(0, var(--parallax-y, 0), 0) rotate(5deg) scale(0.9);
  }

  .hero-product-can {
    right: 0;
    transform: translate3d(0, var(--parallax-y, 0), 0) rotate(8deg) scale(0.9);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .back-top {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 10px;
    padding: 0;
    border: 0;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  html:not(.js) .menu-button,
  html:not(.js) .list-button {
    display: none;
  }

  .noscript-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    padding: 12px 16px;
    background: var(--linen-50);
    border-bottom: 1px solid var(--linen-200);
    box-shadow: 0 16px 28px rgba(13, 37, 25, 0.1);
    text-align: center;
  }

  .noscript-nav a {
    padding: 7px 4px;
    font-size: 12px;
    font-weight: 700;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(calc(100% - 48px), 720px);
    min-height: auto;
    padding: 82px 0 108px;
  }

  .hero-copy {
    max-width: 650px;
    padding: 0;
  }

  .hero-scene {
    min-height: 560px;
    margin-top: -10px;
  }

  .hero-product-bag {
    left: 39%;
  }

  .hero-product-bottle {
    left: 14%;
  }

  .hero-product-can {
    right: 10%;
  }

  .scene-shelf {
    right: 5%;
    left: 5%;
  }

  .scene-shelf span {
    box-shadow: calc(100vw - 170px) 0 #6f593c;
  }

  .ranking-shell {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ranking-intro {
    max-width: 620px;
  }

  .ranking-stamp {
    position: absolute;
    right: 3%;
    bottom: 0;
    margin: 0;
  }

  .drink-shell {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
  }

  .large-can {
    transform: rotate(-7deg) scale(0.86);
  }

  .moment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .moment-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .moment-card:last-child .moment-art {
    height: 100%;
    min-height: 270px;
  }
}

@media (max-width: 720px) {
  :root {
    --radius-md: 18px;
    --radius-lg: 24px;
  }

  .section-shell,
  .header-shell {
    width: min(calc(100% - 32px), var(--section-width));
  }

  .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-copy {
    max-width: 190px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .icon-button,
  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero-shell {
    width: calc(100% - 32px);
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(45px, 13.3vw, 70px);
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-stats {
    gap: 18px;
  }

  .hero-stats div {
    padding-left: 11px;
  }

  .hero-stats dt {
    font-size: 17px;
  }

  .hero-scene {
    min-height: 485px;
  }

  .scene-label {
    top: 50px;
    right: 1%;
    width: 67px;
    height: 67px;
    font-size: 10px;
  }

  .hero-product-bag {
    top: 105px;
    left: 35%;
    width: 175px;
    height: 255px;
  }

  .bag-art {
    top: 55px;
    left: 23px;
    width: 130px;
    height: 130px;
    border-width: 6px;
  }

  .bag-art i {
    width: 64px;
    height: 43px;
  }

  .hero-product-bottle {
    top: 175px;
    left: 0;
    transform: translate3d(0, var(--parallax-y, 0), 0) rotate(5deg) scale(0.72);
    transform-origin: top left;
  }

  .hero-product-can {
    top: 198px;
    right: -3%;
    transform: translate3d(0, var(--parallax-y, 0), 0) rotate(8deg) scale(0.7);
    transform-origin: top right;
  }

  .scene-shelf {
    right: 0;
    bottom: 90px;
    left: 0;
  }

  .scene-note {
    right: 3%;
    bottom: 8px;
    min-width: 210px;
    padding: 14px 18px;
  }

  .category-rail,
  .products-section,
  .snack-section {
    padding-top: 82px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section-heading.compact {
    align-items: flex-end;
    flex-direction: row;
  }

  .section-heading h2,
  .ranking-intro h2 {
    font-size: 36px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-visual {
    min-height: 215px;
  }

  .pack {
    transform: scale(0.78);
  }

  .product-card:hover .pack {
    transform: translateY(-3px) rotate(1deg) scale(0.78);
  }

  .product-info {
    padding: 15px;
  }

  .product-info h3 {
    font-size: 16px;
  }

  .product-desc {
    display: none;
  }

  .product-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin-top: 12px;
  }

  .product-bottom > strong {
    font-size: 19px;
  }

  .add-button {
    width: 100%;
  }

  .ranking-shell {
    gap: 48px;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .ranking-stamp {
    display: none;
  }

  .ranking-list li {
    grid-template-columns: 30px 62px minmax(0, 1fr) auto;
    gap: 11px;
    min-height: 90px;
  }

  .rank-thumb {
    width: 60px;
    height: 60px;
  }

  .rank-price {
    display: none;
  }

  .round-add {
    width: 32px;
    height: 32px;
  }

  .drink-shell {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 70px;
    padding-bottom: 88px;
  }

  .drink-visual {
    min-height: 510px;
  }

  .drink-copy {
    padding-top: 15px;
  }

  .drink-copy h2 {
    font-size: 45px;
  }

  .moment-grid {
    grid-template-columns: 1fr;
  }

  .moment-card:last-child {
    grid-column: auto;
    display: block;
  }

  .moment-card:last-child .moment-art {
    height: 270px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 16px;
  }

  .service-item:nth-child(3) {
    grid-column: 1 / -1;
  }

  .back-top {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .brand-copy {
    max-width: 145px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .header-actions {
    gap: 4px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-stats {
    justify-content: space-between;
  }

  .section-heading.compact .dark-link {
    display: none;
  }

  .product-visual {
    min-height: 190px;
  }

  .pack {
    transform: scale(0.66);
  }

  .product-card:hover .pack {
    transform: translateY(-3px) rotate(1deg) scale(0.66);
  }

  .product-badge {
    top: 11px;
    left: 11px;
    padding: 4px 8px;
  }

  .heart-button {
    top: 9px;
    right: 9px;
    width: 34px;
    height: 34px;
  }

  .ranking-tabs {
    width: 100%;
  }

  .ranking-tabs button {
    flex: 1;
    min-width: 0;
  }

  .rank-copy strong {
    font-size: 14px;
  }

  .large-can {
    transform: rotate(-7deg) scale(0.76);
  }

  .fruit-one {
    right: 2%;
  }

  .fruit-two {
    left: 0;
  }

  .taste-notes {
    grid-template-columns: 1fr;
  }

  .taste-notes li {
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 8px;
  }

  .taste-notes strong,
  .taste-notes small {
    margin: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(3) {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-depth] {
    transform: none !important;
  }
}
