:root {
  --bg-a: #f5d9e1;
  --bg-b: #fff8f4;
  --glow: #ffc1d2;
  --ink: #2b171e;
  --accent: #b3123f;
  --soft: color-mix(in srgb, var(--ink) 58%, transparent);
  --paper: #fbf8f5;
  --black: #171314;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg-a);
  font-family: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: color 700ms var(--ease), background-color 700ms var(--ease);
}

body.is-locked { overflow: hidden; }

button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

::selection { color: var(--paper); background: var(--accent); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: #171314;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg-a);
  transition: background-color 900ms var(--ease);
}

.ambient__gradient,
.ambient__glow,
.ambient__noise { position: absolute; inset: 0; }

.ambient__gradient {
  background: linear-gradient(160deg, var(--bg-a), var(--bg-b));
  transition: background 900ms var(--ease);
}

.ambient__glow {
  inset: -10%;
  background: radial-gradient(ellipse 48% 42% at 52% 40%, var(--glow), transparent 72%);
  opacity: .92;
  filter: saturate(1.06);
  transition: background 900ms var(--ease);
}

.ambient__noise {
  opacity: .05;
  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='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: color-mix(in srgb, white 58%, var(--glow));
  opacity: .36;
  filter: blur(28px);
  animation: float 11s ease-in-out infinite;
}

.orb--one { top: 17%; left: 8%; width: 210px; height: 210px; }
.orb--two { top: 13%; right: 8%; width: 130px; height: 130px; animation-duration: 15s; animation-delay: -4s; }
.orb--three { right: 25%; bottom: 10%; width: 82px; height: 82px; animation-duration: 9s; animation-delay: -2s; }
.orb--four { left: 31%; bottom: 8%; width: 48px; height: 48px; animation-duration: 7s; animation-delay: -5s; }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -24px, 0); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  padding: 0 clamp(20px, 3.2vw, 52px);
  color: var(--ink);
  transition: color 700ms var(--ease), background-color 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: color-mix(in srgb, var(--bg-b) 72%, transparent);
  backdrop-filter: blur(18px) saturate(1.25);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}

.site-header.force-dark { color: #201b1c; }
.site-header.force-light { color: #fff; }

.site-header.is-scrolled.force-dark {
  background: color-mix(in srgb, #f8f2ee 88%, transparent);
  border-bottom-color: rgba(32, 27, 28, .12);
}

.site-header.is-scrolled.force-light {
  background: color-mix(in srgb, #141112 90%, transparent);
  border-bottom-color: rgba(255, 255, 255, .12);
  box-shadow: 0 10px 34px rgba(20, 17, 18, .18);
}

.site-header.is-scrolled.force-light .pill--soft {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.site-header.is-scrolled.force-light .pill--soft:hover { background: rgba(255, 255, 255, .2); }

.site-header.is-scrolled.force-light .pill--dark {
  color: #201b1c;
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.045em;
}

.brand__dot { color: var(--accent); }
.brand__shop { font-weight: 500; letter-spacing: -.055em; }

.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 36px); }

.primary-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

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

.language-picker { position: relative; display: inline-flex; }
.language-picker::after { content: "⌄"; position: absolute; right: 11px; top: 50%; pointer-events: none; transform: translateY(-56%); font-size: 10px; }
.language-picker select {
  min-height: 40px;
  padding: 0 27px 0 13px;
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  border-radius: 999px;
  outline: 0;
  color: inherit;
  background: color-mix(in srgb, white 34%, transparent);
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  appearance: none;
  cursor: pointer;
}
.language-picker select:focus-visible { box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 18%, transparent); }
.language-picker option { color: #201b1c; background: #fff; }
.site-header.is-scrolled.force-light .language-picker select { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .18); }

.pill {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 250ms var(--ease), background-color 250ms ease;
}

.pill:hover { transform: translateY(-2px); }
.pill--soft { background: color-mix(in srgb, white 48%, transparent); }
.pill--soft:hover { background: color-mix(in srgb, white 78%, transparent); }
.pill--dark { color: var(--bg-b); background: var(--ink); }
.cart-button { color: #fff; background: #20191b; }
.site-header.is-scrolled.force-light .cart-button { color: #201b1c; background: #fff; }

.search-mark {
  position: relative;
  width: 13px;
  height: 13px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}

.search-mark::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 1.5px;
  right: -4px;
  bottom: -2px;
  background: currentColor;
  transform: rotate(45deg);
}

.cart-count {
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-size: 11px;
  color: #fff;
  background: #b3123f;
  box-shadow: 0 0 0 2px color-mix(in srgb, currentColor 9%, transparent);
  transition: transform 420ms cubic-bezier(.34, 1.56, .64, 1), background-color 250ms ease;
}

.cart-count.is-bumping { transform: scale(1.45); }
.cart-button.is-celebrating { animation: cart-celebrate 620ms cubic-bezier(.2, .8, .2, 1); }

@keyframes cart-celebrate {
  0%, 100% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-4px) scale(1.08) rotate(-1.5deg); }
  68% { transform: translateY(0) scale(.98) rotate(1deg); }
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: max(680px, 100svh);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0 auto 0 0;
  width: min(58vw, 760px);
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--bg-a) 92%, transparent) 0 42%,
    color-mix(in srgb, var(--bg-a) 68%, transparent) 62%,
    color-mix(in srgb, var(--bg-a) 24%, transparent) 78%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 5;
  top: 26%;
  left: clamp(20px, 3.2vw, 52px);
  width: min(32vw, 400px);
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-copy__content { min-height: 198px; padding-top: 17px; }

.hero h1 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 850;
}

.hero-copy__content > p {
  max-width: 340px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.55;
  text-wrap: balance;
}

.specs { display: flex; flex-wrap: wrap; align-items: flex-start; gap: clamp(18px, 2.4vw, 36px); margin-top: 22px; }
.spec { display: flex; flex-direction: column; gap: 9px; }
.spec--heat,
.spec--sweetness { width: min(160px, 13vw); }
.spec__label { opacity: .5; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.spec strong { font-size: 12px; }
.spec small { color: var(--soft); font-size: 9px; }

.heat-track { position: relative; width: 100%; height: 3px; overflow: hidden; border-radius: 99px; background: color-mix(in srgb, var(--ink) 14%, transparent); }
.heat-fill { display: block; width: 40%; height: 100%; border-radius: inherit; background: var(--accent); transition: width 650ms var(--ease), background-color 800ms var(--ease); }
.sweetness-fill { background: linear-gradient(90deg, #f0a53a, #df657f); }

.carousel-shell {
  position: absolute;
  z-index: 3;
  inset: 10% 25% 15% 28%;
  perspective: 1500px;
  perspective-origin: 50% 45%;
  touch-action: pan-y;
  cursor: grab;
}

.carousel-shell.is-dragging { cursor: grabbing; }

.carousel-glow {
  position: absolute;
  inset: 8% 3% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--glow) 82%, white) 0, transparent 68%);
  filter: blur(2px);
}

.carousel-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.product-pack {
  position: absolute;
  top: 48%;
  left: 50%;
  width: min(42vw, 590px);
  height: min(42vw, 530px);
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: inherit;
  transform-style: preserve-3d;
  translate: -50% -50%;
  will-change: transform, opacity, filter;
  transform-origin: 50% 50%;
  transition: opacity 220ms ease, filter 220ms ease;
}

.product-pack img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 38px 38px rgba(0, 0, 0, .31));
}

.drag-hint {
  position: absolute;
  bottom: 3%;
  left: 50%;
  margin: 0;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--soft);
  background: color-mix(in srgb, white 45%, transparent);
  transform: translateX(-50%);
}

.purchase-card {
  position: absolute;
  right: clamp(20px, 3.2vw, 52px);
  bottom: clamp(110px, 15vh, 150px);
  z-index: 6;
  width: min(28vw, 320px);
}

.price-row { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.price-row > div:first-child { display: flex; flex-direction: column; gap: 7px; }
.price { font-size: clamp(30px, 2.7vw, 40px); line-height: 1; letter-spacing: -.055em; }
.price--pending { max-width: 170px; font-size: clamp(15px, 1.5vw, 20px) !important; line-height: 1.08; letter-spacing: -.025em !important; }

.stepper { display: flex; align-items: center; gap: 1px; padding: 4px; border-radius: 999px; background: color-mix(in srgb, white 48%, transparent); }
.stepper button { width: 34px; height: 34px; border: 0; border-radius: 50%; background: transparent; font-size: 18px; cursor: pointer; }
.stepper button:hover { background: color-mix(in srgb, white 80%, transparent); }
.stepper output { min-width: 24px; text-align: center; font-size: 13px; font-weight: 750; }

.add-button,
.checkout-button {
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 14px;
  color: var(--bg-b);
  background: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.add-button:hover,
.checkout-button:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 17px 36px rgba(0, 0, 0, .22); }
.add-button span:last-child, .checkout-button span:last-child { transition: transform 280ms var(--ease); }
.add-button:hover span:last-child, .checkout-button:hover:not(:disabled) span:last-child { transform: translateX(4px); }
.add-button.is-added,
.catalog-card__actions button.is-added { animation: add-confirm 620ms cubic-bezier(.2, .8, .2, 1); }
.checkout-button:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; }

@keyframes add-confirm {
  0%, 100% { transform: translateY(0) scale(1); }
  38% { transform: translateY(-4px) scale(1.06); filter: brightness(1.28); }
  72% { transform: translateY(0) scale(.98); }
}

.microcopy { margin: 12px 0 0; color: var(--soft); font-size: 10px; line-height: 1.5; }
.microcopy a { text-decoration: underline; text-underline-offset: 3px; }

.flavor-controls {
  position: absolute;
  z-index: 8;
  bottom: clamp(25px, 4vh, 46px);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100vw - 32px);
  transform: translateX(-50%);
}

.circle-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, white 48%, transparent);
  cursor: pointer;
  transition: background-color 250ms ease, transform 250ms var(--ease);
}

.circle-button:hover { background: color-mix(in srgb, white 80%, transparent); transform: scale(1.07); }
.flavor-tabs { max-width: min(64vw, 880px); display: flex; gap: 3px; padding: 0 6px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; }
.flavor-tabs::-webkit-scrollbar { display: none; }

.flavor-tab {
  min-height: 38px;
  padding: 0 clamp(10px, 1.2vw, 18px);
  border: 0;
  border-radius: 999px;
  font-size: clamp(10px, .9vw, 12px);
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
  background: transparent;
  cursor: pointer;
}

.flavor-tab.is-active { color: var(--bg-b); background: var(--ink); box-shadow: 0 7px 20px color-mix(in srgb, var(--ink) 18%, transparent); }
.scroll-cue { position: absolute; bottom: 40px; left: clamp(20px, 3.2vw, 52px); margin: 0; color: var(--soft); font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }

.section-pad { position: relative; padding: clamp(84px, 11vw, 168px) clamp(22px, 5vw, 80px); }
.section-pad h2 { margin: 0; font-size: clamp(42px, 6vw, 88px); line-height: .94; letter-spacing: -.065em; }

.catalog { z-index: 2; color: #f7efed; background: #171314; }
.catalog .section-index { color: #fb775d; }
.catalog-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 360px); gap: 44px; align-items: end; }
.catalog-heading h2 { margin-top: 20px; font-size: clamp(48px, 7vw, 106px); }
.catalog-heading h2 span { color: #fb775d; }
.catalog-heading > p { margin: 0 0 8px; color: #aa9da0; font-size: 14px; line-height: 1.65; }
.catalog-departments { margin-top: 56px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.department-card { position: relative; min-height: 170px; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 22px; color: #fff; text-align: left; cursor: pointer; transition: transform 320ms var(--ease), border-color 250ms ease, box-shadow 320ms var(--ease); }
.department-card::before { content: ""; position: absolute; width: 190px; aspect-ratio: 1; top: -85px; right: -50px; border: 1px solid rgba(255, 255, 255, .23); border-radius: 50%; box-shadow: inset 0 0 0 35px rgba(255, 255, 255, .04); }
.department-card:hover { z-index: 2; border-color: rgba(255, 255, 255, .34); transform: translateY(-6px); box-shadow: 0 22px 45px rgba(0, 0, 0, .25); }
.department-card--soups { background: linear-gradient(135deg, #9d1737, #e24e38); }
.department-card--chips { background: linear-gradient(135deg, #a6680c, #efad25); }
.department-card--drinks { background: linear-gradient(135deg, #174b78, #2e92a7); }
.department-card__index { position: absolute; top: 21px; left: 23px; color: rgba(255, 255, 255, .68); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.department-card strong { position: relative; font-size: clamp(23px, 2.4vw, 36px); line-height: 1; letter-spacing: -.045em; }
.department-card small { position: relative; margin-top: 11px; color: rgba(255, 255, 255, .72); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.catalog-filters { margin-top: 54px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.catalog-filters::-webkit-scrollbar { display: none; }
.catalog-filter { min-height: 42px; padding: 0 18px; flex: 0 0 auto; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; color: #d8ced0; background: transparent; font-size: 11px; font-weight: 750; cursor: pointer; transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease; }
.catalog-filter:hover, .catalog-filter.is-active { border-color: #fb775d; color: #171314; background: #fb775d; }
.catalog-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; gap: 14px; }
.catalog-card { min-width: 0; height: 100%; display: flex; flex-direction: column; overflow: hidden; border-radius: 22px; color: #20191b; background: #f9f5f2; box-shadow: 0 16px 40px rgba(0, 0, 0, .18); transition: transform 360ms var(--ease), box-shadow 360ms var(--ease); }
.catalog-card[hidden] { display: none; }
.catalog-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(0, 0, 0, .28); }
.catalog-card__visual { position: relative; height: clamp(250px, 24vw, 370px); display: grid; place-items: center; isolation: isolate; overflow: hidden; background: radial-gradient(circle at 50% 42%, #fff 0 34%, #eee5e3 74%, #dfd4d2 100%); }
.catalog-card[data-category="soups"] .catalog-card__visual,
.catalog-card[data-category="bowls"] .catalog-card__visual,
.catalog-card[data-category="tteokbokki"] .catalog-card__visual { background: radial-gradient(circle at 50% 42%, #fff8ed 0 32%, #f5c177 70%, #db7f35 100%); }
.catalog-card[data-category="chips"] .catalog-card__visual { background: radial-gradient(circle at 50% 42%, #fffdf3 0 32%, #f5d98c 72%, #d9a647 100%); }
.catalog-card[data-category="cookies"] .catalog-card__visual { background: radial-gradient(circle at 50% 42%, #fff9f7 0 32%, #e8c6c0 72%, #c59a94 100%); }
.catalog-card[data-category="candy"] .catalog-card__visual { background: radial-gradient(circle at 50% 42%, #fff8fb 0 32%, #efcadc 72%, #cf8fae 100%); }
.catalog-card[data-category="bakery"] .catalog-card__visual { background: radial-gradient(circle at 50% 42%, #fffdf4 0 32%, #ead7a7 72%, #c7a66a 100%); }
.catalog-card[data-category="sauces"] .catalog-card__visual { background: radial-gradient(circle at 50% 42%, #fff8f5 0 32%, #f0a38e 72%, #d65e42 100%); }
.catalog-card__visual::after { content: ""; position: absolute; z-index: 0; inset: auto 12% 4%; height: 19%; border-radius: 50%; background: rgba(55, 34, 38, .2); filter: blur(20px); }
.catalog-card__visual > span { position: absolute; top: 15px; left: 15px; z-index: 2; padding: 7px 10px; border-radius: 999px; color: #514649; background: rgba(255, 255, 255, .78); backdrop-filter: blur(8px); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.catalog-card__visual > .catalog-card__brand { right: 15px; left: auto; max-width: 48%; overflow: hidden; color: #fff; background: rgba(32, 25, 27, .76); text-overflow: ellipsis; white-space: nowrap; }
.catalog-card__visual picture { position: absolute; z-index: 1; inset: 0; display: grid; place-items: center; }
.catalog-card__visual img { position: relative; z-index: 1; width: 94%; height: 92%; object-fit: contain; filter: drop-shadow(0 22px 24px rgba(0, 0, 0, .23)); transition: transform 430ms var(--ease); }
.catalog-card:hover .catalog-card__visual img { transform: scale(1.045) rotate(-1deg); }
.catalog-card__body { flex: 1; padding: 20px 20px 18px; display: flex; flex-direction: column; }
.catalog-card__sku { color: #9d2441; font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.catalog-card h3 { min-height: 2.25em; margin: 9px 0 0; font-size: clamp(18px, 1.6vw, 25px); line-height: 1.08; letter-spacing: -.04em; }
.catalog-card__body > p { margin: 10px 0 0; color: #7d7174; font-size: 11px; }
.catalog-card__heat,
.catalog-card__sweetness { margin-top: 13px; display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 9px; }
.catalog-card__heat > span,
.catalog-card__sweetness > span { height: 3px; overflow: hidden; border-radius: 99px; background: #e2d7d9; }
.catalog-card__heat i,
.catalog-card__sweetness i { display: block; height: 100%; border-radius: inherit; }
.catalog-card__heat i { width: var(--heat); background: #b3123f; }
.catalog-card__sweetness i { width: var(--sweetness); background: linear-gradient(90deg, #f0a53a, #df657f); }
.catalog-card__heat small,
.catalog-card__sweetness small { color: #75696c; font-size: 9px; font-weight: 700; }
.catalog-card__sweetness + .catalog-card__footer { margin-top: 13px; }
.refrescos-info .catalog-card__sweetness { max-width: 310px; margin-top: 18px; }
.catalog-card__calories { margin-top: 12px !important; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; color: #392e31 !important; }
.catalog-card__calories strong { font-size: 11px; }
.catalog-card__calories small { color: #887b7e; font-size: 9px; }
.catalog-card__footer { min-height: 44px; margin-top: 18px; padding-top: 14px; display: flex; align-items: start; justify-content: flex-start; gap: 12px; border-top: 1px solid #e6dcde; }
.catalog-card__footer strong, .catalog-card__footer a { font-size: 9px; line-height: 1.35; }
.catalog-card__footer strong { color: #42724d; }
.catalog-card__footer strong.is-sold-out { color: #b3123f; }
.catalog-card__footer a { flex: 0 0 auto; color: #655a5d; text-underline-offset: 3px; }
.catalog-card__price { margin-top: 12px; display: block; color: #20191b; font-size: 12px; font-weight: 800; }
.catalog-card__actions { margin-top: auto; padding-top: 18px; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.catalog-card__actions .catalog-card__price { margin-top: 0; font-size: 18px; letter-spacing: -.035em; }
.catalog-card__buy { display: flex; align-items: center; gap: 7px; }
.catalog-stepper { height: 38px; display: flex; align-items: center; border: 1px solid #ded3d5; border-radius: 999px; background: #fff; }
.catalog-stepper button { width: 28px; height: 36px; padding: 0; border: 0; border-radius: 50%; color: #514649; background: transparent; font-size: 14px; cursor: pointer; }
.catalog-stepper output { min-width: 19px; color: #20191b; text-align: center; font-size: 10px; font-weight: 800; }
.catalog-card__actions .catalog-add { min-width: 82px; height: 38px; padding: 0 14px; border: 0; border-radius: 999px; color: #fff; background: #20191b; font-size: 10px; font-weight: 800; cursor: pointer; transition: transform 220ms var(--ease), opacity 220ms ease; }
.catalog-card__actions .catalog-add:hover:not(:disabled) { transform: translateY(-2px); }
.catalog-card__actions button:disabled { opacity: .36; cursor: not-allowed; }
.catalog-card__detail { width: 100%; margin-top: 17px; padding: 13px 0 2px; display: flex; align-items: center; justify-content: space-between; border: 0; border-top: 1px solid #e6dcde; color: #675b5e; background: transparent; font-size: 10px; font-weight: 750; cursor: pointer; transition: color 220ms ease, padding 260ms var(--ease); }
.catalog-card__detail:hover { padding-right: 5px; color: #9d2441; }
.catalog-card.is-detail-selected { box-shadow: 0 0 0 3px #fb775d, 0 28px 70px rgba(0, 0, 0, .28); }
.catalog-card.is-detail-selected .catalog-card__detail { color: #9d2441; }

/* English and Chinese market names, shown under every product title. */
.intl-names { display: flex; flex-direction: column; gap: 2px; margin: 7px 0 0; }
.catalog-card__body > .intl-names { margin-top: 7px; }
.intl-names span { color: #8a7c80; font-size: 10px; line-height: 1.32; letter-spacing: -.005em; }
.intl-names span[lang="en"] { font-weight: 650; font-style: italic; }
.intl-names span[lang="zh-CN"] { font-weight: 600; letter-spacing: .01em; }
.intl-names span:empty { display: none; }
.intl-names--detail { margin: 8px 0 0; }
.intl-names--detail span { color: currentColor; opacity: .62; font-size: 12px; }

.story { --detail-bg-a: var(--bg-a); --detail-bg-b: var(--bg-b); --detail-glow: var(--glow); --detail-ink: var(--ink); --detail-accent: var(--accent); min-height: 105vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; color: var(--detail-ink); background: linear-gradient(145deg, var(--detail-bg-a), var(--detail-bg-b)); transition: color 500ms ease, background 650ms var(--ease); }
.story::before { content: ""; position: absolute; width: min(70vw, 920px); aspect-ratio: 1; right: -15%; top: 5%; border-radius: 50%; background: var(--detail-glow); filter: blur(80px); opacity: .45; pointer-events: none; }
.story > * { position: relative; z-index: 1; }
.story > .section-index { margin-bottom: 38px; }
.story .section-index { color: var(--detail-accent); }
.story-grid { display: grid; grid-template-columns: minmax(0, .84fr) minmax(380px, 1fr); align-items: center; gap: clamp(50px, 8vw, 130px); }
.story-copy h2 { font-size: clamp(46px, 6.2vw, 94px); }
.story-copy > p { max-width: 560px; margin: 30px 0 0; color: color-mix(in srgb, var(--detail-ink) 66%, transparent); font-size: clamp(14px, 1.2vw, 18px); line-height: 1.7; }
.story-copy .nutrition-note { max-width: 620px; margin-top: 24px; font-size: 11px; line-height: 1.6; }
.nutrition-note a { color: var(--detail-ink); font-weight: 750; text-underline-offset: 3px; }

.stat-row { display: flex; flex-wrap: wrap; gap: clamp(22px, 3vw, 46px); margin-top: 42px; }
.stat-row div { display: flex; flex-direction: column; gap: 6px; }
.stat-row strong { font-size: clamp(26px, 2.4vw, 38px); letter-spacing: -.05em; }
.stat-row span { color: color-mix(in srgb, var(--detail-ink) 58%, transparent); font-size: 11px; }
.stat-row .is-unavailable { opacity: .44; }

.story-visual { position: relative; min-height: 580px; display: grid; place-items: center; }
.story-visual img { position: relative; z-index: 2; width: min(100%, 620px); max-height: 520px; object-fit: contain; filter: drop-shadow(0 44px 42px rgba(0, 0, 0, .34)); transition: opacity 350ms ease; }
.story-ring { position: absolute; border: 1px solid color-mix(in srgb, var(--detail-ink) 22%, transparent); border-radius: 50%; }
.story-ring--one { width: 520px; height: 520px; }
.story-ring--two { width: 400px; height: 400px; border-style: dashed; animation: spin 36s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.story-note { position: absolute; right: 0; bottom: 12%; z-index: 3; padding: 12px 15px; border: 1px solid currentColor; font-size: 10px; font-weight: 750; line-height: 1.5; letter-spacing: .1em; text-transform: uppercase; transform: rotate(4deg); }
.story.is-changing .story-visual img { animation: story-product-in 600ms var(--ease); }
@keyframes story-product-in { from { opacity: .15; transform: translateY(18px) scale(.94) rotate(-2deg); } to { opacity: 1; transform: none; } }

.ingredients { min-height: 100vh; display: grid; place-items: center; overflow: hidden; }
.ingredients-heading { position: relative; z-index: 2; text-align: center; }
.ingredients-heading .section-index { margin-bottom: 24px; }
.ingredients-heading h2 { font-size: clamp(44px, 6vw, 90px); }
.ingredients-heading p { color: var(--soft); font-size: 14px; }
.ingredient-orbit { position: absolute; inset: 0; }
.ingredient { position: absolute; width: clamp(112px, 12vw, 180px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent); color: var(--ink); background: radial-gradient(circle at 34% 30%, color-mix(in srgb, white 86%, var(--glow)), color-mix(in srgb, white 16%, transparent)); box-shadow: 0 28px 55px rgba(0, 0, 0, .12); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.ingredient--one { top: 18%; left: 10%; animation: float 10s ease-in-out infinite; }
.ingredient--two { top: 15%; right: 12%; width: clamp(90px, 9vw, 140px); animation: float 12s ease-in-out infinite -3s; }
.ingredient--three { left: 18%; bottom: 14%; width: clamp(82px, 8vw, 118px); color: #fff; background: radial-gradient(circle at 32% 28%, #ff7358, var(--accent)); animation: float 8s ease-in-out infinite -5s; }
.ingredient--four { right: 18%; bottom: 12%; width: clamp(104px, 10vw, 156px); animation: float 13s ease-in-out infinite -6s; }

.flavors { background: color-mix(in srgb, white 15%, transparent); backdrop-filter: blur(12px); }
.flavors-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: clamp(48px, 7vw, 90px); }
.flavors-heading h2 { font-size: clamp(50px, 8vw, 120px); }
.profile-lead { max-width: 330px; margin: 0 0 10px; color: var(--soft); font-size: 13px; line-height: 1.6; }
.profile-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent); background: color-mix(in srgb, var(--ink) 20%, transparent); }
.profile-card { min-height: 220px; padding: clamp(24px, 3vw, 42px); display: flex; flex-direction: column; justify-content: space-between; gap: 30px; background: color-mix(in srgb, var(--bg-b) 88%, white); }
.profile-card > span { color: var(--soft); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.profile-card > strong { max-width: 330px; font-size: clamp(22px, 2.8vw, 42px); line-height: 1.06; letter-spacing: -.05em; }
.profile-card--allergens { min-height: 150px; grid-column: 1 / -1; flex-direction: row; align-items: end; background: color-mix(in srgb, var(--accent) 12%, var(--bg-b)); }
.profile-card--allergens > strong { max-width: 700px; font-size: clamp(20px, 2.4vw, 34px); }
.flavor-lines { border-top: 1px solid color-mix(in srgb, var(--ink) 20%, transparent); }
.flavor-line { width: 100%; min-height: clamp(100px, 11vw, 154px); padding: 0; display: grid; grid-template-columns: 70px 1fr auto 70px; align-items: center; gap: 20px; border: 0; border-bottom: 1px solid color-mix(in srgb, var(--ink) 20%, transparent); text-align: left; background: transparent; cursor: pointer; transition: padding 350ms var(--ease), background-color 350ms ease; }
.flavor-line:hover, .flavor-line.is-active { padding: 0 22px; background: color-mix(in srgb, white 24%, transparent); }
.flavor-line__number, .flavor-line__heat { color: var(--soft); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.flavor-line__name { font-size: clamp(30px, 4.5vw, 68px); font-weight: 800; letter-spacing: -.055em; }
.flavor-line__arrow { font-size: 28px; }

.shop { z-index: 2; color: #201b1c; background: rgba(252, 249, 246, .94); }
.shop .section-index { color: #b3123f; }
.shop-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 58px; }
.shop-heading h2 { margin-top: 13px; font-size: clamp(42px, 5vw, 72px); }
.shop-heading > p { margin: 0; color: #746c6f; font-size: 12px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2vw, 28px); }
.selected-product { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr); min-height: 620px; overflow: hidden; border-radius: 30px; background: #fff; box-shadow: 0 28px 80px rgba(42, 27, 30, .1); }
.selected-product__visual { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, var(--bg-a), var(--bg-b)); }
.selected-product__visual::before { content: ""; position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; background: var(--glow); filter: blur(45px); opacity: .65; }
.selected-product__visual img { position: relative; z-index: 2; width: min(86%, 650px); max-height: 540px; object-fit: contain; filter: drop-shadow(0 34px 36px rgba(0, 0, 0, .28)); transition: opacity 250ms ease, transform 500ms var(--ease); }
.selected-product__number { position: absolute; top: 26px; left: 28px; z-index: 3; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.selected-product__details { padding: clamp(38px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; color: #201b1c; }
.selected-product__details h3 { margin: 16px 0 0; font-size: clamp(46px, 6vw, 84px); line-height: .92; letter-spacing: -.065em; }
.selected-product__details > p { max-width: 500px; margin: 26px 0 0; color: #746c6f; font-size: 15px; line-height: 1.65; }
.selected-product__price { margin: 38px 0 24px; display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.selected-product__price strong { font-size: 42px; letter-spacing: -.055em; }
.selected-product__price span { color: #746c6f; font-size: 12px; }
.selected-product__details .add-button { color: #fff; background: #201b1c; }
.product-tile { position: relative; padding: clamp(18px, 2.2vw, 32px); border-radius: 24px; background: #fff; box-shadow: 0 3px 12px rgba(42, 27, 30, .05); transition: transform 430ms var(--ease), box-shadow 430ms var(--ease); }
.product-tile:hover { transform: translateY(-9px); box-shadow: 0 28px 60px rgba(42, 27, 30, .13); }
.product-tile__visual { position: relative; width: 100%; height: clamp(230px, 26vw, 400px); display: grid; place-items: center; border: 0; border-radius: 17px; background: #f8f3f2; cursor: pointer; overflow: hidden; }
.product-tile__visual::before { content: ""; position: absolute; inset: 22%; border-radius: 50%; background: #f2d1da; filter: blur(18px); }
.product-tile:nth-child(2) .product-tile__visual { background: #201716; }
.product-tile:nth-child(2) .product-tile__visual::before { background: #b72e12; }
.product-tile:nth-child(3) .product-tile__visual { background: #f4d074; }
.product-tile:nth-child(3) .product-tile__visual::before { background: #ffe6a3; }
.product-tile__visual img { position: relative; width: 88%; height: 88%; object-fit: contain; filter: drop-shadow(0 24px 24px rgba(0, 0, 0, .24)); transition: transform 500ms var(--ease); }
.product-tile:hover img { transform: scale(1.05) rotate(-1deg); }
.product-tile__number { position: absolute; top: 15px; left: 16px; z-index: 2; color: #4a3f42; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.product-tile:nth-child(2) .product-tile__number { color: #fff; }
.product-tile__details { display: flex; justify-content: space-between; align-items: start; gap: 16px; margin-top: 22px; }
.product-tile__details h3 { margin: 0; font-size: clamp(18px, 1.7vw, 25px); letter-spacing: -.04em; }
.product-tile__details p { margin: 7px 0 0; color: #786e71; font-size: 12px; }
.product-tile__details > strong { font-size: 17px; }
.tile-add { width: 100%; margin-top: 20px; padding: 13px 0; display: flex; justify-content: space-between; border: 0; border-top: 1px solid #e6dfe1; background: transparent; font-size: 12px; font-weight: 750; cursor: pointer; }

.ritual { min-height: 100vh; display: grid; grid-template-columns: minmax(300px, .8fr) minmax(500px, 1.2fr); gap: clamp(50px, 9vw, 150px); align-items: center; color: #f7efed; background: #191415; }
.ritual .section-index { color: #fb775d; }
.ritual-copy h2 { margin-top: 24px; font-size: clamp(48px, 6vw, 92px); }
.ritual-copy > p { max-width: 490px; margin: 28px 0 0; color: #a99da0; font-size: 15px; line-height: 1.7; }
.ritual-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .15); }
.ritual-steps li { min-height: 116px; display: grid; grid-template-columns: 52px 130px 1fr; align-items: center; gap: 24px; border-bottom: 1px solid rgba(255, 255, 255, .15); }
.ritual-steps span { color: #fb775d; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.ritual-steps strong { font-size: 24px; letter-spacing: -.035em; }
.ritual-steps p { margin: 0; color: #a99da0; font-size: 13px; line-height: 1.5; }

.prepared { color: #201b1c; background: #f8f2ee; }
.prepared-heading { margin-bottom: clamp(44px, 7vw, 86px); }
.prepared-heading .section-index { margin-bottom: 22px; color: #b3123f; }
.prepared-heading h2 { font-size: clamp(54px, 7.5vw, 112px); }
.prepared-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: clamp(28px, 5vw, 76px); align-items: stretch; }
.prepared-photo { margin: 0; min-width: 0; }
.prepared-photo img { width: 100%; height: clamp(480px, 58vw, 820px); display: block; border-radius: 28px; object-fit: cover; box-shadow: 0 28px 70px rgba(47, 29, 32, .16); transition: opacity 250ms ease; }
.pairings { padding: clamp(28px, 4vw, 52px); border-radius: 28px; background: #201b1c; color: #f8f2ee; }
.pairings .section-index { color: #fb775d; }
.pairing-list { margin-top: 42px; border-top: 1px solid rgba(255, 255, 255, .15); }
.pairing-list article { min-height: 150px; padding: 24px 0; display: grid; grid-template-columns: 34px 1fr; gap: 18px; align-items: start; border-bottom: 1px solid rgba(255, 255, 255, .15); }
.pairing-list article > span { padding-top: 5px; color: #fb775d; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.pairing-list h3 { margin: 0; font-size: clamp(24px, 2.5vw, 38px); letter-spacing: -.045em; }
.pairing-list p { margin: 10px 0 0; color: #b8adaf; font-size: 13px; line-height: 1.6; }

/* --- Wholesale (case) pricing --- */
.unit-price { display: block; margin-top: 5px; color: var(--soft); font-size: 11px; font-weight: 650; letter-spacing: 0; }
.catalog-card__price .unit-price { color: #8a7d80; font-size: 10px; font-weight: 600; }
.pack-line { font-variant-numeric: tabular-nums; }
.promo-tag {
  align-self: flex-start;
  margin: 12px 0 0;
  padding: 6px 11px;
  border-radius: 999px;
  color: #8c1030;
  background: rgba(179, 18, 63, .1);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.promo-tag[hidden] { display: none; }
.promo-tag--card { display: inline-block; margin: 10px 0 0; padding: 5px 9px; font-size: 9px; }

[data-refrescos-view] { padding-top: var(--header-h); background: #f8f2ee; }
[data-refrescos-view][hidden] { display: none; }
.refrescos-view-bar { padding: 20px clamp(22px, 5vw, 80px) 0; }
.refrescos-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px 10px 14px;
  border: 0;
  border-radius: 999px;
  color: #514649;
  background: rgba(32, 25, 27, .06);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms var(--ease);
}
.refrescos-back:hover { background: rgba(32, 25, 27, .1); transform: translateX(-3px); }
.nav-refrescos.is-active { color: #b3123f; }

.refrescos {
  overflow: clip;
  padding-top: clamp(48px, 5vw, 76px);
  padding-bottom: clamp(90px, 8vw, 130px);
  color: #201b1c;
  background: #f8f2ee;
}
.refrescos .section-index { color: #b3123f; }
.refrescos-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 360px); gap: 44px; align-items: end; margin-bottom: clamp(32px, 3vw, 44px); }
.refrescos-heading h2 { margin-top: 20px; font-size: clamp(42px, 6vw, 80px); line-height: .96; letter-spacing: -.06em; }
.refrescos-heading h2 span { color: #b3123f; }
.refrescos-heading > p { margin: 0 0 8px; color: #746c6f; font-size: 13px; line-height: 1.65; }

.refrescos-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr); gap: clamp(28px, 4vw, 64px); align-items: center; }

.refrescos-info { display: flex; flex-direction: column; gap: 4px; }
.refrescos-info .eyebrow { color: #b3123f; }
.refrescos-info h3 { margin: 14px 0 0; min-height: 1.1em; font-size: clamp(32px, 4vw, 54px); line-height: .98; letter-spacing: -.055em; transition: opacity 220ms ease; }
.refrescos-info p[data-refresco-description] { max-width: 420px; min-height: 3.2em; margin: 16px 0 0; color: #746c6f; font-size: 14px; line-height: 1.6; transition: opacity 220ms ease; }
.refrescos-info .specs { margin-top: 26px; }
.refrescos-info .stepper { background: rgba(32, 25, 27, .06); }
.refrescos-info .stepper button:hover { background: rgba(32, 25, 27, .12); }
.refrescos-info .price-row { margin-top: 30px; }
.refrescos-info .add-button { margin-top: 4px; color: #fff; background: #20191b; }
.refrescos-info .microcopy { color: #928689; }
.refrescos-info.is-changing h3,
.refrescos-info.is-changing p[data-refresco-description] { animation: refresco-fade-in 420ms var(--ease); }
@keyframes refresco-fade-in { from { opacity: .2; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.refrescos-carousel-shell {
  position: relative;
  min-width: 0;
  height: clamp(430px, min(38vw, 52vh), 560px);
  perspective: 1500px;
  perspective-origin: 50% 45%;
  isolation: isolate;
  touch-action: pan-y;
  cursor: grab;
}
.refrescos-carousel-shell.is-dragging { cursor: grabbing; }
.refrescos-carousel-shell .carousel-glow {
  position: absolute;
  inset: 1% -4% 3%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .98) 0, rgba(255, 225, 210, .82) 42%, rgba(249, 221, 213, .28) 62%, transparent 75%);
  filter: blur(3px);
}
.refrescos-carousel-shell .carousel-glow::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  height: 9%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(32, 25, 27, .2), transparent 70%);
  filter: blur(8px);
}
.refrescos-carousel-shell .carousel-stage { position: absolute; inset: 0; transform-style: preserve-3d; }
.refrescos-carousel-shell .product-pack {
  position: absolute;
  top: 46%;
  left: 50%;
  width: clamp(340px, 31vw, 510px);
  height: clamp(340px, 31vw, 510px);
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: inherit;
  transform-style: preserve-3d;
  translate: -50% -50%;
  will-change: transform, opacity, filter;
  transform-origin: 50% 50%;
  transition: opacity 220ms ease, filter 220ms ease;
}
.refrescos-carousel-shell .product-pack:focus-visible {
  outline: 2px solid #b3123f;
  outline-offset: -8px;
  border-radius: 36px;
}
.refrescos-carousel-shell .product-pack img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 28px 24px rgba(26, 18, 21, .2));
  transition: filter 260ms ease, transform 260ms var(--ease);
}
.refrescos-carousel-shell .product-pack.is-active img {
  filter: drop-shadow(0 36px 30px rgba(26, 18, 21, .28));
}
.refrescos-carousel-shell .drag-hint {
  position: absolute;
  bottom: 1%;
  left: 50%;
  margin: 0;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #928689;
  background: rgba(32, 25, 27, .06);
  transform: translateX(-50%);
}

.refrescos-controls { position: relative; z-index: 1; left: auto; bottom: auto; justify-content: center; max-width: none; margin-top: clamp(22px, 3vw, 38px); transform: none; }
.refrescos-controls .circle-button { background: rgba(32, 25, 27, .06); }
.refrescos-controls .circle-button:hover { background: rgba(32, 25, 27, .12); }
.refrescos-controls .flavor-tabs {
  max-width: min(72vw, 920px);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.refrescos-controls .flavor-tabs::-webkit-scrollbar { display: none; }
.refrescos-controls .flavor-tab { color: #746c6f; }
.refrescos-controls .flavor-tab.is-active { color: #fff; background: #20191b; box-shadow: 0 7px 20px rgba(32, 25, 27, .18); }

.refrescos-catalog { color: #201b1c; background: #f3ece6; }
.refrescos-catalog .section-index { color: #b3123f; }
.refrescos-catalog-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 360px); gap: 44px; align-items: end; }
.refrescos-catalog-heading h2 { margin-top: 20px; font-size: clamp(48px, 7vw, 90px); }
.refrescos-catalog-heading h2 span { color: #b3123f; }
.refrescos-catalog-heading > p { margin: 0 0 8px; color: #766c6f; font-size: 14px; line-height: 1.65; }
.refrescos-filters { margin-top: 54px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.refrescos-filters::-webkit-scrollbar { display: none; }
.refrescos-filter { min-height: 42px; padding: 0 18px; flex: 0 0 auto; border: 1px solid rgba(32, 25, 27, .16); border-radius: 999px; color: #514649; background: transparent; font-size: 11px; font-weight: 750; cursor: pointer; transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease; }
.refrescos-filter:hover, .refrescos-filter.is-active { border-color: #20191b; color: #fff; background: #20191b; }
.refrescos-catalog .catalog-grid { margin-top: 30px; }
/* The catalog photographs sit on white, so a near-white tile hides the JPEG
   fringe around each cut-out; depth comes from the ground shadow instead. */
.refrescos-catalog .catalog-card__visual { background: linear-gradient(158deg, #ffffff 0%, #fbfaf9 52%, #f2eeeb 100%); }
.refrescos-catalog .catalog-card__visual::after { inset: auto 18% 6%; height: 14%; background: rgba(55, 44, 48, .22); filter: blur(14px); }
.refrescos-catalog .catalog-card__visual img { filter: drop-shadow(0 14px 14px rgba(30, 22, 26, .16)); }
.refrescos-catalog .catalog-card__footer strong { color: #766c6f; font-weight: 600; }

.site-footer { position: relative; z-index: 3; min-height: 380px; padding: clamp(58px, 7vw, 100px) clamp(22px, 5vw, 80px) 34px; display: grid; grid-template-columns: 1fr auto; gap: 80px; color: #f7efed; background: #141112; }
.brand--footer { color: #fff; font-size: 28px; }
.site-footer > div:first-child > p { max-width: 300px; color: #8d8184; font-size: 13px; line-height: 1.6; }
.footer-links { display: flex; gap: clamp(50px, 8vw, 110px); }
.footer-links > div { min-width: 110px; display: flex; flex-direction: column; gap: 13px; }
.footer-links span { margin-bottom: 4px; color: #776b6e; font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a, .footer-links button { padding: 0; border: 0; color: #eee7e5; background: transparent; text-align: left; font-size: 13px; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: #fb775d; }
.disclaimer { grid-column: 1 / -1; align-self: end; margin: 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); color: #665b5e; font-size: 10px; }

dialog { color: inherit; }
dialog::backdrop { background: rgba(20, 17, 18, .28); backdrop-filter: blur(8px); }
.search-dialog { width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: clamp(22px, 4vw, 58px); border: 0; color: #20191b; background: rgba(250, 247, 245, .9); backdrop-filter: blur(28px); opacity: 0; transform: scale(1.03); transition: opacity 350ms var(--ease), transform 350ms var(--ease), display 350ms allow-discrete, overlay 350ms allow-discrete; }
.search-dialog[open] { opacity: 1; transform: scale(1); }
@starting-style { .search-dialog[open] { opacity: 0; transform: scale(1.03); } }
.dialog-head, .cart-head { display: flex; align-items: center; justify-content: space-between; }
.dialog-close, .checkout-close { padding: 9px 13px; border: 0; border-radius: 999px; background: rgba(0, 0, 0, .06); font-size: 12px; font-weight: 700; cursor: pointer; }
.dialog-close span { margin-left: 7px; font-size: 16px; }
.search-content { max-width: 1020px; margin: clamp(60px, 10vh, 120px) auto 0; }
.search-content h2 { margin: 0; font-size: clamp(38px, 6vw, 76px); letter-spacing: -.06em; }
.search-content input { width: 100%; margin-top: 30px; padding: 0 0 18px; border: 0; border-bottom: 1px solid rgba(32, 25, 27, .22); outline: 0; color: #20191b; background: transparent; font-size: clamp(20px, 3vw, 38px); font-weight: 650; letter-spacing: -.035em; }
.search-suggestions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.search-suggestions span { margin-right: 4px; color: #897f81; font-size: 11px; }
.search-suggestions button { padding: 8px 13px; border: 0; border-radius: 99px; color: #3f3638; background: rgba(0, 0, 0, .05); font-size: 11px; cursor: pointer; }
.search-results { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.search-result { min-width: 0; padding: 18px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: 180px auto; gap: 18px; border: 0; border-radius: 18px; color: #20191b; text-align: left; background: rgba(255, 255, 255, .5); cursor: pointer; transition: transform 300ms var(--ease), opacity 250ms ease, background-color 250ms ease; }
.search-result:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .86); }
.search-result[hidden] { display: none; }
.search-result img { grid-column: 1 / -1; width: 100%; height: 180px; object-fit: contain; filter: drop-shadow(0 14px 16px rgba(0, 0, 0, .18)); }
.search-result > span { display: flex; flex-direction: column; gap: 5px; }
.search-result strong { font-size: 17px; }
.search-result small { color: #786e71; font-size: 11px; }
.no-results { margin-top: 38px; color: #786e71; }

.cart-scrim { position: fixed; inset: 0; z-index: 80; background: rgba(20, 17, 18, .38); opacity: 0; visibility: hidden; transition: opacity 380ms var(--ease), visibility 380ms; }
.cart-scrim.is-open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; inset: 0 0 0 auto; z-index: 90; width: min(440px, 94vw); display: flex; flex-direction: column; color: #20191b; background: #fbf8f6; box-shadow: -24px 0 70px rgba(0, 0, 0, .18); transform: translateX(102%); transition: transform 500ms var(--ease); }
.cart-drawer.is-open { transform: translateX(0); }
.cart-head { padding: 26px 28px; border-bottom: 1px solid #ebe3e4; }
.cart-head__title { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.cart-head h2 { margin: 0; font-size: 18px; letter-spacing: -.03em; }
.cart-head h2 span { margin-left: 6px; color: #8b8083; font-size: 12px; }
.clear-cart { padding: 0; border: 0; color: #a01436; background: transparent; font-size: 10px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.clear-cart[hidden] { display: none; }
.cart-body { flex: 1; padding: 12px 28px; overflow-y: auto; }
.cart-item { position: relative; padding: 18px 0; display: grid; grid-template-columns: 96px 1fr; gap: 16px; border-bottom: 1px solid #ebe3e4; }
.cart-item__image { width: 96px; height: 92px; display: grid; place-items: center; border-radius: 13px; background: #f0e9e8; }
.cart-item__image img { width: 90%; height: 86%; object-fit: contain; filter: drop-shadow(0 10px 10px rgba(0, 0, 0, .16)); }
.cart-item__details { min-width: 0; display: flex; flex-direction: column; }
.cart-item__top { display: flex; justify-content: space-between; gap: 12px; }
.cart-item__top h3 { margin: 0; font-size: 14px; letter-spacing: -.02em; }
.cart-item__top strong { font-size: 13px; }
.cart-item__details > p { margin: 5px 0 0; color: #84797c; font-size: 10px; }
.cart-item__actions { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.cart-item.is-updated { animation: cart-item-update 560ms cubic-bezier(.2, .8, .2, 1); }
@keyframes cart-item-update {
  0% { opacity: .45; transform: translateX(14px); background: rgba(179, 18, 63, .08); }
  100% { opacity: 1; transform: translateX(0); background: transparent; }
}
.mini-stepper { display: flex; align-items: center; border: 1px solid #ddd2d4; border-radius: 999px; }
.mini-stepper button { width: 28px; height: 27px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.mini-stepper span { min-width: 24px; text-align: center; font-size: 11px; font-weight: 700; }
.remove-item { border: 0; color: #8c8083; background: transparent; font-size: 10px; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.cart-empty { flex: 1; display: none; place-items: center; align-content: center; padding: 40px; text-align: center; }
.cart-empty.is-visible { display: grid; }
.cart-empty__ring { width: 90px; height: 90px; margin-bottom: 23px; border: 1px dashed #c5babc; border-radius: 50%; animation: spin 22s linear infinite; }
.cart-empty strong { font-size: 18px; }
.cart-empty p { margin: 8px 0 20px; color: #84797c; font-size: 12px; }
.cart-empty button { padding: 10px 15px; border: 0; border-radius: 99px; background: #eee6e6; font-size: 11px; font-weight: 700; cursor: pointer; }
.cart-footer { padding: 23px 28px 28px; border-top: 1px solid #e6dddf; }
.cart-footer > div { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.cart-footer > div strong { font-size: 18px; }
.cart-footer > p { margin: 7px 0 18px; color: #84797c; font-size: 10px; }
.cart-footer .checkout-button { min-height: 56px; color: #fff; background: #20191b; }

.checkout-dialog { width: min(520px, calc(100vw - 32px)); padding: clamp(28px, 5vw, 50px); border: 0; border-radius: 24px; color: #20191b; background: #fbf8f6; box-shadow: 0 40px 120px rgba(0, 0, 0, .3); }
.checkout-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; padding: 0; }
.checkout-dialog h2 { margin: 14px 0 0; font-size: clamp(38px, 7vw, 60px); line-height: .95; letter-spacing: -.06em; }
.checkout-dialog p { color: #776d70; font-size: 12px; line-height: 1.55; }
.checkout-dialog form { margin-top: 28px; display: grid; gap: 16px; }
.checkout-dialog label { display: grid; gap: 7px; color: #645a5d; font-size: 11px; font-weight: 700; }
.checkout-dialog input { width: 100%; height: 48px; padding: 0 14px; border: 1px solid #d9ced0; border-radius: 10px; color: #20191b; background: #fff; }
.checkout-dialog .checkout-button { margin-top: 8px; color: #fff; background: #20191b; }
.form-error { min-height: 18px; margin: 0 !important; color: #a20f32 !important; }
.checkout-success { text-align: center; }
.success-mark { width: 70px; height: 70px; margin: 0 auto 26px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #198754; font-size: 30px; }
.checkout-success .section-index { display: block; }
.checkout-success .checkout-button { margin-top: 26px; }
.checkout-whatsapp { color: #fff !important; background: #168b4b !important; text-decoration: none; }
.checkout-whatsapp[hidden] { display: none; }
.checkout-secondary { margin-top: 15px; padding: 8px 14px; border: 0; color: #746a6d; background: transparent; font-size: 11px; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }

.legal-dialog { width: min(820px, calc(100vw - 32px)); max-height: min(860px, 90dvh); padding: clamp(30px, 5vw, 58px); border: 0; border-radius: 26px; color: #20191b; background: #fbf8f6; box-shadow: 0 40px 120px rgba(0, 0, 0, .3); overflow-y: auto; }
.legal-dialog h2 { max-width: 680px; margin: 15px 0 0; font-size: clamp(42px, 7vw, 78px); line-height: .94; letter-spacing: -.06em; }
.legal-updated { margin: 16px 0 0; color: #8c8083; font-size: 11px; }
.legal-sections { margin-top: 34px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 34px; border-top: 1px solid #ded4d6; }
.legal-sections section { padding: 22px 0; border-bottom: 1px solid #ded4d6; }
.legal-sections h3 { margin: 0; font-size: 15px; letter-spacing: -.02em; }
.legal-sections p, .legal-acceptance { margin: 9px 0 0; color: #706669; font-size: 12px; line-height: 1.65; }
.legal-acceptance { padding: 20px 22px; border-radius: 14px; color: #4b4144; background: #efe7e7; font-weight: 650; }

.cart-flyer { position: fixed; z-index: 180; width: 62px; height: 62px; padding: 6px; border-radius: 16px; object-fit: contain; pointer-events: none; background: rgba(255, 255, 255, .94); box-shadow: 0 18px 36px rgba(20, 17, 18, .26); }

.toast { position: fixed; right: 25px; bottom: 25px; z-index: 120; max-width: min(360px, calc(100vw - 50px)); padding: 14px 18px 14px 44px; border-radius: 12px; color: #fff; background: #171314; box-shadow: 0 18px 44px rgba(0, 0, 0, .28); font-size: 12px; font-weight: 650; opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity 300ms var(--ease), transform 300ms var(--ease); }
.toast::before { content: "✓"; position: absolute; left: 15px; top: 50%; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: #171314; background: #fff; transform: translateY(-50%); font-size: 11px; }
.toast.is-visible { opacity: 1; transform: translateY(0); }
.noscript { position: fixed; inset: auto 12px 12px; z-index: 300; padding: 12px; color: #fff; background: #a20f32; text-align: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

html[lang="zh-CN"] body { font-family: "Archivo", "Microsoft YaHei", "PingFang SC", sans-serif; }
html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3 { letter-spacing: -.035em; }

@media (max-width: 1100px) {
  .hero-copy { width: 31vw; }
  .carousel-shell { right: 18%; left: 36%; }
  .purchase-card { width: 26vw; }
  .story-grid { grid-template-columns: .9fr 1.1fr; gap: 40px; }
  .story-visual { min-height: 500px; }
  .story-ring--one { width: 420px; height: 420px; }
  .story-ring--two { width: 330px; height: 330px; }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .refrescos-layout { grid-template-columns: minmax(270px, .7fr) minmax(450px, 1.3fr); gap: 28px; }
  .refrescos-carousel-shell { height: clamp(420px, min(48vw, 56vh), 520px); }
  .refrescos-carousel-shell .product-pack { width: clamp(320px, 38vw, 440px); height: clamp(320px, 38vw, 440px); }
}

@media (max-width: 820px) {
  :root { --header-h: 66px; }
  .site-header { padding: 0 18px; }
  .site-header.menu-open { color: #20191b !important; background: transparent !important; backdrop-filter: none !important; border-bottom-color: transparent !important; box-shadow: none !important; }
  .site-header.menu-open .brand,
  .site-header.menu-open .nav-toggle,
  .site-header.menu-open .header-actions { position: relative; z-index: 3; }
  .site-header.menu-open .cart-button { color: #fff; background: #20191b; }
  .site-header.menu-open .language-picker select { color: #20191b; background: rgba(255, 255, 255, .66); border-color: rgba(32, 27, 28, .18); }
  .nav-toggle { position: relative; z-index: 3; width: 38px; height: 38px; margin-left: auto; padding: 10px; display: grid; align-content: center; gap: 4px; border: 0; border-radius: 50%; background: color-mix(in srgb, white 50%, transparent); cursor: pointer; }
  .nav-toggle span:not(.sr-only) { display: block; width: 18px; height: 1.5px; background: currentColor; transition: transform 250ms var(--ease), opacity 200ms ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; z-index: 2; min-height: 100dvh; padding: 110px 28px 35px; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; color: #20191b; background: rgba(250, 247, 245, .98); backdrop-filter: blur(24px); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: opacity 250ms ease, transform 300ms var(--ease), visibility 250ms; }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { font-size: clamp(32px, 9vw, 56px); font-weight: 800; letter-spacing: -.055em; }
  .header-actions { margin-left: 0; }
  .header-search { display: none; }
  .hero { min-height: 960px; }
  .hero-copy { top: 105px; left: 20px; width: calc(100% - 40px); }
  .hero::before { display: none; }
  .hero-copy__content { min-height: 140px; }
  .hero h1 { font-size: clamp(44px, 13vw, 68px); }
  .hero-copy__content > p { max-width: 420px; margin-top: 12px; }
  .specs { margin-top: 14px; }
  .spec--heat,
  .spec--sweetness { width: min(42vw, 170px); }
  .carousel-shell { inset: 340px 0 290px; }
  .product-pack { top: 50%; width: min(88vw, 520px); height: min(80vw, 470px); margin: 0; }
  .drag-hint { bottom: -2%; }
  .purchase-card { right: 20px; bottom: 100px; left: 20px; width: auto; }
  .flavor-controls { bottom: 35px; }
  .scroll-cue { display: none; }
  .catalog-heading { grid-template-columns: 1fr; }
  .catalog-heading > p { max-width: 520px; }
  .catalog-departments { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .department-card--drinks { grid-column: 1 / -1; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-card__visual { height: min(44vw, 300px); }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { min-height: 460px; order: -1; }
  .story-visual img { max-height: 400px; }
  .story-ring--one { width: min(90vw, 420px); height: min(90vw, 420px); }
  .story-ring--two { width: min(70vw, 330px); height: min(70vw, 330px); }
  .story-note { right: 4%; }
  .ingredients { min-height: 800px; }
  .flavors-heading { display: block; }
  .flavors-heading .section-index { margin-bottom: 20px; }
  .profile-lead { margin-top: 22px; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-card { min-height: 160px; }
  .profile-card--allergens { grid-column: 1; flex-direction: column; align-items: flex-start; }
  .flavor-line { grid-template-columns: 42px 1fr auto; }
  .flavor-line__heat { display: none; }
  .flavor-line__arrow { font-size: 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-tile__visual { height: min(85vw, 430px); }
  .selected-product { grid-template-columns: 1fr; }
  .selected-product__visual { min-height: 500px; }
  .selected-product__details { min-height: 480px; }
  .ritual { grid-template-columns: 1fr; gap: 70px; }
  .ritual-steps li { grid-template-columns: 42px 100px 1fr; }
  .prepared-grid { grid-template-columns: 1fr; }
  .prepared-photo img { height: min(100vw, 680px); }
  .refrescos-heading { grid-template-columns: 1fr; }
  .refrescos-heading > p { max-width: 520px; }
  .refrescos { padding-top: 56px; padding-bottom: 90px; }
  .refrescos-layout { grid-template-columns: 1fr; gap: 38px; }
  .refrescos-carousel-shell { order: -1; width: calc(100% + 40px); height: clamp(380px, 76vw, 520px); margin-inline: -20px; }
  .refrescos-carousel-shell .product-pack { width: min(64vw, 390px); height: min(64vw, 390px); }
  .refrescos-controls .flavor-tabs { max-width: calc(100vw - 136px); }
  .refrescos-info { text-align: left; }
  .refrescos-info p[data-refresco-description] { max-width: 520px; }
  .refrescos-catalog-heading { grid-template-columns: 1fr; }
  .refrescos-catalog-heading > p { max-width: 520px; }
  .site-footer { grid-template-columns: 1fr; gap: 55px; }
  .disclaimer { grid-column: 1; }
  .legal-sections { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .site-header { gap: 8px; }
  .brand { font-size: 18px; }
  .header-actions { gap: 6px; }
  .pill { min-height: 37px; padding: 0 12px; }
  .language-picker select { min-height: 37px; padding-right: 24px; padding-left: 11px; }
  .language-picker::after { right: 9px; }
  .hero { min-height: 920px; }
  .carousel-shell { inset: 345px 0 300px; }
  .flavor-tabs { max-width: calc(100vw - 100px); overflow-x: auto; scrollbar-width: none; }
  .flavor-tabs::-webkit-scrollbar { display: none; }
  .flavor-tab { padding: 0 10px; }
  .circle-button { flex: 0 0 38px; width: 38px; height: 38px; }
  .price-row { margin-bottom: 14px; }
  .add-button { min-height: 52px; }
  .section-pad { padding: 82px 12px; }
  .catalog-departments { grid-template-columns: 1fr; margin-top: 38px; }
  .department-card, .department-card--drinks { min-height: 145px; grid-column: auto; }
  .catalog-heading h2,
  .refrescos-catalog-heading h2 { font-size: clamp(42px, 14vw, 64px); }
  .catalog-filters,
  .refrescos-filters { position: sticky; z-index: 10; top: var(--header-h); margin: 32px -12px 0; padding: 10px 12px; background: #171314; box-shadow: 0 10px 20px rgba(0, 0, 0, .16); }
  .refrescos-filters { background: #f3ece6; }
  .catalog-filter,
  .refrescos-filter { min-height: 38px; padding-inline: 14px; font-size: 10px; }
  .catalog-grid,
  .refrescos-catalog .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
  .catalog-card { border-radius: 16px; box-shadow: 0 8px 22px rgba(0, 0, 0, .16); }
  .catalog-card.reveal { opacity: 1; transform: none; transition: none; }
  .catalog-card__visual { height: clamp(132px, 43vw, 205px); }
  .catalog-card__visual::after { inset: auto 15% 5%; filter: blur(10px); }
  .catalog-card__visual > span { top: 8px; left: 8px; max-width: 56%; padding: 4px 6px; font-size: 6px; letter-spacing: .08em; text-overflow: ellipsis; white-space: nowrap; }
  .catalog-card__visual > .catalog-card__brand { right: 8px; left: auto; max-width: 40%; }
  .catalog-card__visual img { width: 96%; height: 92%; filter: drop-shadow(0 8px 9px rgba(0, 0, 0, .18)); }
  .catalog-card__body { padding: 12px 10px 10px; }
  .catalog-card__sku { font-size: 7px; letter-spacing: .1em; }
  .catalog-card h3 { min-height: 2.15em; margin-top: 7px; display: -webkit-box; overflow: hidden; font-size: clamp(15px, 4.7vw, 20px); line-height: 1.07; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .catalog-card__body > .intl-names { display: none; }
  .catalog-card__body > .pack-line { min-height: 2.5em; margin-top: 8px; display: -webkit-box; overflow: hidden; font-size: 8px; line-height: 1.25; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .catalog-card__heat,
  .catalog-card__sweetness { margin-top: 8px; grid-template-columns: 40px 1fr; gap: 5px; }
  .catalog-card__heat small,
  .catalog-card__sweetness small { overflow: hidden; font-size: 7px; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
  .catalog-card__calories { margin-top: 8px !important; display: grid; gap: 2px; }
  .catalog-card__calories strong { font-size: 10px; }
  .catalog-card__calories small { font-size: 7px; }
  .catalog-card__footer { min-height: 0; margin-top: 9px; padding-top: 8px; }
  .catalog-card__footer strong,
  .catalog-card__footer a { font-size: 8px; }
  .refrescos-catalog .catalog-card__footer { display: none; }
  .catalog-card__actions { margin-top: auto; padding-top: 11px; flex-direction: column; align-items: stretch; gap: 8px; }
  .catalog-card__actions .catalog-card__price { font-size: 16px; }
  .catalog-card__actions .unit-price { display: block; margin-top: 2px; font-size: 7px; line-height: 1.2; }
  .catalog-card__buy { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 5px; }
  .catalog-stepper { min-width: 0; height: 36px; justify-content: space-between; }
  .catalog-stepper button { width: 25px; height: 34px; }
  .catalog-stepper output { min-width: 12px; }
  .catalog-card__actions .catalog-add { min-width: 0; width: 100%; height: 36px; padding: 0 5px; font-size: 9px; }
  .catalog-card__detail { margin-top: 10px; padding-top: 10px; font-size: 8px; }
  .stat-row { justify-content: space-between; gap: 12px; }
  .stat-row { flex-wrap: wrap; }
  .stat-row > div { min-width: 42%; }
  .ingredient--one { left: 3%; }
  .ingredient--two { right: 2%; }
  .ingredient--three { left: 8%; }
  .ingredient--four { right: 6%; }
  .flavor-line { grid-template-columns: 34px 1fr 24px; gap: 10px; }
  .flavor-line:hover, .flavor-line.is-active { padding: 0 8px; }
  .shop-heading { display: block; }
  .shop-heading > p { margin-top: 14px; }
  .selected-product { border-radius: 20px; }
  .selected-product__visual { min-height: 390px; }
  .selected-product__details { min-height: 430px; padding: 34px 24px; }
  .selected-product__details h3 { font-size: 48px; }
  .prepared-photo img { height: min(112vw, 560px); border-radius: 20px; }
  .pairings { padding: 28px 22px; border-radius: 20px; }
  .refrescos-heading { margin-bottom: 34px; }
  .refrescos { padding-top: 48px; }
  .refrescos-carousel-shell { width: calc(100% + 40px); min-height: 350px; height: min(100vw, 420px); }
  .refrescos-carousel-shell .product-pack { width: min(78vw, 350px); height: min(78vw, 350px); }
  .refrescos-carousel-shell .drag-hint { bottom: 0; }
  .refrescos-controls { gap: 4px; margin-top: 22px; }
  .refrescos-controls .flavor-tabs { max-width: calc(100vw - 112px); }
  .ritual-steps li { min-height: 130px; grid-template-columns: 32px 1fr; gap: 10px; }
  .ritual-steps p { grid-column: 2; margin-top: -30px; }
  .footer-links { justify-content: space-between; gap: 30px; }
  .search-content { margin-top: 55px; }
  .search-results { grid-template-columns: 1fr; max-height: 52vh; overflow-y: auto; }
  .search-result { grid-template-columns: 90px 1fr auto; grid-template-rows: auto; align-items: center; }
  .search-result img { grid-column: auto; width: 90px; height: 80px; }
  .legal-dialog { padding: 30px 22px; border-radius: 20px; }
  .legal-dialog h2 { padding-right: 34px; }
  .toast { right: 15px; bottom: 15px; max-width: calc(100vw - 30px); }
}

@media (max-width: 380px) {
  .cart-button > [data-i18n="header.cart"] { display: none; }
  .cart-button { min-width: 43px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Phones receive a deliberately lighter rendering path. */
.is-mobile-device .ambient__noise,
.is-mobile-device .orb,
.is-mobile-device .story-ring--two { display: none; }
.is-mobile-device .ambient__glow { opacity: .5; filter: none; }
.is-mobile-device .carousel-glow { filter: none; opacity: .72; }
.is-mobile-device .site-header.is-scrolled,
.is-mobile-device .primary-nav,
.is-mobile-device dialog::backdrop,
.is-mobile-device .search-dialog,
.is-mobile-device .flavors { backdrop-filter: none; }
.is-mobile-device .catalog-card,
.is-mobile-device .refrescos-catalog .catalog-card { content-visibility: auto; contain: layout paint style; contain-intrinsic-size: 280px 520px; }
.is-mobile-device .catalog-card__visual > span { backdrop-filter: none; background: rgba(255, 255, 255, .94); }
.is-mobile-device .product-pack,
.is-mobile-device .refrescos-carousel-shell .product-pack { will-change: auto; transition: none; }
.is-mobile-device .product-pack img,
.is-mobile-device .story-visual img,
.is-mobile-device .catalog-card__visual img,
.is-mobile-device .refrescos-carousel-shell .product-pack img { filter: drop-shadow(0 12px 12px rgba(0, 0, 0, .18)); }
.is-mobile-device .catalog-card:hover,
.is-mobile-device .catalog-card:hover .catalog-card__visual img { transform: none; box-shadow: none; }
.is-mobile-device .reveal { transition-duration: 320ms; }
