:root {
  --yellow: #f4e900;
  --yellow-bright: #fff600;
  --yellow-soft: #fff95a;
  --ink: #0b0c0e;
  --charcoal: #15171a;
  --charcoal-2: #1d1f23;
  --paper: #f4f3ed;
  --white: #fff;
  --surface: #fff;
  --muted: #6d7077;
  --line: #dcdcd5;
  --dark-line: #303238;
  --danger: #a02d2d;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(8, 9, 11, .18);
  --content: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
body.age-pending { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
[hidden] { display: none !important; }

.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;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 10px;
  font-weight: 900;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 76px;
  padding: 10px max(20px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: var(--white);
  background: rgba(11, 12, 14, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}
.brand {
  position: relative;
  width: 132px;
  height: 48px;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--yellow);
  border-radius: 12px;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.22);
}
.header-city { display: flex; flex-direction: column; gap: 2px; }
.header-city span { color: #8f9299; font-size: 11px; font-weight: 700; }
.header-city strong { font-size: 14px; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(20px, 3vw, 36px); }
.desktop-nav a { position: relative; color: #c5c7cc; font-size: 13px; font-weight: 800; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--yellow);
  transition: right .2s ease;
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { right: 0; }
.mobile-nav-toggle, .mobile-nav { display: none; }
.mobile-nav-toggle {
  width: 42px;
  height: 42px;
  padding: 10px;
  place-content: center;
  gap: 4px;
  color: var(--white);
  background: #23252a;
  border: 1px solid #393b41;
  border-radius: 11px;
  cursor: pointer;
}
.mobile-nav-toggle span { width: 19px; height: 2px; display: block; background: currentColor; border-radius: 2px; }
.mobile-nav {
  position: absolute;
  z-index: 35;
  top: calc(100% + 8px);
  right: 14px;
  width: min(300px, calc(100vw - 28px));
  padding: 8px;
  color: var(--white);
  background: rgba(16,17,19,.98);
  border: 1px solid #35373d;
  border-radius: 15px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
}
.mobile-nav a { padding: 14px 15px; border-radius: 10px; font-size: 14px; font-weight: 850; }
.mobile-nav a:hover, .mobile-nav a:focus-visible { color: var(--ink); background: var(--yellow); }
.cart-button {
  min-height: 46px;
  padding: 6px 7px 6px 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 14px;
  font-weight: 950;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.cart-button:hover { background: var(--yellow-bright); transform: translateY(-1px); }
.cart-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-button b { min-width: 33px; height: 33px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 10px; font-size: 13px; }

.top-request-bar {
  padding: 18px max(20px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
  color: var(--top-request-text, var(--ink));
  background: var(--top-request-bg, var(--white));
  border-bottom: 1px solid var(--line);
}
.top-request-copy { display: flex; align-items: center; gap: 18px; }
.top-request-copy > span { padding: 7px 9px; flex: 0 0 auto; color: var(--top-request-text, var(--ink)); background: var(--top-request-accent, var(--yellow)); border-radius: 8px; font-size: 9px; font-weight: 950; letter-spacing: .07em; text-transform: uppercase; }
.top-request-copy h2 { margin: 0 0 3px; font-size: clamp(20px, 2vw, 29px); letter-spacing: -.035em; }
.top-request-copy p { margin: 0; color: color-mix(in srgb, var(--top-request-text, var(--ink)) 65%, transparent); font-size: 12px; line-height: 1.45; }
.top-request-actions { display: flex; align-items: stretch; gap: 8px; }
.top-request-primary,
.top-request-contact { min-height: 52px; padding: 9px 15px; display: flex; flex-direction: column; justify-content: center; border-radius: 11px; }
.top-request-primary { min-width: 150px; align-items: center; color: var(--top-request-button-text, var(--white)); background: var(--top-request-button, var(--ink)); font-size: 12px; font-weight: 950; text-align: center; }
.top-request-contact { min-width: 160px; background: color-mix(in srgb, var(--top-request-text, var(--ink)) 5%, var(--top-request-bg, var(--white))); border: 1px solid color-mix(in srgb, var(--top-request-text, var(--ink)) 18%, transparent); }
.top-request-contact small { margin-bottom: 2px; color: color-mix(in srgb, var(--top-request-text, var(--ink)) 62%, transparent); font-size: 9px; font-weight: 850; }
.top-request-contact strong { font-size: 12px; white-space: nowrap; }
.top-request-primary:hover { filter: brightness(1.16); }
.top-request-contact:hover { border-color: var(--top-request-accent, #aeb000); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100svh - 76px));
  padding: clamp(70px, 8vw, 128px) max(20px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
  align-items: center;
  gap: clamp(32px, 6vw, 95px);
  overflow: hidden;
  background: var(--yellow);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  top: -35%;
  left: -13%;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 95px rgba(255, 255, 255, .07), 0 0 0 190px rgba(0, 0, 0, .035);
}
.hero-noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' 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");
}
.hero-copy { position: relative; z-index: 2; max-width: 780px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #72757c;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .15em;
}
.eyebrow i { width: 22px; height: 2px; display: inline-block; background: var(--yellow); }
.eyebrow-dark { color: #424400; }
.eyebrow-dark i { background: var(--ink); }
.hero h1 {
  max-width: 850px;
  margin: 18px 0 22px;
  font-size: clamp(52px, 6.6vw, 104px);
  line-height: .88;
  letter-spacing: -.072em;
  text-wrap: balance;
}
.hero-lead { max-width: 650px; margin: 0; font-size: clamp(17px, 1.6vw, 22px); line-height: 1.52; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 11px; }
.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 0;
  border-radius: 15px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .46; cursor: not-allowed; transform: none; }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-dark { color: var(--white); background: var(--ink); box-shadow: 0 15px 34px rgba(0, 0, 0, .2); }
.button-dark:hover { background: #202225; }
.button-outline { color: var(--ink); background: rgba(255, 255, 255, .08); border: 2px solid var(--ink); }
.button-yellow { color: var(--ink); background: var(--yellow); }
.button-yellow:hover { background: var(--yellow-bright); }
.button.full { width: 100%; }
.hero-points { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px 22px; color: #464800; font-size: 12px; font-weight: 850; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-points i { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; box-shadow: 0 0 0 3px rgba(0, 0, 0, .08); }

.hero-visual { position: relative; min-height: 560px; align-self: stretch; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 2% -10% -8% 3%;
  background: linear-gradient(145deg, #1c1e22, #08090b 72%);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 46% 46% 30px 30px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .28);
  transform: rotate(2deg);
}
.hero-stamp {
  position: absolute;
  z-index: 3;
  top: 3%;
  left: 5%;
  padding: 15px 19px 12px;
  display: flex;
  align-items: baseline;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -.04em;
}
.hero-stamp span { color: var(--yellow); }
.hero-stamp small { margin-left: 12px; color: #7f8289; font-size: 8px; letter-spacing: .14em; }
.hero-products { position: absolute; z-index: 2; width: min(110%, 700px); height: auto; right: -8%; bottom: -3%; }
.hero-card {
  position: absolute;
  z-index: 4;
  right: -2%;
  bottom: 3%;
  width: min(330px, 62%);
  padding: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  color: var(--white);
  background: rgba(17, 18, 21, .88);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 17px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
}
.hero-card-number { color: var(--yellow); font-size: 31px; font-weight: 950; }
.hero-card > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.hero-card strong { font-size: 12px; }
.hero-card small { color: #979aa1; font-size: 9px; line-height: 1.35; }

.catalog-section { padding: 105px max(20px, calc((100vw - var(--content)) / 2)) 125px; }
.section-heading { margin-bottom: 38px; display: flex; align-items: flex-end; justify-content: space-between; gap: 45px; }
.section-heading h2 { margin: 10px 0 0; font-size: clamp(40px, 5vw, 68px); line-height: .98; letter-spacing: -.055em; }
.section-heading > p { max-width: 520px; margin: 0; color: #666970; font-size: 16px; line-height: 1.58; }
.catalog-toolbar { margin-bottom: 19px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.search-box {
  position: relative;
  width: min(600px, 100%);
  display: flex;
  align-items: center;
  color: #72757c;
}
.search-box > svg { position: absolute; z-index: 1; left: 18px; width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.search-box input {
  min-height: 58px;
  padding: 0 54px 0 52px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 17px;
  outline: none;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(12, 13, 15, .035);
}
.search-box input::placeholder { color: #96989e; }
.search-box input::-webkit-search-cancel-button { display: none; -webkit-appearance: none; }
.search-box input:focus { border-color: #a5a000; box-shadow: 0 0 0 4px rgba(244, 233, 0, .22); }
.search-clear { position: absolute; z-index: 2; right: 10px; width: 38px; height: 38px; color: #6d7077; background: #eeeee9; border: 0; border-radius: 11px; font-size: 23px; cursor: pointer; }
.catalog-result-count { margin: 0; color: #7b7e84; font-size: 13px; font-weight: 800; white-space: nowrap; }
.category-strip { margin: 0 0 28px; padding-bottom: 3px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.category-strip::-webkit-scrollbar { display: none; }
.category-chip {
  min-height: 44px;
  padding: 7px 8px 7px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: #62656c;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.category-chip b { min-width: 28px; height: 28px; padding: 0 6px; display: grid; place-items: center; color: #7f8289; background: #efefea; border-radius: 999px; font-size: 10px; }
.category-chip:hover { border-color: #a9a9a3; }
.category-chip.active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.category-chip.active b { color: var(--ink); background: var(--yellow); }

.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.category-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #e1e1da;
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.category-card:hover { transform: translateY(-5px); border-color: #cecec6; box-shadow: 0 22px 52px rgba(13, 14, 16, .11); }
.category-card:focus-visible { outline-offset: 5px; }
.category-card-media { position: relative; aspect-ratio: 1.34 / 1; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #1b1d21, #090a0c); }
.category-card-media::after { content: ""; position: absolute; width: 78%; aspect-ratio: 1; right: -40%; bottom: -62%; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.018); }
.category-card-media > img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.category-card:hover .category-card-media > img { transform: scale(1.035); }
.category-card-fallback { position: absolute; inset: 0; display: grid; place-items: center; }
.category-card-fallback::before { content: ""; position: absolute; width: 62%; aspect-ratio: 1; background: var(--yellow); border-radius: 50%; filter: blur(25px); opacity: .84; }
.category-card-fallback i { position: relative; z-index: 1; width: 42%; height: 68%; background: linear-gradient(120deg, #34373c, #08090b 53%, #292c31); border: 1px solid rgba(255,255,255,.16); border-radius: 38px 38px 20px 20px; box-shadow: 0 20px 30px rgba(0,0,0,.38); transform: rotate(-7deg); }
.category-card-fallback b { position: absolute; z-index: 2; min-width: 72px; padding: 13px 10px; color: var(--ink); background: var(--yellow); border-radius: 10px; font-size: 25px; font-style: normal; line-height: 1; text-align: center; }
.category-card-count { position: absolute; z-index: 4; right: 12px; bottom: 12px; min-height: 29px; padding: 7px 10px; color: var(--white); background: rgba(10,11,13,.78); border: 1px solid rgba(255,255,255,.15); border-radius: 9px; backdrop-filter: blur(9px); font-size: 9px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.category-card-body { min-height: 194px; padding: 22px; display: flex; flex-direction: column; align-items: flex-start; }
.category-card-body small { color: #898c92; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.category-card-body strong { margin: 8px 0; overflow-wrap: anywhere; font-size: clamp(22px, 2vw, 29px); line-height: 1.04; letter-spacing: -.035em; }
.category-card-body > span { display: -webkit-box; overflow: hidden; color: #72757c; font-size: 12px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.category-card-body em { margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-style: normal; font-weight: 950; }
.category-card-body em svg, .catalog-all-link .button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.category-card:hover .category-card-body em svg { transform: translateX(4px); }
.catalog-all-link { margin-top: 34px; display: flex; justify-content: center; }
.catalog-index-section { background: var(--paper); }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #e1e1da;
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: #cecec6; box-shadow: 0 22px 52px rgba(13, 14, 16, .11); }
.product-media { position: relative; min-height: 275px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(150deg, #f1f1ec, #e6e6df); }
.product-media::after { content: ""; position: absolute; left: 12%; right: 12%; bottom: 7%; height: 16px; background: rgba(0, 0, 0, .15); border-radius: 50%; filter: blur(10px); }
.product-media img { position: relative; z-index: 2; width: 100%; height: 275px; padding: 24px; object-fit: contain; filter: drop-shadow(0 20px 16px rgba(0, 0, 0, .17)); }
.product-labels { position: absolute; z-index: 5; top: 13px; left: 13px; right: 13px; display: flex; align-items: flex-start; justify-content: space-between; gap: 7px; }
.product-badge, .stock-status { min-height: 27px; padding: 6px 9px; display: inline-flex; align-items: center; gap: 5px; border-radius: 8px; font-size: 9px; font-weight: 950; letter-spacing: .035em; text-transform: uppercase; }
.product-badge { color: var(--ink); background: var(--yellow); }
.stock-status { margin-left: auto; color: #585b61; background: rgba(255, 255, 255, .86); backdrop-filter: blur(8px); }
.stock-status i { width: 6px; height: 6px; background: #3f9f60; border-radius: 50%; }
.stock-status--few i { background: #d19523; }
.stock-status--out i { background: #9f5555; }

.product-fallback { position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; }
.fallback-halo { position: absolute; width: 72%; aspect-ratio: 1; background: var(--yellow); border-radius: 50%; filter: blur(30px); opacity: .7; }
.fallback-bottle {
  position: absolute;
  width: 86px;
  height: 188px;
  top: 49px;
  left: calc(50% - 58px);
  background: linear-gradient(100deg, #30343a, #0d0f12 48%, #292c31);
  border-radius: 20px 20px 16px 16px;
  box-shadow: 0 20px 27px rgba(0, 0, 0, .28);
  transform: rotate(-5deg);
}
.fallback-bottle::before { content: ""; position: absolute; width: 34px; height: 48px; left: 26px; top: -39px; background: #17191d; border-radius: 6px 6px 2px 2px; }
.fallback-bottle::after { content: "ALKO GO"; position: absolute; left: 9px; right: 9px; top: 68px; padding: 22px 3px; color: var(--ink); background: var(--yellow); border-radius: 6px; font-size: 9px; font-weight: 950; text-align: center; letter-spacing: .06em; }
.fallback-bottle i { position: absolute; left: 12px; top: 10px; width: 8px; height: 152px; background: linear-gradient(rgba(255,255,255,.28), transparent); border-radius: 8px; opacity: .5; }
.fallback-vessel { position: absolute; width: 72px; height: 91px; right: calc(50% - 85px); bottom: 34px; background: linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.16)); border: 3px solid rgba(255,255,255,.74); border-radius: 7px 7px 20px 20px; transform: rotate(6deg); }
.fallback-vessel::after { content: ""; position: absolute; inset: 43px 7px 7px; background: linear-gradient(#d89b27, #713907); border-radius: 3px 3px 13px 13px; opacity: .9; }
.product-fallback > b { position: absolute; z-index: 3; right: 17px; bottom: 14px; color: rgba(11,12,14,.23); font-size: 38px; line-height: 1; letter-spacing: -.08em; }
.product-fallback--vodka .fallback-bottle { background: linear-gradient(100deg, #dbe8ec, #879ca5 50%, #f0f4f3); }
.product-fallback--vodka .fallback-bottle::before { background: #a6b8bf; }
.product-fallback--wine .fallback-bottle, .product-fallback--sparkling .fallback-bottle { width: 72px; left: calc(50% - 52px); background: linear-gradient(100deg, #24382e, #08130e 50%, #304c3d); border-radius: 27px 27px 15px 15px; }
.product-fallback--wine .fallback-vessel, .product-fallback--sparkling .fallback-vessel { width: 55px; height: 111px; border-radius: 5px 5px 25px 25px; }
.product-fallback--beer .fallback-bottle { width: 98px; height: 165px; top: 67px; border-radius: 7px 7px 18px 18px; background: linear-gradient(90deg, #6d3a0d, #281204 50%, #814815); }
.product-fallback--beer .fallback-bottle::before { height: 30px; top: -24px; }
.product-fallback--soft .fallback-bottle { background: linear-gradient(100deg, #48a7c6, #0b506f 50%, #68bfd7); }
.product-fallback--snacks .fallback-bottle { width: 118px; height: 154px; top: 70px; left: calc(50% - 77px); background: linear-gradient(110deg, #202226, #08090b); border-radius: 12px 12px 30px 30px; transform: rotate(-6deg); }
.product-fallback--snacks .fallback-bottle::before { width: 102px; height: 17px; left: 8px; top: -8px; border-radius: 5px; }
.product-fallback--snacks .fallback-bottle::after { left: 12px; right: 12px; top: 39px; padding: 27px 3px; }

.product-body { padding: 21px; }
.product-category { color: #8a8d93; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.product-card h3 { margin: 8px 0 5px; overflow-wrap: anywhere; font-size: clamp(19px, 1.65vw, 24px); line-height: 1.15; letter-spacing: -.025em; }
.product-card p { min-height: 40px; margin: 0; color: #74777d; font-size: 13px; line-height: 1.5; }
.product-footer { margin-top: 19px; display: flex; align-items: flex-end; justify-content: space-between; gap: 11px; }
.product-price { min-width: 0; display: flex; flex-direction: column; }
.product-price strong { font-size: 20px; line-height: 1.05; white-space: nowrap; }
.product-price del { margin-top: 4px; color: #9a9ca1; font-size: 11px; }
.add-to-cart {
  min-width: 105px;
  min-height: 44px;
  padding: 5px 6px 5px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.add-to-cart:hover, .add-to-cart.added, .add-to-cart.has-items { color: var(--ink); background: var(--yellow); transform: translateY(-1px); }
.add-to-cart[aria-disabled="true"] { cursor: default; transform: none; }
.add-to-cart:disabled { padding: 0 11px; justify-content: center; color: #8d8f94; background: #dddeda; cursor: not-allowed; transform: none; }
.product-add-quantity { min-width: 32px; height: 32px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 9px; font-size: 11px; }
.catalog-empty { padding: 70px 20px; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.catalog-empty > span { width: 70px; height: 70px; margin: 0 auto 20px; display: grid; place-items: center; background: var(--yellow); border-radius: 50%; }
.catalog-empty > span i { position: relative; width: 23px; height: 23px; border: 3px solid var(--ink); border-radius: 50%; }
.catalog-empty > span i::after { content: ""; position: absolute; width: 12px; height: 3px; right: -10px; bottom: -5px; background: var(--ink); transform: rotate(45deg); border-radius: 3px; }
.catalog-empty h3 { margin: 0; font-size: 28px; }
.catalog-empty p { margin: 8px 0 22px; color: var(--muted); }

.how-section { padding: 105px max(20px, calc((100vw - var(--content)) / 2)); color: var(--white); background: var(--ink); }
.section-heading-light .eyebrow { color: var(--yellow); }
.section-heading-light > p { color: #9a9da3; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.steps-grid article { position: relative; min-height: 275px; padding: 30px; overflow: hidden; background: var(--charcoal); border: 1px solid var(--dark-line); border-radius: var(--radius); }
.steps-grid article::after { content: ""; position: absolute; width: 160px; height: 160px; right: -75px; bottom: -75px; border: 1px solid #34363b; border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.015); }
.steps-grid b { color: var(--yellow); font-size: 52px; line-height: 1; }
.steps-grid article > span { width: 46px; height: 2px; margin-top: 19px; display: block; background: #3a3c42; }
.steps-grid h3 { margin: 55px 0 9px; font-size: 23px; letter-spacing: -.025em; }
.steps-grid p { max-width: 310px; margin: 0; color: #a2a5ab; line-height: 1.55; }

.contacts-section { padding: 84px max(20px, calc((100vw - var(--content)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 50px; background: var(--yellow); }
.contacts-section h2 { margin: 10px 0; font-size: clamp(42px, 5vw, 68px); line-height: .98; letter-spacing: -.055em; }
.contacts-section p { max-width: 600px; margin: 0; }
.contact-links { display: flex; flex-direction: column; align-items: flex-end; gap: 15px; }
.contact-links a { display: flex; flex-direction: column; align-items: flex-end; }
.contact-links small { color: #555700; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-links span { font-size: clamp(22px, 3vw, 36px); font-weight: 950; letter-spacing: -.035em; }
.contact-links a:hover span { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.site-footer { padding: 44px max(20px, calc((100vw - var(--content)) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 55px; color: #9b9ea5; background: var(--ink); font-size: 12px; line-height: 1.65; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand strong { color: var(--white); font-size: 23px; }
.site-footer p { max-width: 620px; margin: 0; }

.age-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(5, 6, 8, .76);
  backdrop-filter: blur(13px);
}
.age-pending .site-shell { filter: blur(10px); pointer-events: none; user-select: none; }
.age-card {
  width: min(480px, 100%);
  padding: 40px;
  color: var(--white);
  text-align: center;
  background: #111216;
  border: 1px solid #35373d;
  border-radius: 25px;
  box-shadow: 0 38px 110px rgba(0, 0, 0, .6);
  outline: none;
}
.age-brand { margin-bottom: 20px; font-size: 24px; font-weight: 950; }
.age-brand span { color: var(--yellow); }
.age-number { color: var(--yellow); font-size: 76px; line-height: 1; font-weight: 950; letter-spacing: -.06em; }
.age-card h2 { margin: 20px 0 8px; font-size: 28px; letter-spacing: -.03em; }
.age-card p { max-width: 370px; margin: 0 auto 22px; color: #9699a0; line-height: 1.55; }
.age-card .button { width: 100%; }
.age-card > a { margin-top: 17px; display: inline-block; color: #7f8288; font-size: 12px; }
.age-card > a:hover { color: var(--white); }

.drawer-backdrop { position: fixed; z-index: 49; inset: 0; background: rgba(0, 0, 0, .54); backdrop-filter: blur(3px); }
.cart-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: min(480px, 100%);
  height: 100dvh;
  padding: 27px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  box-shadow: -28px 0 75px rgba(0, 0, 0, .24);
  outline: none;
  transform: translateX(105%);
  transition: transform .27s ease;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; }
.drawer-head h2 { margin: 7px 0 23px; font-size: 40px; letter-spacing: -.045em; }
.icon-button { width: 41px; height: 41px; display: grid; place-items: center; color: #64676d; background: #efefea; border: 0; border-radius: 12px; font-size: 25px; line-height: 1; cursor: pointer; }
.icon-button:hover { color: var(--ink); background: var(--yellow); }
.cart-items { display: flex; flex-direction: column; gap: 9px; overflow-y: auto; overscroll-behavior: contain; }
.cart-row { padding: 15px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; background: var(--paper); border-radius: 14px; }
.cart-row-copy { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.cart-row-copy strong { overflow-wrap: anywhere; font-size: 14px; }
.cart-row-price { color: #71747a; font-size: 11px; }
.cart-row-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.quantity-control { display: flex; align-items: center; gap: 7px; }
.quantity-control button { width: 30px; height: 30px; display: grid; place-items: center; background: var(--surface); border: 1px solid #d9d9d2; border-radius: 8px; cursor: pointer; }
.quantity-control button:hover { background: var(--yellow); border-color: var(--yellow); }
.quantity-control button:disabled { opacity: .4; cursor: not-allowed; }
.quantity-control b { min-width: 20px; text-align: center; font-size: 12px; }
.remove-item { min-height: 30px; padding: 6px 4px; color: #898b90; background: transparent; border: 0; font-size: 10px; text-decoration: underline; cursor: pointer; }
.remove-item:hover { color: var(--danger); }
.cart-empty { padding: 45px 25px; display: flex; flex-direction: column; align-items: center; color: #777a80; text-align: center; background: var(--paper); border-radius: 15px; }
.cart-empty > span { position: relative; width: 55px; height: 48px; margin-bottom: 16px; border: 3px solid #c4c5bf; border-top: 0; border-radius: 5px 5px 14px 14px; transform: skew(-5deg); }
.cart-empty > span::before { content: ""; position: absolute; width: 20px; height: 15px; left: 14px; top: -11px; border: 3px solid #c4c5bf; border-bottom: 0; border-radius: 12px 12px 0 0; }
.cart-empty strong { color: #55585e; font-size: 14px; }
.cart-empty small { margin-top: 4px; }
.cart-bottom { margin-top: auto; padding-top: 22px; }
.cart-summary { padding-top: 20px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #e1e1db; }
.cart-summary span { color: #777a80; font-size: 12px; }
.cart-summary strong { font-size: 27px; letter-spacing: -.03em; }
.cart-note { margin: 7px 0 17px; color: #7b7e84; font-size: 10px; }

.mobile-cart-bar {
  position: fixed;
  z-index: 28;
  left: 13px;
  right: 13px;
  bottom: max(13px, env(safe-area-inset-bottom));
  min-height: 55px;
  padding: 8px 10px 8px 15px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.mobile-cart-bar span { display: flex; align-items: center; gap: 8px; }
.mobile-cart-bar b { min-width: 31px; height: 31px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 9px; }
.mobile-cart-bar strong { font-size: 16px; }

.modal { position: fixed; z-index: 60; inset: 0; padding: 20px; display: grid; place-items: center; background: rgba(0,0,0,.68); backdrop-filter: blur(6px); }
.modal-card { position: relative; width: min(590px, 100%); max-height: calc(100dvh - 40px); padding: 34px; overflow-y: auto; background: var(--surface); border-radius: 25px; box-shadow: var(--shadow); outline: none; }
.modal-close { position: absolute; top: 17px; right: 17px; }
.modal-card h2 { margin: 8px 0; padding-right: 42px; font-size: 37px; line-height: 1.05; letter-spacing: -.04em; }
.modal-card > p { margin: 0 0 18px; color: #70737a; font-size: 13px; }
.checkout-summary { margin-bottom: 20px; padding: 14px; display: grid; gap: 8px; background: var(--paper); border-radius: 13px; }
.checkout-summary-row, .checkout-summary-total { display: flex; justify-content: space-between; gap: 16px; font-size: 11px; }
.checkout-summary-row span { overflow-wrap: anywhere; }
.checkout-summary-row strong { white-space: nowrap; }
.checkout-summary-total { margin-top: 3px; padding-top: 10px; border-top: 1px solid #d9d9d2; font-size: 13px; }
.modal-card form { display: grid; gap: 13px; }
label { display: grid; gap: 7px; color: #404248; font-size: 12px; font-weight: 850; }
input, textarea, select { width: 100%; padding: 13px 14px; color: var(--ink); background: #f6f6f1; border: 1px solid #dbdcd6; border-radius: 12px; outline: none; }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: #9e9900; box-shadow: 0 0 0 3px rgba(244,233,0,.22); }
.consent { display: flex; align-items: flex-start; gap: 9px; line-height: 1.4; }
.consent input { width: auto; margin-top: 2px; accent-color: var(--ink); }
.order-result { min-height: 18px; font-size: 12px; }
.order-result.success { padding: 12px; color: #155d31; background: #e5f7eb; border-radius: 10px; }
.order-result.error { padding: 12px; color: #852626; background: #fbe8e8; border-radius: 10px; }

/* CMS-driven storefront blocks and SEO pages. */
.cms-block { color: var(--block-text, inherit); }
.hero.cms-block { background: var(--block-bg, var(--yellow)); }
.catalog-section.cms-block { background: var(--block-bg, var(--paper)); }
.how-section.cms-block { color: var(--block-text, var(--white)); background: var(--block-bg, var(--ink)); }
.contacts-section.cms-block { background: var(--block-bg, var(--yellow)); }
.hero-cms-image { position: absolute; z-index: 2; inset: 4%; width: 92%; height: 92%; object-fit: contain; filter: drop-shadow(0 25px 28px rgba(0,0,0,.28)); }
.hero-visual--image::before { inset: 0; }
.steps-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.cms-content-block {
  padding: clamp(54px, 7vw, 96px) max(20px, calc((100vw - var(--content)) / 2));
  color: var(--block-text, var(--ink));
  background: var(--block-bg, var(--paper));
}
.cms-content-block + .cms-content-block { padding-top: clamp(26px, 4vw, 54px); }
.cms-content-inner { width: min(100%, 1040px); margin: 0 auto; }
.cms-width--wide .cms-content-inner { width: min(100%, var(--content)); }
.cms-align--center .cms-content-inner { text-align: center; }
.cms-theme--dark.cms-content-block { color: var(--block-text, #f5f5f2); background: var(--block-bg, var(--ink)); }
.cms-theme--accent.cms-content-block { color: var(--block-text, var(--ink)); background: var(--block-bg, var(--yellow)); }
.cms-theme--muted.cms-content-block { background: var(--block-bg, #e9e9e3); }
.cms-content-block h2 { margin: 0 0 22px; font-size: clamp(31px, 4.2vw, 56px); line-height: 1.04; letter-spacing: -.045em; text-wrap: balance; }
.cms-content-block p { margin: 0 0 16px; color: color-mix(in srgb, currentColor 72%, transparent); font-size: clamp(15px, 1.35vw, 18px); line-height: 1.72; }
.cms-content-block a { color: inherit; font-weight: 800; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.cms-content-block a:hover { text-decoration-thickness: 3px; }
.cms-theme--dark.cms-content-block a { color: var(--yellow); }
.cms-content-block .cms-lead { max-width: 900px; font-size: clamp(17px, 1.7vw, 22px); }
.cms-align--center .cms-lead { margin-right: auto; margin-left: auto; }
.cms-content-list ul { margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; list-style: none; }
.cms-content-list li { position: relative; min-height: 42px; padding: 9px 0 9px 24px; color: color-mix(in srgb, currentColor 82%, transparent); line-height: 1.55; }
.cms-content-list li::before { content: ""; position: absolute; width: 8px; height: 8px; left: 0; top: 17px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 4px color-mix(in srgb, var(--yellow) 18%, transparent); }
.cms-theme--accent.cms-content-list li::before { background: var(--ink); box-shadow: 0 0 0 4px rgba(0,0,0,.09); }
.cms-table-wrap { margin-top: 28px; overflow-x: auto; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); border-radius: 16px; }
.cms-content-table table { width: 100%; min-width: 640px; border-collapse: collapse; color: inherit; background: color-mix(in srgb, currentColor 4%, transparent); }
.cms-content-table th { padding: 16px 18px; color: var(--yellow); background: rgba(0,0,0,.12); border-bottom: 1px solid color-mix(in srgb, currentColor 22%, transparent); font-size: 11px; letter-spacing: .08em; text-align: left; text-transform: uppercase; }
.cms-theme--accent.cms-content-table th { color: var(--ink); }
.cms-content-table td { padding: 17px 18px; border-right: 1px solid color-mix(in srgb, currentColor 16%, transparent); border-bottom: 1px solid color-mix(in srgb, currentColor 16%, transparent); line-height: 1.45; }
.cms-content-table tr:last-child td { border-bottom: 0; }
.cms-content-table td:last-child, .cms-content-table th:last-child { border-right: 0; }
.cms-callout-box { padding: clamp(24px, 4vw, 42px); background: color-mix(in srgb, currentColor 5%, transparent); border: 1px solid color-mix(in srgb, currentColor 24%, transparent); border-left: 6px solid var(--yellow); border-radius: 17px; }
.cms-callout-box h2 { margin-bottom: 12px; font-size: clamp(25px, 3vw, 38px); }
.cms-callout-box p:last-child { margin-bottom: 0; }
.cms-callout--warning .cms-callout-box { border-left-color: #e47b2c; }
.cms-callout--accent .cms-callout-box { border-left-color: var(--yellow); }
.cms-block .section-heading > p,
.cms-block .hero-lead,
.cms-block.contacts-section > div > p { color: color-mix(in srgb, currentColor 72%, transparent); }
.cms-block .steps-grid p { color: color-mix(in srgb, currentColor 68%, transparent); }
.how-section.cms-block .section-heading h2,
.how-section.cms-block .steps-grid h3 { color: #f5f5f2; }
.how-section.cms-block .steps-grid p { color: #b1b4ba; }

.breadcrumbs { margin-bottom: 45px; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #8d9096; font-size: 12px; }
.breadcrumbs a { color: #5d6066; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs a:hover { color: var(--ink); }
.listing-hero { position: relative; min-height: 390px; padding: 58px max(20px, calc((100vw - var(--content)) / 2)) 72px; overflow: hidden; color: var(--white); background: var(--ink); }
.listing-hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -95px; bottom: -235px; background: var(--yellow); border-radius: 50%; opacity: .9; }
.listing-hero-copy { position: relative; z-index: 2; max-width: 850px; }
.listing-hero h1 { margin: 14px 0 20px; font-size: clamp(52px, 7vw, 98px); line-height: .92; letter-spacing: -.065em; }
.listing-hero p { max-width: 760px; margin: 0; color: #b6b8bd; font-size: clamp(16px, 1.6vw, 21px); line-height: 1.6; white-space: pre-line; }
.listing-hero > img { position: absolute; z-index: 1; width: min(42vw, 500px); height: 90%; right: 5%; bottom: 0; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0,0,0,.35)); }
.listing-products, .related-products { padding: 90px max(20px, calc((100vw - var(--content)) / 2)) 115px; }
.content-page-title { min-height: 330px; }

.product-page { padding: 48px max(20px, calc((100vw - var(--content)) / 2)) 105px; }
.product-page-grid { display: grid; grid-template-columns: minmax(380px, .9fr) minmax(0, 1.1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.product-page-media { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #eeeeE8, #deded7); border-radius: var(--radius-lg); }
.product-page-media > img { position: relative; z-index: 2; width: 100%; height: 600px; padding: 55px; object-fit: contain; filter: drop-shadow(0 30px 24px rgba(0,0,0,.2)); }
.product-page-media .product-fallback { display: grid; }
.product-page-copy { max-width: 720px; }
.product-page-copy > .product-badge { margin: 0 0 10px 10px; }
.product-page-copy h1 { margin: 13px 0 15px; font-size: clamp(48px, 6vw, 88px); line-height: .92; letter-spacing: -.065em; overflow-wrap: anywhere; }
.product-page-subtitle { margin: 0; color: var(--muted); font-size: clamp(17px, 1.7vw, 22px); line-height: 1.55; }
.product-page-price { margin: 35px 0 15px; display: flex; align-items: baseline; gap: 15px; }
.product-page-price strong { font-size: clamp(34px, 4vw, 52px); }
.product-page-price del { color: #94969b; font-size: 17px; }
.product-page-stock { width: max-content; margin: 0 0 28px; }
.product-description { margin: 28px 0; padding-top: 26px; border-top: 1px solid var(--line); }
.product-description h2 { margin: 0 0 10px; font-size: 23px; }
.product-description p { margin: 0; color: #65686f; line-height: 1.72; white-space: pre-line; }
.product-page-add { min-width: 260px; min-height: 56px; padding-left: 21px; font-size: 13px; }
.product-page-note { max-width: 570px; margin: 15px 0 0; color: #87898e; font-size: 11px; line-height: 1.5; }
.related-products { padding-top: 0; }

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

@media (min-width: 761px) {
  .mobile-cart-bar { display: none !important; }
}

@media (min-width: 921px) {
  .cms-theme--light.cms-content-block p,
  .cms-theme--muted.cms-content-block p { color: var(--block-text, #55585f); }
  .cms-theme--dark.cms-content-block p { color: var(--block-text, #c4c7cd); }
  .cms-theme--accent.cms-content-block p { color: var(--block-text, #303237); }
  .cms-theme--light.cms-content-list li,
  .cms-theme--muted.cms-content-list li { color: var(--block-text, #45484e); }
  .cms-theme--dark.cms-content-list li { color: var(--block-text, #e0e2e5); }
  .cms-theme--accent.cms-content-list li { color: var(--block-text, #26282c); }

  .category-card-media--image { aspect-ratio: 3 / 4; }
  .category-card-media--image > img { object-fit: contain; }
  .category-card:hover .category-card-media--image > img { transform: none; }
}

@media (max-width: 1180px) {
  .top-request-bar { grid-template-columns: 1fr; gap: 13px; }
  .top-request-actions { width: 100%; }
  .top-request-actions > * { flex: 1 1 0; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr); gap: 35px; }
  .hero-visual { min-height: 510px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: auto auto 1fr auto; }
  .desktop-nav { display: none; }
  .mobile-nav-toggle { display: grid; justify-self: end; }
  .mobile-nav:not([hidden]) { display: grid; }
  .cart-button { justify-self: end; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 85px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(58px, 10vw, 94px); }
  .hero-visual { width: min(680px, 100%); min-height: 540px; justify-self: center; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 15px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contacts-section { align-items: flex-start; flex-direction: column; }
  .contact-links, .contact-links a { align-items: flex-start; }
  .product-page-grid { grid-template-columns: 1fr; }
  .product-page-media { width: min(680px, 100%); min-height: 520px; }
  .product-page-media > img { height: 500px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  body.has-mobile-cart { padding-bottom: 82px; }
  .site-header { min-height: 66px; padding: 8px 13px; grid-template-columns: auto 1fr auto; gap: 10px; }
  .brand { width: 104px; height: 42px; }
  .header-city { display: none; }
  .cart-button { min-height: 42px; padding: 5px 6px 5px 10px; }
  .cart-button > span { display: none; }
  .cart-button svg { width: 18px; height: 18px; }
  .cart-button b { min-width: 30px; height: 30px; }
  .top-request-bar { padding: 14px 13px 16px; gap: 12px; }
  .top-request-copy { align-items: flex-start; gap: 10px; }
  .top-request-copy > span { margin-top: 2px; }
  .top-request-copy h2 { font-size: 23px; }
  .top-request-copy p { font-size: 11px; }
  .top-request-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .top-request-primary { grid-column: 1 / -1; min-width: 0; min-height: 46px; }
  .top-request-contact { min-width: 0; min-height: 48px; padding: 8px 10px; }
  .top-request-contact strong { font-size: 11px; overflow: hidden; text-overflow: ellipsis; }
  .hero { padding: 65px 16px 44px; gap: 34px; }
  .hero h1 { margin: 16px 0 18px; font-size: clamp(49px, 15.5vw, 74px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { margin-top: 25px; }
  .hero-actions .button { width: 100%; }
  .hero-points { margin-top: 26px; display: grid; grid-template-columns: 1fr; gap: 8px; }
  .hero-visual { min-height: min(117vw, 500px); }
  .hero-visual::before { inset: 1% -7% -4% 0; border-radius: 42% 42% 23px 23px; }
  .hero-products { width: 112%; right: -11%; }
  .hero-stamp { top: 4%; left: 5%; padding: 11px 13px 9px; font-size: 17px; }
  .hero-stamp small { display: none; }
  .hero-card { right: 0; bottom: 1%; width: min(310px, 78%); }
  .catalog-section { padding: 68px 13px 82px; }
  .section-heading { margin-bottom: 27px; }
  .section-heading h2 { font-size: 42px; }
  .section-heading > p { font-size: 14px; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; gap: 9px; }
  .search-box { width: 100%; }
  .search-box input { min-height: 54px; }
  .catalog-result-count { padding-left: 3px; }
  .category-strip { margin-right: -13px; padding-right: 13px; }
  .category-grid { gap: 9px; }
  .category-card-body { min-height: 178px; padding: 16px; }
  .category-card-body strong { font-size: 22px; }
  .product-grid { gap: 9px; }
  .product-media { min-height: 190px; }
  .product-media img { height: 190px; padding: 17px; }
  .product-labels { top: 8px; left: 8px; right: 8px; }
  .stock-status { padding: 5px 7px; font-size: 7px; }
  .product-badge { font-size: 7px; }
  .fallback-halo { width: 85%; filter: blur(23px); }
  .fallback-bottle { width: 60px; height: 125px; top: 43px; left: calc(50% - 40px); border-radius: 14px 14px 10px 10px; }
  .fallback-bottle::before { width: 25px; height: 31px; left: 18px; top: -26px; }
  .fallback-bottle::after { left: 6px; right: 6px; top: 43px; padding: 14px 2px; font-size: 6px; }
  .fallback-bottle i { left: 8px; height: 99px; }
  .fallback-vessel { width: 48px; height: 62px; right: calc(50% - 58px); bottom: 22px; }
  .fallback-vessel::after { inset: 29px 5px 5px; }
  .product-fallback > b { right: 9px; bottom: 8px; font-size: 25px; }
  .product-fallback--wine .fallback-bottle, .product-fallback--sparkling .fallback-bottle { width: 52px; left: calc(50% - 37px); }
  .product-fallback--wine .fallback-vessel, .product-fallback--sparkling .fallback-vessel { width: 39px; height: 75px; }
  .product-fallback--beer .fallback-bottle { width: 69px; height: 112px; top: 52px; }
  .product-fallback--snacks .fallback-bottle { width: 80px; height: 105px; top: 54px; left: calc(50% - 52px); }
  .product-fallback--snacks .fallback-bottle::before { width: 70px; height: 13px; left: 5px; top: -6px; }
  .product-fallback--snacks .fallback-bottle::after { top: 28px; padding: 18px 2px; }
  .product-body { padding: 13px; }
  .product-card h3 { font-size: 17px; }
  .product-card p { min-height: 34px; font-size: 11px; }
  .product-footer { margin-top: 14px; align-items: stretch; flex-direction: column; }
  .product-price strong { font-size: 17px; }
  .add-to-cart { width: 100%; min-width: 0; min-height: 40px; }
  .product-add-quantity { min-width: 29px; height: 29px; }
  .how-section { padding: 70px 13px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 205px; padding: 24px; }
  .steps-grid h3 { margin-top: 30px; }
  .contacts-section { padding: 66px 16px; gap: 32px; }
  .contacts-section h2 { font-size: 44px; }
  .contact-links span { font-size: 24px; }
  .site-footer { padding: 39px 16px; grid-template-columns: 1fr; gap: 22px; }
  .age-card { padding: 31px 21px; }
  .age-number { font-size: 67px; }
  .age-card h2 { font-size: 25px; }
  .cart-drawer { padding: 20px 14px; }
  .drawer-head h2 { font-size: 35px; }
  .cart-row { padding: 12px; }
  .mobile-cart-bar:not([hidden]) { display: flex; }
  .modal { padding: 10px; }
  .modal-card { max-height: calc(100dvh - 20px); padding: 29px 17px; border-radius: 20px; }
  .modal-card h2 { font-size: 32px; }
  .cms-content-block { padding: 55px 16px; }
  .cms-content-block + .cms-content-block { padding-top: 24px; }
  .cms-content-list ul { grid-template-columns: 1fr; gap: 3px; }
  .cms-content-table table { min-width: 0; }
  .cms-content-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .cms-content-table tr { padding: 12px; display: grid; border-bottom: 1px solid color-mix(in srgb, currentColor 17%, transparent); }
  .cms-content-table td { padding: 8px; display: grid; grid-template-columns: minmax(105px, 38%) 1fr; gap: 12px; border: 0; }
  .cms-content-table td::before { content: attr(data-label); color: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
  .listing-hero { min-height: 330px; padding: 38px 16px 58px; }
  .listing-hero h1 { font-size: 52px; }
  .listing-hero > img { opacity: .25; }
  .listing-products, .related-products { padding: 65px 13px 80px; }
  .product-page { padding: 30px 13px 70px; }
  .breadcrumbs { margin-bottom: 28px; }
  .product-page-grid { gap: 35px; }
  .product-page-media { min-height: 390px; border-radius: 22px; }
  .product-page-media > img { height: 380px; padding: 30px; }
  .product-page-copy h1 { font-size: 51px; }
  .product-page-add { width: 100%; min-width: 0; }
  .steps-grid--4 { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-card { grid-template-columns: minmax(116px, 34%) 1fr; grid-template-rows: 1fr; }
  .category-card-media { min-height: 164px; aspect-ratio: auto; }
  .category-card-fallback b { min-width: 58px; padding: 10px 8px; font-size: 20px; }
  .category-card-count { right: 7px; bottom: 7px; padding: 6px 7px; font-size: 7px; }
  .category-card-body { min-height: 164px; }
  .category-card-body > span { -webkit-line-clamp: 1; }
  .category-card-body em { padding-top: 13px; font-size: 10px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-labels { right: auto; flex-direction: column; align-items: flex-start; }
  .stock-status { max-width: 105px; margin: 0; }
  .product-badge { max-width: 75px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .product-body { padding: 12px; }
  .product-category { font-size: 8px; }
  .product-card h3 { font-size: 16px; }
  .add-to-cart { padding-left: 10px; font-size: 10px; }
  .hero-card { grid-template-columns: 1fr; gap: 3px; }
  .hero-card-number { font-size: 24px; }
  .hero-card small { display: none; }
  .cart-row { grid-template-columns: 1fr; }
  .cart-row-actions { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (max-width: 350px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-media { min-height: 230px; }
  .product-media img { height: 230px; }
  .fallback-bottle { top: 62px; }
  .product-footer { align-items: flex-end; flex-direction: row; }
  .add-to-cart { width: auto; min-width: 105px; }
}

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