@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Press+Start+2P&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f8f8f6;
  --surface-2: #f1f0ec;
  --ink: #101014;
  --muted: #6d655c;
  --line: #b5763a;
  --gold: #b5763a;
  --gold-bright: #d4944a;
  --gold-wash: rgba(181, 118, 58, 0.14);
  --green: #247b46;
  --red: #b54c42;
  --hard-shadow: 5px 5px 0 #101014;
  --content: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(181, 118, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181, 118, 58, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.018;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.3) 0,
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 4px
  );
}

body.locked {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  color: inherit;
}

button {
  cursor: pointer;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.topline {
  min-height: 36px;
  padding: 8px max(18px, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 45;
  border-bottom: 3px solid var(--gold);
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topline-note {
  position: absolute;
  right: max(18px, calc((100vw - var(--content)) / 2));
  color: #c9c4bc;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-header {
  height: 84px;
  padding: 0 max(20px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 0 #101014, 0 7px 0 rgba(181, 118, 58, 0.16);
  backdrop-filter: blur(12px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 9px,
    transparent 9px,
    transparent 18px
  );
}

.wordmark {
  width: max-content;
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark .eyebrow {
  margin: 0 0 5px 2px;
  color: var(--gold);
  font-family: "Press Start 2P", monospace;
  font-size: 7px;
  line-height: 1.5;
  letter-spacing: 1px;
}

.wordmark strong {
  font-family: "Press Start 2P", monospace;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 4px;
  text-shadow: 3px 3px 0 var(--gold);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-header nav a {
  position: relative;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 4px;
  left: 0;
  height: 3px;
  background: var(--gold);
  transition: right 0.18s ease;
}

.site-header nav a:hover::after {
  right: 0;
}

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

.round-button,
.region-button,
.bag-button {
  min-height: 44px;
  border: 3px solid var(--gold);
  border-radius: 0;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.round-button:hover,
.region-button:hover {
  background: var(--gold-wash);
}

.round-button:active,
.region-button:active,
.bag-button:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

.round-button {
  width: 44px;
  display: grid;
  place-items: center;
}

.round-button svg,
.bag-button svg {
  width: 19px;
  height: 19px;
}

.region-button {
  padding: 0 15px;
  font-size: 12px;
  font-weight: 800;
}

.bag-button {
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-color: var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bag-button b {
  min-width: 22px;
  height: 22px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: #fff;
  font-size: 10px;
  line-height: 1;
}

.search-panel {
  height: 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  overflow: hidden;
  border-bottom: 0 solid var(--gold);
  background: #fff;
  transition: height 0.2s ease, border-width 0.2s ease;
}

.search-panel.open {
  height: 78px;
  border-bottom-width: 3px;
  box-shadow: 0 4px 0 var(--ink);
}

.search-panel label {
  width: min(720px, 82vw);
  height: 48px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 3px solid var(--gold);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.search-panel svg {
  width: 20px;
}

.search-panel input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
}

.search-panel > button {
  width: 44px;
  height: 44px;
  border: 3px solid var(--gold);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 24px;
  line-height: 1;
}

.hero {
  width: min(100%, 1600px);
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.92fr);
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  background: #fff;
}

.hero-copy {
  padding: clamp(76px, 7vw, 116px) clamp(34px, 5vw, 82px) 72px;
  background-image:
    linear-gradient(rgba(181, 118, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181, 118, 58, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
}

.section-label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: "Press Start 2P", monospace;
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-label > span {
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.editorial h2 {
  margin: 30px 0 24px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.2vw, 82px);
  line-height: 1.02;
}

.hero h1 em,
.section-heading h2 em,
.editorial h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero-text {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.main-button,
.checkout-button,
.add-button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.main-button {
  margin-top: 26px;
}

.main-button:hover,
.checkout-button:hover,
.add-button:hover {
  filter: brightness(1.08);
}

.main-button:active,
.checkout-button:active,
.add-button:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.main-button span,
.checkout-button span,
.add-button span {
  font-size: 19px;
  line-height: 1;
}

.hero-facts {
  max-width: 620px;
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hero-facts > div {
  min-width: 0;
  padding-left: 13px;
  border-left: 3px solid var(--gold);
}

.hero-facts b {
  display: block;
  color: var(--gold);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-facts span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-products {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-left: 3px solid var(--gold);
  background-color: var(--surface-2);
  background-image:
    linear-gradient(rgba(181, 118, 58, 0.1) 2px, transparent 2px),
    linear-gradient(90deg, rgba(181, 118, 58, 0.1) 2px, transparent 2px);
  background-size: 30px 30px;
}

.hero-circle {
  width: min(500px, 75%);
  aspect-ratio: 1;
  position: absolute;
  top: 70px;
  left: 13%;
  border: 3px dashed var(--gold);
  border-radius: 50%;
}

.hero-circle::before,
.hero-circle::after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 2px dashed rgba(181, 118, 58, 0.4);
  border-radius: 50%;
}

.hero-circle::after {
  inset: 84px;
}

.hero-product {
  margin: 0;
  display: grid;
  place-items: center;
  position: absolute;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.hero-product img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}

.hero-product-a {
  width: min(295px, 47%);
  height: 390px;
  top: 92px;
  left: 14%;
  transform: rotate(-4deg);
}

.hero-product-a img {
  transform: scale(1.36) translate(-2%, -2%);
}

.hero-product-a span {
  padding: 7px 10px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border: 2px solid #fff;
  background: var(--green);
  box-shadow: 2px 2px 0 var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-product-b {
  width: min(225px, 36%);
  height: 300px;
  right: 7%;
  bottom: 50px;
  transform: rotate(5deg);
}

.hero-product-b img {
  transform: scale(1.12) translateY(1%);
}

.vertical-copy {
  margin: 0;
  position: absolute;
  top: 28px;
  right: 19px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.hero-stamp {
  width: 102px;
  height: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 30px;
  left: 6%;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--gold);
  transform: rotate(-7deg);
}

.hero-stamp span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stamp b {
  font-size: 22px;
  line-height: 1.25;
}

.marquee {
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
}

.marquee > div {
  width: 100%;
  padding: 0 22px;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  white-space: nowrap;
}

.marquee span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.catalog-section {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 96px 24px 112px;
}

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

.section-heading h2 {
  margin-top: 17px;
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.filter-row {
  margin-bottom: 30px;
  padding-bottom: 22px;
  display: flex;
  gap: 11px;
  border-bottom: 3px dashed var(--gold);
}

.filter {
  min-height: 46px;
  padding: 0 16px;
  border: 3px solid var(--gold);
  border-radius: 0;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.filter small {
  margin-left: 5px;
  color: var(--muted);
  font: inherit;
}

.filter:hover,
.filter.active {
  border-color: var(--ink);
  background: var(--gold);
  color: var(--ink);
}

.filter.active small {
  color: var(--ink);
}

.filter:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 22px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  --media-scale: 1;
  --media-x: 0%;
  --media-y: 0%;
}

.product-card[data-id="vozolnew"] { --media-scale: 1.5; }
.product-card[data-id="vozolneon"] { --media-scale: 1.47; --media-x: -3%; --media-y: -4%; }
.product-card[data-id="elfliq"] { --media-scale: 1.21; --media-x: 4%; --media-y: -7%; }
.product-card[data-id="vozolckick"] { --media-scale: 1.42; }
.product-card[data-id="ivg"] { --media-scale: 1.2; }
.product-card[data-id="elfbarduke"] { --media-scale: 1.15; --media-y: 2%; }
.product-card[data-id="truesalt"] { --media-scale: 1.07; --media-y: -1%; }
.product-card[data-id="elfbarlushkingpro"] { --media-scale: 1.13; --media-y: 2%; }
.product-card[data-id="dojo"] { --media-scale: 1.3; --media-y: 2%; }

.product-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--surface-2);
  box-shadow: var(--hard-shadow);
  transition: background 0.16s ease, box-shadow 0.16s ease;
}

.product-image-wrap::before,
.product-image-wrap::after {
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  z-index: 4;
  background: var(--gold);
}

.product-image-wrap::before {
  top: 0;
  left: 0;
}

.product-image-wrap::after {
  right: 0;
  bottom: 0;
}

.product-media {
  position: absolute;
  inset: 22px;
  transform:
    translate3d(var(--media-x), var(--media-y), 0)
    scale(var(--media-scale));
  transform-origin: center;
  transition: transform 0.2s ease;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}

.product-card:hover .product-image-wrap {
  background: #ebe8e0;
  box-shadow: 7px 7px 0 var(--ink);
}

.badge,
.stock {
  min-height: 25px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 10px;
  z-index: 5;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 2px 2px 0 var(--ink);
  font-family: "Press Start 2P", monospace;
  font-size: 7px;
  line-height: 1.4;
  text-transform: uppercase;
}

.stock {
  left: 10px;
  border-color: var(--green);
  color: var(--green);
}

.badge {
  right: 10px;
  background: var(--gold);
  color: var(--ink);
}

.badge.new {
  border-color: #fff;
  background: var(--green);
  color: #fff;
}

.product-info {
  min-height: 190px;
  padding: 20px 2px 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.product-tag {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-title {
  margin: 7px 0;
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 800;
  line-height: 1.35;
}

.product-subtitle {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-price {
  max-width: 150px;
  color: var(--gold-bright);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
  text-align: right;
  white-space: normal;
  font-variant-numeric: tabular-nums;
}

.card-button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 0 14px;
  border: 3px solid var(--gold);
  border-radius: 0;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.card-button:hover {
  border-color: var(--ink);
  background: var(--gold);
}

.card-button:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

.no-results {
  min-height: 320px;
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.no-results b {
  font-size: 24px;
}

.no-results span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
}

.editorial {
  width: min(calc(100% - 48px), var(--content));
  min-height: 590px;
  margin: 0 auto 105px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  color: #fff;
}

.editorial-image {
  min-width: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-right: 3px solid var(--gold);
  background-color: var(--surface-2);
  background-image:
    linear-gradient(rgba(181, 118, 58, 0.09) 2px, transparent 2px),
    linear-gradient(90deg, rgba(181, 118, 58, 0.09) 2px, transparent 2px);
  background-size: 26px 26px;
}

.editorial-image::before {
  content: "";
  width: min(440px, 72%);
  aspect-ratio: 1;
  position: absolute;
  border: 3px dashed var(--gold);
  border-radius: 50%;
}

.editorial-image img {
  width: 78%;
  height: 78%;
  z-index: 1;
  object-fit: contain;
  image-rendering: auto;
  transform: scale(1.25) translateY(1%);
}

.editorial-number {
  position: absolute;
  bottom: 26px;
  left: 30px;
  z-index: 2;
  color: rgba(181, 118, 58, 0.55);
  font-family: "Press Start 2P", monospace;
  font-size: 42px;
}

.editorial-copy {
  padding: clamp(56px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label.light {
  color: #dcaa73;
}

.editorial h2 {
  font-size: clamp(36px, 3.8vw, 58px);
  line-height: 1.08;
}

.editorial-copy > p:not(.section-label) {
  max-width: 540px;
  margin: 0;
  color: #c7c2ba;
  font-size: 18px;
  line-height: 1.65;
}

.signature {
  margin-top: 50px;
  color: var(--gold);
  font-family: "Press Start 2P", monospace;
  font-size: 13px;
  line-height: 1.5;
}

.benefits {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 0 24px 105px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.benefits article {
  min-height: 260px;
  padding: 34px;
  position: relative;
  border: 3px solid var(--gold);
  background: #fff;
  box-shadow: var(--hard-shadow);
}

.benefits article > span {
  position: absolute;
  top: 24px;
  right: 25px;
  color: var(--muted);
  font-family: "Press Start 2P", monospace;
  font-size: 8px;
}

.benefits svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  stroke-width: 2.2;
}

.benefits h3 {
  margin: 28px 0 12px;
  font-size: 19px;
  line-height: 1.35;
}

.benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

footer {
  min-height: 190px;
  padding: 48px max(24px, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  gap: 48px;
  border-top: 3px solid var(--gold);
  background: var(--ink);
  color: #fff;
}

.footer-mark .eyebrow {
  color: var(--gold);
}

footer > p {
  max-width: 430px;
  margin: 0 0 0 auto;
  color: #bdb8b0;
  font-size: 15px;
  line-height: 1.6;
}

footer > div {
  display: flex;
  gap: 22px;
}

footer > div a {
  color: #d2cec8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.page-shade {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  background: rgba(16, 16, 20, 0.68);
  transition: opacity 0.18s ease;
}

.page-shade.show {
  pointer-events: auto;
  opacity: 1;
}

.product-modal {
  width: min(1080px, 94vw);
  height: min(740px, 92dvh);
  display: grid;
  grid-template-columns: minmax(380px, 44%) minmax(0, 1fr);
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 90;
  overflow: hidden;
  opacity: 0;
  border: 3px solid var(--gold);
  background: #fff;
  box-shadow: 10px 10px 0 var(--ink);
  transform: translate(-50%, -48%);
  transition: opacity 0.18s ease, transform 0.18s ease;
  --detail-scale: 1;
  --detail-x: 0%;
  --detail-y: 0%;
}

.product-modal.show {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.product-modal[data-product-id="vozolnew"] { --detail-scale: 1.5; }
.product-modal[data-product-id="vozolneon"] { --detail-scale: 1.47; --detail-x: -3%; --detail-y: -4%; }
.product-modal[data-product-id="elfliq"] { --detail-scale: 1.21; --detail-x: 4%; --detail-y: -7%; }
.product-modal[data-product-id="vozolckick"] { --detail-scale: 1.42; }
.product-modal[data-product-id="ivg"] { --detail-scale: 1.2; }
.product-modal[data-product-id="elfbarduke"] { --detail-scale: 1.15; --detail-y: 2%; }
.product-modal[data-product-id="truesalt"] { --detail-scale: 1.07; --detail-y: -1%; }
.product-modal[data-product-id="elfbarlushkingpro"] { --detail-scale: 1.13; --detail-y: 2%; }
.product-modal[data-product-id="dojo"] { --detail-scale: 1.3; --detail-y: 2%; }

.modal-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  border: 3px solid var(--gold);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 24px;
  line-height: 1;
}

.modal-visual {
  min-width: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-right: 3px solid var(--gold);
  background-color: var(--surface-2);
  background-image:
    linear-gradient(rgba(181, 118, 58, 0.08) 2px, transparent 2px),
    linear-gradient(90deg, rgba(181, 118, 58, 0.08) 2px, transparent 2px);
  background-size: 26px 26px;
}

.modal-visual::after {
  content: "";
  width: min(360px, 72%);
  aspect-ratio: 1;
  position: absolute;
  border: 3px dashed var(--gold);
  border-radius: 50%;
}

.modal-visual img {
  position: absolute;
  inset: 32px;
  width: calc(100% - 64px);
  height: calc(100% - 64px);
  z-index: 1;
  object-fit: contain;
  image-rendering: auto;
  transform:
    translate3d(var(--detail-x), var(--detail-y), 0)
    scale(var(--detail-scale));
}

.modal-badge {
  min-height: 28px;
  padding: 6px 9px;
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  border: 2px solid #fff;
  background: var(--green);
  box-shadow: 2px 2px 0 var(--ink);
  color: #fff;
  font-family: "Press Start 2P", monospace;
  font-size: 7px;
  line-height: 1.4;
  text-transform: uppercase;
}

.modal-badge:empty {
  display: none;
}

.modal-content {
  padding: 62px 48px 38px;
  overflow: auto;
}

.modal-tag {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  background: var(--gold);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.modal-content h2 {
  margin: 24px 0 8px;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.12;
}

.modal-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.modal-price {
  margin: 19px 0 27px;
  color: var(--gold-bright);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.4;
}

.choice-heading {
  margin-bottom: 13px;
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 3px dashed var(--gold);
}

.choice-heading span,
.choice-heading b {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.choice-heading b {
  color: var(--muted);
  font-weight: 600;
}

.flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.flavor {
  min-height: 44px;
  padding: 8px 12px;
  border: 2px solid var(--muted);
  border-radius: 0;
  background: var(--surface);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-align: left;
}

.flavor:hover,
.flavor.selected {
  border-color: var(--gold);
  background: var(--gold-wash);
}

.flavor.selected {
  box-shadow: 3px 3px 0 var(--ink);
  color: #7d471a;
}

.modal-bottom {
  margin-top: 27px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
}

.quantity {
  height: 50px;
  display: flex;
  border: 3px solid var(--gold);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.quantity button {
  width: 44px;
  border: 0;
  background: transparent;
  font-size: 22px;
  font-weight: 800;
}

.quantity span {
  width: 34px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
}

.add-button {
  width: 100%;
}

.modal-error {
  margin: 13px 0 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
}

.modal-error.show {
  opacity: 1;
}

.cart-drawer {
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100;
  border-left: 3px solid var(--gold);
  background: #fff;
  box-shadow: -7px 0 0 var(--ink);
  transform: translateX(105%);
  transition: transform 0.24s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-head,
.checkout-head {
  min-height: 88px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 3px 0 var(--ink);
}

.drawer-head > div > span,
.checkout-head span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-head h2,
.checkout-head h2 {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.25;
}

.drawer-head h2 small {
  color: var(--muted);
  font-size: 13px;
}

.drawer-head button,
.checkout-head button {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 3px solid var(--gold);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 24px;
  line-height: 1;
}

.delivery-progress {
  padding: 18px 28px;
  border-bottom: 3px dashed var(--gold);
  background: var(--surface-2);
}

.delivery-progress p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.delivery-progress > div {
  height: 8px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #fff;
}

.delivery-progress span {
  height: 100%;
  display: block;
  background: var(--gold);
  transition: width 0.2s ease;
}

.cart-list {
  flex: 1;
  overflow: auto;
  padding: 8px 28px;
}

.cart-empty {
  min-height: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cart-empty svg {
  width: 44px;
  color: var(--gold);
}

.cart-empty h3 {
  margin: 18px 0 6px;
  font-size: 21px;
}

.cart-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.cart-item {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 15px;
  border-bottom: 3px dashed var(--gold);
}

.cart-item-visual {
  width: 92px;
  height: 112px;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--surface-2);
  box-shadow: 3px 3px 0 var(--ink);
}

.cart-item-visual img {
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
  image-rendering: auto;
}

.cart-item-visual[data-id="vozolnew"] img { transform: scale(1.5); }
.cart-item-visual[data-id="vozolneon"] img { transform: translate(-3%, -4%) scale(1.47); }
.cart-item-visual[data-id="elfliq"] img { transform: translate(4%, -7%) scale(1.21); }
.cart-item-visual[data-id="vozolckick"] img { transform: scale(1.42); }
.cart-item-visual[data-id="ivg"] img { transform: scale(1.2); }
.cart-item-visual[data-id="elfbarduke"] img { transform: translateY(2%) scale(1.15); }
.cart-item-visual[data-id="truesalt"] img { transform: translateY(-1%) scale(1.07); }
.cart-item-visual[data-id="elfbarlushkingpro"] img { transform: translateY(2%) scale(1.13); }
.cart-item-visual[data-id="dojo"] img { transform: translateY(2%) scale(1.3); }

.cart-item-info > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-item h3 {
  margin: 5px 0;
  font-size: 15px;
  line-height: 1.35;
}

.cart-item p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.cart-quantity {
  width: max-content;
  display: flex;
  border: 2px solid var(--gold);
  box-shadow: 2px 2px 0 var(--ink);
}

.cart-quantity button {
  width: 36px;
  height: 36px;
  border: 0;
  background: #fff;
  font-size: 18px;
  font-weight: 800;
}

.cart-quantity span {
  width: 30px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.cart-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.cart-item-price b {
  color: var(--gold-bright);
  font-size: 16px;
  white-space: nowrap;
}

.cart-item-price button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
}

.cart-summary {
  padding: 23px 28px 26px;
  border-top: 3px solid var(--gold);
  background: #fff;
  box-shadow: 0 -3px 0 var(--ink);
}

.cart-summary > div {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.cart-summary .summary-total {
  margin: 18px 0;
  font-size: 20px;
  font-weight: 900;
}

.cart-summary .checkout-button {
  width: 100%;
}

.cart-summary > small {
  margin-top: 12px;
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.checkout-modal {
  padding: 24px;
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 120;
  overflow: auto;
  background: rgba(16, 16, 20, 0.72);
}

.checkout-card {
  width: min(1000px, 100%);
  max-height: 94dvh;
  overflow: auto;
  border: 3px solid var(--gold);
  background: #fff;
  box-shadow: 10px 10px 0 var(--ink);
}

.checkout-steps {
  min-height: 56px;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 3px dashed var(--gold);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-steps b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
}

.checkout-steps i {
  height: 2px;
  flex: 1;
  background: var(--gold);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
}

.checkout-layout form {
  padding: 32px;
}

.checkout-layout label {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-layout input,
.checkout-layout select {
  height: 48px;
  padding: 0 13px;
  border: 3px solid var(--gold);
  border-radius: 0;
  outline: 0;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-layout input:focus,
.checkout-layout select:focus {
  border-color: var(--gold-bright);
  background: #fffdf9;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.checkout-layout .age-check {
  flex-direction: row;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.age-check input {
  width: 20px;
  height: 20px;
  margin: 1px 4px 0 0;
  flex: 0 0 auto;
  box-shadow: none;
}

.checkout-layout form > .checkout-button {
  width: 100%;
  margin-top: 8px;
}

.checkout-order {
  padding: 34px;
  border-left: 3px solid var(--gold);
  background: var(--surface-2);
}

.checkout-order h3 {
  margin: 0 0 22px;
  font-size: 21px;
}

.checkout-line,
.checkout-order > div:not(#checkoutItems) {
  margin: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.checkout-line span {
  max-width: 230px;
  line-height: 1.45;
}

.checkout-order hr {
  margin: 22px 0;
  border: 0;
  border-top: 3px dashed var(--gold);
}

.checkout-order .checkout-total {
  font-size: 19px;
  font-weight: 900;
}

.checkout-order > p {
  margin-top: 38px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.success-card {
  width: min(560px, 94vw);
  padding: 68px;
  border: 3px solid var(--gold);
  background: #fff;
  box-shadow: 10px 10px 0 var(--ink);
  text-align: center;
}

.success-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 23px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--green);
  box-shadow: 4px 4px 0 var(--ink);
  color: #fff;
  font-size: 27px;
  font-weight: 900;
}

.success-card > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-card h2 {
  margin: 9px 0;
  font-size: 36px;
  line-height: 1.2;
}

.success-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.success-card .main-button {
  border: 3px solid var(--ink);
}

.toast {
  padding: 14px 19px;
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 200;
  opacity: 0;
  border: 3px solid var(--gold);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transform: translate(-50%, 80px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

@media (max-width: 1280px) {
  :root {
    --content: 1160px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  }

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

  .editorial-copy {
    padding: 58px;
  }
}

@media (max-width: 900px) {
  .topline {
    justify-content: flex-start;
  }

  .topline-note {
    position: static;
    margin-left: auto;
  }

  .hero {
    width: 100%;
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .hero-copy {
    padding: 72px 7vw 64px;
  }

  .hero-products {
    height: 470px;
    border-top: 3px solid var(--gold);
    border-left: 0;
  }

  .hero-product-a {
    width: 255px;
    height: 340px;
  }

  .hero-product-b {
    width: 200px;
    height: 260px;
  }

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

  .section-heading > p {
    max-width: 620px;
  }

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

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

  .editorial-image {
    height: 460px;
    border-right: 0;
    border-bottom: 3px solid var(--gold);
  }

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

  .benefits article {
    min-height: 0;
  }

  footer {
    flex-wrap: wrap;
  }

  footer > p {
    width: 100%;
    max-width: 560px;
    margin: 0;
    order: 3;
  }

  footer > div {
    margin-left: auto;
  }

  .product-modal {
    width: min(760px, 94vw);
    grid-template-columns: 42% minmax(0, 1fr);
  }

  .modal-content {
    padding: 60px 30px 34px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-order {
    order: -1;
    border-bottom: 3px solid var(--gold);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  body::before {
    display: none;
  }

  .topline {
    min-height: 34px;
    justify-content: center;
    padding: 8px 14px;
    font-size: 10px;
    text-align: center;
  }

  .topline-note,
  .region-button {
    display: none;
  }

  .site-header {
    height: 72px;
    padding: 0 15px;
  }

  .wordmark .eyebrow {
    font-size: 6px;
  }

  .wordmark strong {
    font-size: 15px;
    letter-spacing: 3px;
  }

  .header-actions {
    gap: 8px;
  }

  .round-button,
  .bag-button {
    min-height: 44px;
  }

  .bag-button {
    width: 46px;
    padding: 0;
    position: relative;
  }

  .bag-button > span {
    display: none;
  }

  .bag-button b {
    min-width: 20px;
    height: 20px;
    position: absolute;
    top: -7px;
    right: -7px;
  }

  .search-panel {
    padding: 0 12px;
  }

  .search-panel label {
    width: calc(100% - 56px);
  }

  .hero-copy {
    padding: 54px 18px 49px;
  }

  .section-label {
    font-size: 8px;
  }

  .hero h1 {
    margin-top: 25px;
    font-size: clamp(38px, 12vw, 56px);
    line-height: 1.05;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-facts {
    margin-top: 48px;
    gap: 10px;
  }

  .hero-facts > div {
    padding-left: 9px;
  }

  .hero-facts b {
    font-size: 20px;
  }

  .hero-facts span {
    font-size: 9px;
  }

  .hero-products {
    height: min(110vw, 420px);
  }

  .hero-circle {
    top: 42px;
    left: 9%;
    width: 76%;
  }

  .hero-product-a {
    width: 46%;
    height: 71%;
    top: 55px;
    left: 11%;
  }

  .hero-product-b {
    width: 35%;
    height: 53%;
    right: 8%;
    bottom: 34px;
  }

  .hero-stamp {
    width: 76px;
    height: 76px;
    bottom: 20px;
    left: 4%;
  }

  .hero-stamp b {
    font-size: 16px;
  }

  .hero-stamp span,
  .vertical-copy {
    font-size: 7px;
  }

  .marquee > div {
    width: max-content;
    justify-content: flex-start;
    animation: marquee-scroll 18s linear infinite;
  }

  .marquee span {
    font-size: 10px;
  }

  @keyframes marquee-scroll {
    to {
      transform: translateX(-50%);
    }
  }

  .catalog-section {
    padding: 68px 15px 82px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10vw, 47px);
  }

  .section-heading > p {
    font-size: 16px;
  }

  .filter-row {
    margin-right: -15px;
    padding-right: 15px;
    padding-bottom: 16px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .filter {
    min-height: 46px;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-image-wrap {
    aspect-ratio: 1.08 / 1;
  }

  .product-media {
    inset: 14px;
  }

  .product-info {
    min-height: 0;
  }

  .product-title {
    font-size: 18px;
  }

  .product-subtitle {
    font-size: 13px;
  }

  .product-price {
    font-size: 18px;
  }

  .card-button {
    margin-top: 18px;
  }

  .editorial {
    width: calc(100% - 30px);
    margin-bottom: 80px;
  }

  .editorial-image {
    height: min(96vw, 390px);
  }

  .editorial-copy {
    padding: 46px 22px 52px;
  }

  .editorial h2 {
    font-size: 36px;
  }

  .editorial-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .signature {
    margin-top: 38px;
    font-size: 11px;
  }

  .benefits {
    padding: 0 15px 80px;
  }

  .benefits article {
    padding: 28px 24px;
  }

  footer {
    padding: 45px 20px calc(45px + env(safe-area-inset-bottom));
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  footer > div {
    margin: 0;
    flex-wrap: wrap;
  }

  footer > p {
    order: 0;
  }

  .product-modal {
    width: 100%;
    height: 100dvh;
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(270px, 38dvh) minmax(0, 1fr);
    inset: 0;
    overflow: auto;
    border: 0;
    box-shadow: none;
    transform: translateY(20px);
  }

  .product-modal.show {
    transform: translateY(0);
  }

  .modal-close {
    top: max(14px, env(safe-area-inset-top));
    right: 14px;
  }

  .modal-visual {
    min-height: 270px;
    border-right: 0;
    border-bottom: 3px solid var(--gold);
  }

  .modal-visual img {
    inset: 23px;
    width: calc(100% - 46px);
    height: calc(100% - 46px);
  }

  .product-modal[data-product-id="vozolnew"] { --detail-scale: 1.28; }
  .product-modal[data-product-id="vozolneon"] { --detail-scale: 1.26; }
  .product-modal[data-product-id="elfliq"] { --detail-scale: 1.06; }
  .product-modal[data-product-id="vozolckick"] { --detail-scale: 1.22; }
  .product-modal[data-product-id="ivg"] { --detail-scale: 1.05; }
  .product-modal[data-product-id="elfbarduke"] { --detail-scale: 1.01; }
  .product-modal[data-product-id="truesalt"] { --detail-scale: 0.96; }
  .product-modal[data-product-id="elfbarlushkingpro"] { --detail-scale: 0.99; }
  .product-modal[data-product-id="dojo"] { --detail-scale: 1.12; }

  .modal-content {
    padding: 38px 18px calc(30px + env(safe-area-inset-bottom));
  }

  .modal-content h2 {
    font-size: 29px;
  }

  .flavor {
    font-size: 14px;
  }

  .modal-bottom {
    margin-right: -4px;
    margin-left: -4px;
    padding: 12px 4px;
    position: sticky;
    bottom: 0;
    z-index: 2;
    background: #fff;
  }

  .cart-drawer {
    width: 100%;
    min-height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom);
    border-left: 0;
  }

  .drawer-head,
  .checkout-head {
    padding-right: 18px;
    padding-left: 18px;
  }

  .delivery-progress,
  .cart-summary {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cart-list {
    padding-right: 18px;
    padding-left: 18px;
  }

  .checkout-modal {
    padding: 0;
    place-items: start stretch;
    align-content: start;
  }

  .checkout-card {
    width: 100%;
    min-height: 100dvh;
    max-height: none;
    border: 0;
    box-shadow: none;
  }

  .checkout-steps {
    padding-right: 18px;
    padding-left: 18px;
    overflow-x: auto;
  }

  .checkout-layout form,
  .checkout-order {
    padding: 25px 18px;
  }

  .success-card {
    width: 100%;
    min-height: 100dvh;
    padding: 45px 22px calc(45px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
    box-shadow: none;
  }

  .toast {
    width: calc(100% - 32px);
    text-align: center;
  }
}

@media (max-width: 430px) {
  .wordmark .eyebrow {
    display: none;
  }

  .wordmark strong {
    font-size: 14px;
  }

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

  .hero-facts b {
    font-size: 17px;
  }

  .hero-facts span {
    font-size: 8px;
    line-height: 1.4;
  }

  .product-top {
    grid-template-columns: 1fr;
  }

  .product-price {
    max-width: none;
    margin-top: 5px;
    text-align: left;
  }

  .modal-bottom {
    grid-template-columns: 1fr;
  }

  .quantity {
    width: max-content;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 78px minmax(0, 1fr) auto;
    gap: 11px;
  }

  .cart-item-visual {
    width: 78px;
    height: 102px;
  }

  .checkout-steps i {
    min-width: 16px;
  }
}

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

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