:root {
  color-scheme: light;
  --page: #d7ccd2;
  --panel: #f0e4ea;
  --ink: #101116;
  --muted: #665c62;
  --tile: #fff7fa;
  --line: #cfbdc6;
  --hot: #ff4f93;
  --lime: #cfff4d;
  --cyan: #66d8d3;
  --plum: #4b233d;
  --green: #63be52;
}

* { box-sizing: border-box; }

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

section[id] {
  scroll-margin-top: 148px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--panel);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body.cart-open {
  overflow: hidden;
}

button,
input,
select,
a {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

a { text-decoration: none; }
img { display: block; max-width: 100%; }

.age-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 9px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.page-shell {
  width: 100%;
  margin: 34px 0 0;
  background: var(--panel);
  overflow: hidden;
}

.stripe-stack {
  display: grid;
  gap: 9px;
  padding-bottom: 28px;
  border-bottom: 3px solid var(--ink);
}

.stripe-stack span {
  display: block;
  height: 17px;
  background: linear-gradient(90deg, var(--ink), var(--plum), var(--hot));
  border-bottom: 5px solid #fff;
}

.stripe-stack span:nth-child(2) { height: 12px; }
.stripe-stack span:nth-child(4) { height: 10px; }

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 34px 40px;
  background: rgba(240, 228, 234, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 17, 22, 0.12);
  box-shadow: 0 14px 32px rgba(16, 17, 22, 0.08);
}

.site-header,
.hero,
.editorial-strip,
.collections,
.drops,
.feature-story,
.catalog,
.flavour-guide,
.service-band,
.reviews-band,
.faq-news,
.site-footer {
  padding-left: clamp(28px, 6vw, 92px);
  padding-right: clamp(28px, 6vw, 92px);
}

.brand,
.primary-nav,
.header-actions,
.cart-button {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  font-size: 18px;
  font-weight: 900;
}

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--ink);
}

.primary-nav {
  gap: 30px;
  font-size: 13px;
  font-weight: 800;
}

.primary-nav a {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav .active {
  border-color: var(--ink);
}

.header-actions {
  justify-self: end;
  gap: 14px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--tile);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.menu-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.text-button,
.cart-button {
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.cart-button {
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease;
}

.cart-button.bump {
  background: var(--lime);
  transform: translateY(-1px) scale(1.04);
}

.cart-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button strong {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
  gap: 34px;
  min-height: auto;
  padding-top: 104px;
  padding-bottom: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(62px, 8vw, 136px);
  line-height: 0.9;
  font-weight: 900;
}

.intro {
  max-width: 820px;
  margin-bottom: 34px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.secondary-button,
.checkout-button,
.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 900;
}

.primary-button,
.checkout-button,
.add-button {
  background: linear-gradient(135deg, var(--ink), var(--plum));
  color: #fff;
}

.secondary-button {
  background: var(--lime);
}

.hero-stage {
  position: relative;
  min-height: 520px;
  padding: 24px;
  border: 1px solid rgba(16, 17, 22, 0.16);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 79, 147, 0.32), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(207, 255, 77, 0.34), transparent 32%),
    linear-gradient(145deg, #fff7fa, #eadce4 70%, #f8edf3);
  isolation: isolate;
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  top: 18%;
  right: 4%;
  z-index: 0;
  width: 48%;
  height: 58%;
  background: linear-gradient(135deg, rgba(255, 79, 147, 0.22), rgba(207, 255, 77, 0.34));
  opacity: 0.9;
  border: 1px solid rgba(16, 17, 22, 0.12);
}

.orbit-ring {
  position: absolute;
  inset: 8% 0 7%;
  border: 2px solid rgba(16, 17, 22, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px rgba(255, 79, 147, 0.08);
  transform: rotate(-18deg);
}

.hero-product {
  position: absolute;
  width: 48%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.42));
  mix-blend-mode: normal;
  transition: transform 120ms linear;
}

.hero-product-one {
  left: 4%;
  top: 5%;
  z-index: 3;
  mix-blend-mode: normal;
}

.hero-product-two {
  right: 0;
  top: 20%;
  width: 54%;
  z-index: 2;
}

.hero-product-three {
  left: 23%;
  bottom: 0;
  width: 40%;
  z-index: 4;
}

.hero-device-card {
  position: absolute;
  display: grid;
  align-content: end;
  gap: 6px;
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(16, 17, 22, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 48px rgba(16, 17, 22, 0.12);
}

.hero-device-card span {
  color: var(--hot);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-device-card strong {
  font-size: 28px;
  line-height: 1;
}

.hero-device-card small {
  color: var(--muted);
  font-weight: 800;
}

.hero-device-card.hero-product-two {
  right: 7%;
  top: 17%;
  width: 44%;
}

.hero-device-card.hero-product-three {
  left: auto;
  right: 18%;
  bottom: 12%;
  width: 36%;
  min-height: 160px;
  background: rgba(207, 255, 77, 0.72);
}

.hero-stat {
  position: absolute;
  right: 8%;
  bottom: 8%;
  z-index: 5;
  display: grid;
  gap: 4px;
  min-width: 160px;
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}

.hero-stat span,
.hero-stat strong {
  font-weight: 900;
}

.hero-stat span {
  color: var(--lime);
  font-size: 11px;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--lime);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: slide 26s linear infinite;
}

.marquee span {
  padding: 18px 38px;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

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

.editorial-strip,
.collections,
.drops,
.feature-story,
.catalog,
.flavour-guide,
.service-band,
.reviews-band,
.faq-news {
  padding-top: 82px;
  padding-bottom: 82px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 44px 0 0;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 247, 250, 0.88);
}

.hero-metrics dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
}

.editorial-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: #fff7fa;
  border-top: 1px solid rgba(16, 17, 22, 0.14);
  border-bottom: 1px solid rgba(16, 17, 22, 0.14);
}

.editorial-strip article {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 28px;
  background: #fff7fa;
  border-right: 1px solid rgba(16, 17, 22, 0.18);
}

.editorial-strip article:last-child {
  border-right: 0;
}

.editorial-strip span,
.collection-card span,
.feature-product span {
  color: var(--hot);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-strip strong {
  font-size: 24px;
}

.editorial-strip p,
.section-copy,
.collection-card p,
.feature-copy p,
.feature-product div,
.flavour-grid p,
.reviews-band p,
.faq p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 82px);
  line-height: 0.95;
  font-weight: 900;
}

.section-copy {
  max-width: 430px;
  margin: 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.collection-card {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 79, 147, 0.2), rgba(207, 255, 77, 0.18)),
    #fff7fa;
  overflow: hidden;
  position: relative;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 92px;
  height: 92px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.collection-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 160px;
  height: 160px;
  background: var(--hot);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(20deg);
}

.collection-card strong {
  max-width: 300px;
  margin: 12px 0;
  font-size: clamp(30px, 3vw, 52px);
  line-height: 0.95;
  position: relative;
  z-index: 1;
}

.collection-card p,
.collection-card span {
  position: relative;
  z-index: 1;
}

.collection-card.bright {
  background: var(--lime);
}

.collection-card.dark-card {
  background: #15161c;
  color: #fff;
}

.collection-card.dark-card p {
  color: #cfc4cb;
}

.drop-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: 285px;
  gap: 16px;
}

.drop-card {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  min-height: 0;
  padding: 24px;
  background: #fff7fa;
}

.drop-card.tall {
  grid-row: span 2;
}

.drop-card.dark {
  background: #15161c;
  color: #fff;
}

.drop-card.soft {
  background: #fff7fa;
  color: var(--ink);
}

.drop-card img {
  position: absolute;
  inset: 8% 7% 14%;
  width: 86%;
  height: 76%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.drop-card.dark img {
  mix-blend-mode: normal;
}

.drop-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
}

.drop-card span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.drop-card strong {
  font-size: clamp(22px, 2.8vw, 42px);
  line-height: 1;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  gap: 16px;
  align-items: stretch;
  background: #f3e5ec;
  color: var(--ink);
  border-top: 1px solid rgba(16, 17, 22, 0.12);
  border-bottom: 1px solid rgba(16, 17, 22, 0.12);
}

.feature-copy {
  display: grid;
  align-content: center;
  padding: 42px;
  border: 1px solid rgba(16, 17, 22, 0.12);
  background: #fff7fa;
}

.feature-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 90px);
  line-height: 0.95;
}

.feature-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-list span {
  padding: 10px 14px;
  border: 1px solid rgba(16, 17, 22, 0.18);
  border-radius: 999px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
}

.feature-product {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 620px;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 79, 147, 0.45), transparent 36%),
    #fff7fa;
  color: var(--ink);
}

.feature-product img {
  align-self: center;
  justify-self: center;
  width: min(78%, 420px);
  max-height: 470px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 34px 32px rgba(0, 0, 0, 0.2));
}

.feature-product div {
  display: grid;
  gap: 7px;
  color: var(--ink);
}

.feature-product strong {
  font-size: 28px;
}

.catalog-heading {
  align-items: end;
  margin-bottom: 26px;
}

.catalog {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    #f3e5ec;
  border-top: 1px solid rgba(16, 17, 22, 0.08);
}

.catalog .section-heading h2 {
  font-size: clamp(46px, 6vw, 92px);
}

.result-count {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.result-count strong {
  color: var(--ink);
}

.search-box {
  display: grid;
  width: min(420px, 100%);
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 79, 147, 0.22);
  outline: 0;
  font-size: 16px;
  font-weight: 800;
  text-transform: none;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 34px;
  padding: 14px;
  border: 1px solid rgba(16, 17, 22, 0.1);
  background: rgba(255, 247, 250, 0.72);
}

.filter-pill,
.sort-pill {
  min-height: 50px;
  padding: 9px 16px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.filter-pill.active {
  background: linear-gradient(135deg, var(--ink), var(--hot));
  color: #fff;
}

.filter-pill span,
.sort-pill span {
  display: grid;
  gap: 2px;
  font-size: 14px;
  font-weight: 900;
}

.filter-pill small,
.sort-pill small {
  color: inherit;
  opacity: 0.62;
  font-size: 9px;
  font-weight: 900;
}

.sort-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  min-width: 172px;
  justify-content: space-between;
}

.sort-pill select {
  border: 0;
  background: transparent;
  outline: 0;
  font-weight: 900;
}

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

.product-card {
  min-width: 0;
  padding: 0;
}

.image-tile {
  position: relative;
  display: grid;
  height: 330px;
  place-items: center;
  background: #fff9fc;
  border: 1px solid rgba(16, 17, 22, 0.08);
  overflow: hidden;
}

.image-tile img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 180ms ease;
}

.product-card:hover .image-tile img {
  transform: translateY(-5px) scale(1.02);
}

.badge,
.swatch,
.more {
  position: absolute;
  z-index: 1;
}

.badge {
  left: 16px;
  top: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--lime);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.swatch {
  top: 18px;
  right: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.more {
  top: 18px;
  right: 45px;
  font-size: 11px;
  font-weight: 900;
}

.yellow { background: #e6d35b; }
.purple { background: #8e7bb1; }
.blue { background: #7fb6d8; }
.green { background: #63be52; }
.black { background: #222832; }
.pink { background: #ef8cac; }
.red { background: #e7443f; }
.orange { background: #ee9b32; }
.lime { background: var(--lime); }
.pale { background: #e9d5d0; }

.product-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding-top: 16px;
}

.product-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.12;
}

.product-card p {
  margin: 0 0 13px;
  color: #303030;
  font-size: 13px;
  font-weight: 700;
}

.product-card strong {
  font-size: 14px;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
}

.product-specs span {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 79, 147, 0.12);
  color: var(--plum);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.flavour-guide {
  padding-top: 0;
}

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

.flavour-grid article {
  min-height: 210px;
  padding: 24px;
  background: #fff7fa;
  border: 1px solid rgba(16, 17, 22, 0.12);
}

.dot {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(16, 17, 22, 0.06);
}

.flavour-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 23px;
}

.add-button {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 50%;
  font-size: 22px;
  transition: transform 160ms ease, background 160ms ease;
}

.add-button.adding {
  background: var(--hot);
  transform: scale(0.92);
}

.fly-image {
  position: fixed;
  z-index: 120;
  width: 72px;
  height: 72px;
  object-fit: contain;
  pointer-events: none;
  border-radius: 10px;
  background: #fff7fa;
  box-shadow: 0 18px 28px rgba(16, 17, 22, 0.22);
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 650ms ease;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 2px solid var(--ink);
}

.reviews-band {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 16px;
  align-items: stretch;
  background: var(--lime);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.reviews-band h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 74px);
  line-height: 0.96;
}

.reviews-band > div,
.reviews-band article {
  padding: 30px;
  background: rgba(255, 255, 255, 0.36);
}

.reviews-band article p {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.08;
}

.reviews-band article strong {
  font-size: 13px;
  text-transform: uppercase;
}

.faq-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq,
.newsletter {
  padding: 34px;
  background: #fff7fa;
  border: 1px solid rgba(16, 17, 22, 0.12);
}

.faq details {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
}

.newsletter {
  display: grid;
  align-content: center;
}

.newsletter h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4vw, 74px);
  line-height: 0.96;
}

.newsletter label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter input {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #fff;
  outline: 0;
  font-size: 16px;
  font-weight: 800;
  text-transform: none;
}

.service-band article {
  padding: 28px;
  background: #fff7fa;
}

.service-band span {
  display: inline-block;
  margin-bottom: 42px;
  font-size: 12px;
  font-weight: 900;
}

.service-band h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.service-band p,
.site-footer p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 46px 40px 56px;
  border-top: 1px solid var(--line);
  background: #101116;
  color: #fff;
}

.site-footer strong {
  font-size: 22px;
  font-weight: 900;
}

.site-footer p {
  max-width: 680px;
  margin: 10px 0 0;
  color: #d7ccd2;
  font-size: 12px;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  min-width: 160px;
}

.site-footer a {
  font-size: 13px;
  font-weight: 900;
}

.footer-logo {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  justify-items: end;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 180ms ease;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(16, 17, 22, 0);
  pointer-events: none;
  transition: background 180ms ease;
}

.checkout-modal.open {
  background: rgba(16, 17, 22, 0.42);
  pointer-events: auto;
}

.checkout-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1040px, 100%);
  max-height: min(860px, calc(100vh - 52px));
  background: #fff7fa;
  transform: translateY(22px) scale(0.98);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  overflow: hidden;
}

.checkout-modal.open .checkout-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.checkout-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.checkout-panel header div {
  display: grid;
  gap: 4px;
}

.checkout-panel header span {
  color: var(--hot);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-panel header strong {
  font-size: 28px;
}

.checkout-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  overflow: auto;
  padding: 24px;
}

.checkout-form section {
  grid-column: 1;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(16, 17, 22, 0.12);
  background: #fff;
}

.checkout-form section + section {
  margin-top: 16px;
}

.checkout-form h3,
.checkout-summary h3 {
  margin: 0;
  font-size: 18px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-form input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff7fa;
  outline: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-transform: none;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-summary {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
  position: sticky;
  top: 0;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--ink);
  background: #f2e3eb;
}

.checkout-line {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-line img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  mix-blend-mode: multiply;
}

.checkout-line strong {
  display: block;
  font-size: 13px;
}

.checkout-line span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.checkout-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.cart-drawer.open {
  background: rgba(0, 0, 0, 0.34);
  pointer-events: auto;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(480px, 100%);
  min-height: 100vh;
  background: #f7edf2;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-panel header,
.cart-panel footer {
  padding: 24px;
}

.cart-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-panel header div {
  display: grid;
  gap: 4px;
}

.cart-panel header span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-panel header strong {
  font-size: 28px;
}

.icon-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  font-weight: 900;
}

.cart-items {
  overflow: auto;
  padding: 18px 24px;
}

.empty-cart {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: #fff7fa;
  mix-blend-mode: multiply;
}

.cart-item h4 {
  margin: 0 0 5px;
  font-size: 15px;
}

.cart-item p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.cart-controls,
.qty-controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  font-weight: 900;
}

.cart-controls {
  justify-content: space-between;
}

.cart-price {
  font-weight: 900;
}

.remove-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
}

.cart-panel footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 800;
}

.summary-row.total {
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 21px;
}

.checkout-button {
  width: 100%;
  margin-top: 12px;
  border-radius: 6px;
}

.cart-panel footer p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 90;
  padding: 14px 18px;
  border-radius: 6px;
  background: #101116;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
  box-shadow: 0 18px 34px rgba(16, 17, 22, 0.24);
}

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

.reveal {
  opacity: 1;
  transform: none;
  transition: transform 220ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .page-shell {
    width: 100%;
    margin-top: 34px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 22px;
    top: 34px;
  }

  .primary-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-actions {
    justify-self: start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .editorial-strip,
  .collection-grid,
  .feature-story,
  .flavour-grid,
  .reviews-band,
  .faq-news,
  .checkout-form {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 520px;
  }

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

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

  .feature-product {
    min-height: 500px;
  }

  .checkout-summary {
    grid-column: auto;
    grid-row: auto;
    position: static;
  }

  .checkout-form section {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .site-header,
  .hero,
  .editorial-strip,
  .collections,
  .drops,
  .feature-story,
  .catalog,
  .flavour-guide,
  .service-band,
  .reviews-band,
  .faq-news,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
    row-gap: 14px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .brand {
    min-width: 0;
    font-size: 15px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    display: none;
    gap: 14px;
    width: 100%;
    padding: 10px 0 2px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(16, 17, 22, 0.12);
  }

  .site-header.menu-open .primary-nav {
    display: flex;
  }

  .header-actions {
    width: auto;
    justify-self: end;
    grid-column: 2;
    gap: 10px;
  }

  .menu-button {
    display: inline-flex;
  }

  .text-button {
    display: none;
  }

  .cart-button {
    margin-left: 0;
    padding: 9px 11px;
  }

  .stripe-stack {
    gap: 6px;
    padding-bottom: 18px;
  }

  .stripe-stack span {
    height: 12px;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 60px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    padding: 14px;
  }

  .hero-stage {
    min-height: 380px;
  }

  .hero-product-one { left: 0; width: 52%; }
  .hero-product-two { right: -8%; width: 62%; }
  .hero-product-three { left: 20%; width: 45%; }

  .section-heading,
  .catalog-heading,
  .site-footer {
    display: grid;
  }

  .collections,
  .drops,
  .feature-story,
  .catalog,
  .flavour-guide,
  .service-band,
  .reviews-band,
  .faq-news {
    padding-top: 58px;
    padding-bottom: 58px;
  }

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

  .collection-card {
    min-height: 280px;
  }

  .feature-copy,
  .feature-product,
  .faq,
  .newsletter,
  .reviews-band > div,
  .reviews-band article {
    padding: 22px;
  }

  .feature-product {
    min-height: 390px;
  }

  .feature-product img {
    width: 82%;
    max-height: 280px;
  }

  .flavour-grid article {
    min-height: 170px;
  }

  .dot {
    margin-bottom: 24px;
  }

  .drop-card,
  .drop-card.tall {
    grid-row: auto;
    min-height: 320px;
  }

  .sort-pill {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .filter-pill {
    flex: 1 1 160px;
  }

  .image-tile {
    height: 320px;
  }

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

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

  .checkout-modal {
    padding: 10px;
  }

  .checkout-panel {
    max-height: calc(100vh - 20px);
  }

  .checkout-panel header {
    padding: 18px;
  }

  .checkout-form {
    padding: 18px;
  }

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