:root {
  --ink: #111111;
  --ink-soft: #3d3d3d;
  --muted: #77736d;
  --paper: #ffffff;
  --surface: #f5f5f2;
  --surface-2: #ece9e1;
  --champagne: #efe3cf;
  --storm: #22323a;
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(17, 17, 17, 0.24);
  --dark: #161616;
  --olive: #5b6548;
  --red: #c74635;
  --gold: #b7833b;
  --blue: #2d5f7a;
  --shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
  --shadow-soft: 0 12px 28px rgba(17, 17, 17, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

h1,
h2,
h3,
p,
a,
button,
span {
  overflow-wrap: anywhere;
}

.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;
}

@keyframes heroDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.08) translate3d(-1.4%, 0, 0);
  }
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
}

@keyframes marqueeMove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes productCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

[data-reveal].is-visible {
  animation: revealUp 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 18px;
  color: var(--paper);
  background: var(--dark);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 0 38px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.site-header--solid {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  overflow-wrap: normal;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  overflow-wrap: normal;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-footer a:hover,
.contact-list a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
}

.gift-link {
  color: var(--red);
  font-weight: 950;
}

.cart-nav-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--dark);
  border-radius: 999px;
  color: var(--paper);
  background: var(--dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-nav-button span {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--dark);
  background: var(--paper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.fashion-hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
  padding: clamp(32px, 6vw, 72px);
}

.fashion-hero__media {
  position: absolute;
  inset: 0;
}

.fashion-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.68), rgba(17, 17, 17, 0.18) 52%, rgba(17, 17, 17, 0.34)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.42));
}

.fashion-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite;
  transform-origin: center;
}

.fashion-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 420px));
  color: var(--paper);
}

.hero-vertical-label {
  position: absolute;
  left: 28px;
  bottom: 34px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.fashion-hero h1,
.page-hero h1,
.brand-story h1,
.section-heading h2,
.lookbook-band h2,
.newsletter-band h2,
.contact-copy h2,
.admin-topbar h1,
.admin-panel h2 {
  margin: 0;
  line-height: 1.02;
  font-weight: 920;
}

.fashion-hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  text-transform: uppercase;
  letter-spacing: 0;
}

.fashion-hero p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.fashion-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.fashion-hero .button-primary {
  color: var(--ink);
  background: var(--paper);
}

.fashion-hero .button-primary:hover {
  color: var(--paper);
  background: var(--olive);
}

.fashion-hero .button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.hero-micro-grid {
  width: min(660px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-micro-grid span {
  display: grid;
  align-content: center;
  min-height: 82px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(17, 17, 17, 0.34);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-micro-grid strong {
  display: block;
  color: var(--paper);
  font-size: 15px;
  font-weight: 950;
}

.hero-gift-card {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 54px);
  z-index: 2;
  width: min(360px, calc(100% - 36px));
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 227, 207, 0.94)),
    var(--paper);
  box-shadow: var(--shadow);
  transition: transform 170ms ease, background 170ms ease;
}

.hero-gift-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  pointer-events: none;
}

.hero-gift-card:hover {
  transform: translateY(-4px);
  background: var(--paper);
}

.hero-gift-card span,
.hero-gift-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-gift-card strong {
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  color: var(--paper);
  background: var(--storm);
}

.premium-marquee div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 38px;
  min-height: 58px;
  padding-inline: 22px;
  animation: marqueeMove 28s linear infinite;
}

.premium-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 920;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.premium-marquee span::after {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary,
.button-dark {
  color: var(--paper);
  background: var(--dark);
}

.button-primary:hover,
.button-dark:hover {
  background: var(--olive);
}

.button-secondary,
.button-secondary-dark {
  color: var(--ink);
  border-color: var(--line-strong);
  background: var(--paper);
}

.button-secondary:hover,
.button-secondary-dark:hover {
  border-color: var(--dark);
}

.store-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.store-strip div {
  position: relative;
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 20px 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(34, 50, 58, 0.92)),
    var(--dark);
}

.store-strip div::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 120px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(-12deg);
}

.store-strip strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.store-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 760;
  text-transform: uppercase;
}

.atelier-proof {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: stretch;
  margin: 0 auto;
  padding: 92px 0 34px;
}

.atelier-proof__copy {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: clamp(26px, 4vw, 54px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(45, 95, 122, 0.82)),
    var(--dark);
}

.atelier-proof__copy h2,
.drop-editorial h2 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 0.96;
  font-weight: 950;
  text-transform: uppercase;
}

.atelier-proof__copy p:not(.eyebrow),
.drop-editorial p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.atelier-proof__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.atelier-proof__metrics div {
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
  transition: transform 180ms ease, background 180ms ease;
}

.atelier-proof__metrics div:hover {
  transform: translateY(-6px);
  background: var(--champagne);
}

.atelier-proof__metrics span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.atelier-proof__metrics strong {
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.atelier-proof__metrics p {
  margin: 0;
  color: var(--ink-soft);
}

.section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

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

.section-heading--shop {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.section-heading h2,
.lookbook-band h2,
.newsletter-band h2,
.contact-copy h2 {
  font-size: 42px;
}

.section-heading a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid var(--ink);
  font-weight: 850;
  text-transform: uppercase;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: minmax(260px, 1fr);
  gap: 14px;
}

.collection-card {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  min-height: 260px;
}

.collection-card--large {
  grid-row: span 2;
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.54));
}

.collection-card:hover img {
  transform: scale(1.04);
}

.collection-card span {
  position: relative;
  z-index: 1;
  padding: 22px;
  color: var(--paper);
  font-size: 28px;
  font-weight: 920;
  text-transform: uppercase;
}

.drop-editorial {
  width: min(1360px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 0.88fr) minmax(220px, 0.72fr);
  gap: 16px;
  align-items: center;
  margin: 28px auto 22px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(239, 227, 207, 0.72), rgba(255, 255, 255, 0.92) 42%, rgba(34, 50, 58, 0.12)),
    var(--paper);
}

.drop-editorial__image {
  min-height: 520px;
  overflow: hidden;
  background: var(--surface);
  clip-path: polygon(0 0, 96% 0, 100% 100%, 0 100%);
}

.drop-editorial__image--tall {
  min-height: 640px;
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%);
}

.drop-editorial__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.drop-editorial:hover .drop-editorial__image img {
  transform: scale(1.05);
}

.drop-editorial__center {
  display: grid;
  justify-items: start;
  align-content: center;
  min-height: 520px;
  padding: clamp(24px, 4vw, 52px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(91, 101, 72, 0.86)),
    var(--dark);
}

.drop-editorial__center .button {
  margin-top: 26px;
}

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

.product-card {
  display: grid;
  min-height: 100%;
  align-content: start;
  background: transparent;
}

.product-card:hover {
  transform: none;
  box-shadow: none;
}

.product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--surface);
}

.product-card__media > a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.035);
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 5px 8px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 2px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card__quick {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.product-card:hover .product-card__quick,
.product-card__media:focus .product-card__quick {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.quick-title {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.quick-size-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
  gap: 6px;
}

.quick-size,
.quick-action {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-size {
  background: var(--paper);
}

.quick-size.is-selected {
  color: var(--paper);
  border-color: var(--dark);
  background: var(--dark);
}

.quick-action {
  color: var(--paper);
  background: var(--dark);
}

.product-card__body {
  display: grid;
  gap: 8px;
  padding: 12px 2px 0;
}

.product-card__meta,
.product-detail__meta,
.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pill-strong {
  color: var(--paper);
  border-color: var(--olive);
  background: var(--olive);
}

.product-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 880;
}

.product-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.option-row,
.size-row,
.color-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.option-row span,
.color-chip,
.size-chip {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  background: var(--surface);
  font-size: 12px;
  font-weight: 820;
}

.size-chip {
  min-width: 44px;
  cursor: pointer;
}

.size-chip:hover {
  color: var(--paper);
  border-color: var(--dark);
  background: var(--dark);
}

.product-card__bottom {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.price-stack {
  display: grid;
  gap: 1px;
  align-content: start;
  justify-items: end;
  min-width: max-content;
  text-align: right;
  white-space: nowrap;
}

.price-stack--large {
  margin: 16px 0;
}

.price {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.price-stack--large .price {
  font-size: 28px;
}

del {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.price-module {
  width: 100%;
  display: grid;
  gap: 7px;
  padding: 11px 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 242, 0.96)),
    #ffffff;
  color: #111111;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.045);
}

.price-module__top,
.price-module__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-module__top span,
.price-module__note {
  color: rgba(17, 17, 17, 0.54);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-module__top em {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #ffffff;
  background: #111111;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
}

.price-module__main strong {
  color: #111111;
  font-size: 18px;
  line-height: 1;
  font-weight: 1000;
  white-space: nowrap;
}

.price-module__main del {
  color: rgba(17, 17, 17, 0.44);
  font-size: 12px;
  font-weight: 850;
}

.price-module__note {
  min-height: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-module--quick {
  margin: 4px 0 2px;
}

.price-module--detail {
  width: min(460px, 100%);
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.price-module--detail .price-module__main strong {
  font-size: clamp(30px, 4vw, 44px);
}

.price-module--detail .price-module__main del {
  font-size: 16px;
}

.sticky-product-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 45;
  width: min(980px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 70px rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(18px);
}

.sticky-product-bar span {
  display: block;
  color: rgba(17, 17, 17, 0.5);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.sticky-product-bar strong {
  display: block;
  overflow: hidden;
  color: #111111;
  font-size: 13px;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.sticky-product-bar em {
  color: #111111;
  font-size: 18px;
  font-style: normal;
  font-weight: 1000;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.product-premium-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.1);
}

.product-premium-strip article {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #ffffff;
}

.product-premium-strip span,
.product-review-grid span {
  color: rgba(17, 17, 17, 0.42);
  font-size: 10px;
  font-weight: 950;
}

.product-premium-strip strong {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.product-premium-strip p {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  line-height: 1.4;
}

.product-story-panel {
  grid-column: 1 / -1;
  width: min(1320px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 22px;
  align-items: stretch;
  margin: 20px auto 0;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #f7f7f2;
}

.product-story-panel h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.92;
  text-transform: uppercase;
}

.product-story-panel p {
  max-width: 560px;
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.55;
}

.product-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 17, 17, 0.1);
}

.product-review-grid article {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 220px;
  padding: 18px;
  background: #ffffff;
}

.product-review-grid p {
  margin: 0;
  color: #111111;
  font-size: 15px;
  line-height: 1.42;
}

.product-review-grid strong {
  font-size: 11px;
  text-transform: uppercase;
}

.size-advisor,
.review-form,
.loyalty-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f2 100%);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.07);
}

.size-advisor {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
}

.size-advisor h2,
.review-form h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.size-advisor form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.size-advisor p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.size-advisor p strong {
  color: var(--ink);
}

.review-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 20px;
}

.payment-options--compact label {
  min-height: auto;
  align-items: flex-start;
}

.payment-options--compact span {
  font-size: 13px;
  line-height: 1.45;
}

.loyalty-card {
  min-width: min(280px, 100%);
  padding: 18px;
}

.loyalty-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.loyalty-card strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  text-transform: uppercase;
}

.loyalty-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.lookbook-band {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  margin: 36px auto 0;
  background: var(--dark);
  color: var(--paper);
}

.lookbook-band__media {
  min-height: 520px;
}

.lookbook-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-band__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 48px;
}

.lookbook-band__copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.newsletter-band {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: end;
  margin: 76px auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.newsletter-band form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.page-main {
  min-height: 70svh;
}

.page-hero {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 28px;
}

.page-hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 50px;
  align-items: end;
}

.page-hero h1,
.brand-story h1 {
  width: min(820px, 100%);
  font-size: 58px;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow),
.brand-story p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.shop-hero {
  border-bottom: 1px solid var(--line);
}

.collection-hero,
.lookbook-hero {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: end;
  padding: 32px 0 18px;
}

.collection-hero > div {
  min-height: 460px;
  display: grid;
  align-content: end;
  padding: clamp(24px, 4vw, 52px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(45, 95, 122, 0.78)),
    var(--dark);
}

.collection-hero h1,
.lookbook-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  text-transform: uppercase;
}

.collection-hero p:not(.eyebrow),
.lookbook-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.collection-hero img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.collection-tabs a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-tabs a.is-active,
.collection-tabs a:hover {
  color: var(--ink);
  background: var(--paper);
}

.collection-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.collection-subtabs a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-subtabs a.is-active,
.collection-subtabs a:hover {
  color: #111111;
  border-color: #ffffff;
  background: #ffffff;
}

.gender-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.gender-filter__item {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #111111;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.collection-hero .gender-filter__item {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.gender-filter__item em {
  color: rgba(17, 17, 17, 0.48);
  font-style: normal;
}

.collection-hero .gender-filter__item em {
  color: rgba(255, 255, 255, 0.62);
}

.gender-filter__item.is-active,
.gender-filter__item:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.collection-hero .gender-filter__item.is-active,
.collection-hero .gender-filter__item:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

.gender-filter__item.is-active em,
.gender-filter__item:hover em,
.collection-hero .gender-filter__item.is-active em,
.collection-hero .gender-filter__item:hover em {
  color: currentColor;
}

.gender-filter__item.is-disabled {
  opacity: 0.38;
  pointer-events: none;
}

.gender-filter--compact {
  margin-top: 0;
}

.catalog-filter-panel .gender-filter {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .gender-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .gender-filter::-webkit-scrollbar {
    display: none;
  }

  .gender-filter__item {
    flex: 0 0 auto;
    min-height: 34px;
    padding-inline: 12px;
  }
}

.collection-showcase {
  width: min(1360px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  margin: 16px auto 0;
}

.collection-feature {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--surface);
}

.collection-feature--large {
  grid-row: span 2;
  min-height: 620px;
}

.collection-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.collection-feature:hover img {
  transform: scale(1.045);
}

.collection-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.68));
}

.collection-feature div {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: var(--paper);
}

.collection-feature span,
.lookbook-grid span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.collection-feature h2,
.lookbook-grid h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.collection-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.collection-feature a,
.lookbook-grid a {
  display: inline-flex;
  margin-top: 10px;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
  text-transform: uppercase;
}

.lookbook-hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.lookbook-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.18));
}

.lookbook-hero div {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 76px);
}

.lookbook-grid {
  width: min(1360px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 16px auto 0;
}

.lookbook-grid article {
  position: relative;
  min-height: 580px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.lookbook-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.lookbook-grid article:hover img {
  transform: scale(1.05);
}

.lookbook-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.7));
}

.lookbook-card--plain::after {
  display: none;
}

.lookbook-grid div {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.lookbook-grid p {
  max-width: 320px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
  line-height: 1.45;
}

.lookbook-hero__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.lookbook-hero div {
  pointer-events: none;
}

.catalog-section {
  padding-top: 30px;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.search-field {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.category-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
  cursor: pointer;
}

.category-tab.is-active,
.category-tab:hover {
  color: var(--paper);
  border-color: var(--dark);
  background: var(--dark);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 54px;
  align-items: start;
}

.related-products {
  grid-column: 1 / -1;
  width: 100%;
  padding-bottom: 0;
}

.product-detail__media {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 12px;
}

.product-detail__media img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.product-gallery__main {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.product-gallery__thumbs button {
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.product-detail__content h1 {
  margin: 18px 0 0;
  font-size: 52px;
  line-height: 1.02;
  text-transform: none;
}

.product-detail__summary,
.product-detail__description {
  color: var(--ink-soft);
  font-size: 18px;
}

body[data-page="product-detail"] .product-detail__description {
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #f8f8f4;
  color: rgba(17, 17, 17, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.product-detail__content h2 {
  margin: 30px 0 14px;
  font-size: 22px;
  text-transform: uppercase;
}

.purchase-panel,
.care-box {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.purchase-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.purchase-panel small {
  color: var(--muted);
}

.product-service-grid {
  display: grid;
  gap: 8px;
}

.product-service-grid span {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  background: var(--paper);
  font-size: 12px;
}

.color-chip,
.size-chip {
  cursor: pointer;
}

.color-chip.is-selected,
.size-chip.is-selected {
  color: var(--paper);
  border-color: var(--dark);
  background: var(--dark);
}

.product-accordion {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.product-accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.product-accordion summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 920;
  text-transform: uppercase;
  cursor: pointer;
}

.product-accordion details > *:not(summary) {
  margin: 0 16px 16px;
}

.size-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
}

.size-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.size-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.62);
}

.size-modal__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.size-modal__panel header,
.cart-drawer__panel header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.size-modal__panel h2,
.cart-drawer__panel h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.size-modal table {
  width: 100%;
  border-collapse: collapse;
}

.size-modal th,
.size-modal td {
  padding: 13px;
  border: 1px solid var(--line);
  text-align: left;
}

.feature-list,
.spec-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (min-width: 820px) {
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.care-box p {
  margin: 0;
  color: var(--ink-soft);
}

.spec-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--muted);
  font-weight: 850;
}

.spec-list dd {
  margin: 0;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.brand-story {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
  margin: 0 auto;
  padding: 64px 0 28px;
}

.brand-story img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.value-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.value-card span {
  color: var(--red);
  font-weight: 900;
}

.value-card h2 {
  margin: 28px 0 0;
  font-size: 28px;
  line-height: 1.08;
  text-transform: uppercase;
}

.value-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}

.contact-copy p {
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 850;
}

.contact-section > .visual-slot {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.contact-form,
.admin-form,
.login-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  padding: 28px;
}

.contact-form label,
.admin-form label,
.admin-login-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form .button,
.admin-form .button {
  width: fit-content;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--olive);
  font-weight: 850;
}

.loading-line,
.empty-state {
  grid-column: 1 / -1;
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--surface);
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 34px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--paper);
}

.site-footer p {
  margin: 0;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(480px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  padding: 24px;
  background: var(--paper);
  box-shadow: -24px 0 60px rgba(17, 17, 17, 0.18);
  transform: translateX(100%);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cart-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-2);
}

.cart-progress span {
  width: var(--cart-progress, 0%);
  height: 100%;
  display: block;
  background: var(--olive);
  transition: width 180ms ease;
}

.cart-note {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 820;
}

.cart-list {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding-right: 4px;
}

.cart-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.cart-line img {
  width: 96px;
  height: 122px;
  object-fit: cover;
  border-radius: 6px;
}

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

.cart-line p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.cart-line__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.cart-line__actions button,
.cart-line__actions span {
  min-width: 32px;
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.cart-line__actions button {
  cursor: pointer;
}

.cart-drawer__panel footer {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cart-drawer__panel footer strong {
  font-size: 28px;
  line-height: 1;
}

.cart-recommendations {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fbfaf6;
}

.cart-recommendations > div {
  display: grid;
  gap: 2px;
}

.cart-recommendations span,
.cart-recommendations p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 920;
  text-transform: uppercase;
}

.cart-recommendations > div strong {
  font-size: 15px;
  text-transform: uppercase;
}

.cart-recommendations article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.cart-recommendations img {
  width: 52px;
  height: 62px;
  object-fit: cover;
}

.cart-recommendations h3 {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
}

.cart-recommendations article strong {
  font-size: 12px;
}

.cart-recommendations button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.variant-stock-note {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(45, 95, 122, 0.26);
  color: var(--blue);
  background: rgba(45, 95, 122, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.variant-stock-note.is-low {
  color: var(--gold);
  border-color: rgba(183, 131, 59, 0.32);
  background: rgba(183, 131, 59, 0.1);
}

.variant-stock-note.is-out {
  color: var(--red);
  border-color: rgba(199, 70, 53, 0.3);
  background: rgba(199, 70, 53, 0.08);
}

.empty-state--small {
  min-height: 90px;
}

.admin-shell {
  min-height: 100svh;
  background: var(--surface);
}

.admin-login {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.16)),
    url("assets/threon-fashion-hero.png") center / cover;
}

.login-card {
  width: min(500px, 100%);
  padding: 30px;
}

.login-card h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.06;
  text-transform: uppercase;
}

.login-card p {
  color: var(--ink-soft);
}

.admin-login-form {
  display: grid;
  gap: 14px;
}

.admin-dashboard {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.is-hidden {
  display: none;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.admin-nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 850;
}

.admin-nav a:hover {
  color: var(--paper);
  background: var(--dark);
}

.admin-content {
  width: min(1360px, 100%);
  padding: 30px;
}

.admin-topbar,
.admin-panel-heading,
.admin-list-tools,
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-topbar {
  margin-bottom: 24px;
}

.admin-topbar h1 {
  font-size: 42px;
  text-transform: uppercase;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-panel {
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.admin-panel h2 {
  font-size: 28px;
  text-transform: uppercase;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.admin-stat {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.admin-stat strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.admin-stat span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  gap: 20px;
  margin-top: 20px;
}

.admin-form {
  padding: 20px;
  box-shadow: none;
}

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

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

.check-field {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
}

.check-field input {
  width: 18px;
  min-height: 18px;
}

.admin-list-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.admin-preview-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--paper);
}

.admin-preview-card img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

.admin-preview-card span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-preview-card strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.admin-preview-card p {
  color: rgba(255, 255, 255, 0.72);
}

.admin-preview-card em {
  font-style: normal;
  font-weight: 900;
}

.admin-visual-preview {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--dark);
}

.admin-visual-preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-visual-preview span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-visual-preview strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.admin-visual-preview p,
.admin-visual-preview em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.admin-visual-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.admin-visual-item img {
  width: 128px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.admin-visual-item__top {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.admin-visual-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.14;
  text-transform: uppercase;
}

.admin-visual-item p {
  margin: 6px 0 12px;
  color: var(--ink-soft);
}

.admin-shelf-item {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.03), rgba(255, 255, 255, 0.96)),
    var(--surface);
}

.admin-shelf-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.admin-shelf-item p {
  margin: 8px 0 4px;
  color: var(--ink-soft);
  font-weight: 850;
}

.admin-shelf-item small {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.admin-list-tools {
  align-items: stretch;
}

.admin-product-list,
.message-list {
  display: grid;
  gap: 12px;
}

.admin-product-item,
.message-item {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.admin-product-item__top,
.message-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.admin-product-thumb {
  width: 76px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.admin-product-item h3,
.message-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.admin-product-item p,
.message-item p {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  background: var(--paper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.mini-button:hover {
  color: var(--paper);
  border-color: var(--dark);
  background: var(--dark);
}

.mini-button.danger:hover {
  border-color: var(--red);
  background: var(--red);
}

.message-item.is-unread {
  border-color: rgba(45, 95, 122, 0.42);
  box-shadow: 0 0 0 3px rgba(45, 95, 122, 0.08);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 100px 14px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .nav-cta,
  .cart-nav-button {
    width: 100%;
    justify-content: flex-start;
    padding: 0 12px;
    border-radius: 6px;
  }

  .product-card__quick {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .quick-title {
    display: none;
  }
}

@media (max-width: 1120px) {
  .fashion-hero h1 {
    font-size: 56px;
  }

  .fashion-hero {
    align-content: end;
    gap: 24px;
  }

  .fashion-hero__content {
    width: min(680px, 100%);
  }

  .hero-gift-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(360px, 100%);
  }

  .atelier-proof__metrics {
    grid-template-columns: 1fr;
  }

  .atelier-proof__metrics div {
    min-height: 210px;
  }

  .drop-editorial__image,
  .drop-editorial__image--tall,
  .drop-editorial__center {
    min-height: 420px;
    clip-path: none;
  }

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

  .collection-grid,
  .atelier-proof,
  .drop-editorial,
  .lookbook-band,
  .newsletter-band,
  .page-hero--split,
  .brand-story,
  .contact-section,
  .product-detail,
  .admin-two-column {
    grid-template-columns: 1fr;
  }

  .collection-card--large {
    grid-row: auto;
  }

  .product-detail__media {
    position: static;
  }

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

  .admin-dashboard {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    min-height: auto;
    grid-template-rows: auto;
  }

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

@media (max-width: 760px) {
  .announcement {
    font-size: 11px;
  }

  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 104px 14px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    padding: 0 12px;
  }

  .fashion-hero {
    min-height: calc(100svh - 104px);
    align-items: end;
    padding: 28px 16px;
  }

  .hero-vertical-label {
    display: none;
  }

  .fashion-hero__media img {
    object-position: 30% center;
  }

  .fashion-hero__content {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-gift-card {
    width: 100%;
    padding: 16px;
  }

  .hero-gift-card strong {
    font-size: 24px;
  }

  .hero-micro-grid {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-micro-grid span {
    min-height: 58px;
  }

  .fashion-hero h1,
  .page-hero h1,
  .brand-story h1,
  .product-detail__content h1 {
    font-size: 38px;
  }

  .fashion-hero p:not(.eyebrow),
  .page-hero p:not(.eyebrow),
  .brand-story p,
  .product-detail__summary,
  .product-detail__description {
    font-size: 16px;
  }

  .section,
  .page-hero,
  .brand-story,
  .atelier-proof,
  .lookbook-band,
  .newsletter-band {
    width: calc(100% - 32px);
  }

  .section {
    padding: 54px 0;
  }

  .section-heading--shop,
  .hero-actions,
  .product-card__bottom,
  .site-footer,
  .admin-topbar,
  .admin-panel-heading,
  .admin-product-item__top,
  .message-item__top,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .section-heading h2,
  .lookbook-band h2,
  .newsletter-band h2,
  .contact-copy h2,
  .admin-topbar h1 {
    font-size: 31px;
  }

  .store-strip,
  .atelier-proof__metrics,
  .value-grid,
  .catalog-tools,
  .form-grid,
  .admin-stat-grid,
  .admin-nav,
  .newsletter-band form {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(230px, auto);
  }

  .atelier-proof {
    padding: 54px 0 24px;
  }

  .atelier-proof__copy,
  .drop-editorial__center {
    min-height: 360px;
    padding: 24px;
  }

  .drop-editorial {
    width: calc(100% - 24px);
    padding: 10px;
  }

  .drop-editorial__image,
  .drop-editorial__image--tall {
    min-height: 330px;
  }

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

  .product-card__quick {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .quick-title {
    display: none;
  }

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

  .quick-size,
  .quick-action {
    min-height: 31px;
    font-size: 11px;
  }

  .category-tabs {
    justify-content: flex-start;
  }

  .button,
  .contact-form .button,
  .admin-form .button {
    width: 100%;
  }

  .lookbook-band__media {
    min-height: 320px;
  }

  .lookbook-band__copy,
  .newsletter-band,
  .contact-form,
  .admin-panel,
  .login-card,
  .admin-content,
  .admin-sidebar,
  .store-strip div {
    padding: 22px;
  }

  .product-detail__media img {
    min-height: 360px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .admin-list-tools {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 1120px) {
  .collection-hero,
  .collection-showcase,
  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .collection-hero > div,
  .collection-hero img,
  .collection-feature,
  .collection-feature--large,
  .lookbook-grid article {
    min-height: 420px;
  }

  .collection-feature--large {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .collection-showcase,
  .lookbook-hero,
  .lookbook-grid {
    width: calc(100% - 32px);
  }

  .collection-hero,
  .collection-showcase,
  .lookbook-grid {
    gap: 10px;
  }

  .collection-hero h1,
  .lookbook-hero h1 {
    font-size: 38px;
  }

  .collection-hero > div,
  .collection-hero img,
  .collection-feature,
  .collection-feature--large,
  .lookbook-grid article,
  .lookbook-hero {
    min-height: 360px;
  }

  .lookbook-hero div,
  .collection-feature div,
  .lookbook-grid div,
  .cart-drawer__panel {
    padding: 22px;
  }

  .cart-line {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-line img {
    width: 82px;
    height: 108px;
  }

  .cart-nav-button {
    width: 100%;
    justify-content: flex-start;
    border-radius: 6px;
  }

  .admin-preview-card {
    grid-template-columns: 1fr;
  }

  .admin-preview-card img {
    width: 100%;
    height: 220px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* LOFI-style storefront refresh */
body:not([data-page="admin"]) {
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body:not([data-page="admin"]) .announcement {
  display: none;
}

body:not([data-page="admin"]).nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(17, 17, 17, 0.22);
}

body:not([data-page="admin"]) .site-header {
  z-index: 120;
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
  backdrop-filter: none;
}

body:not([data-page="admin"]) .site-header.is-scrolled,
body:not([data-page="admin"]) .site-header--solid {
  border-bottom-color: rgba(17, 17, 17, 0.08);
  box-shadow: none;
}

body:not([data-page="admin"]) .brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  min-height: 62px;
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 1000;
  letter-spacing: 0.02em;
}

body:not([data-page="admin"]) .brand-mark {
  display: none;
}

body:not([data-page="admin"]) .menu-toggle {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  position: relative;
  width: 52px;
  height: 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body:not([data-page="admin"]) .menu-toggle:hover {
  border-color: rgba(17, 17, 17, 0.4);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.12);
  transform: translateY(-1px);
}

body:not([data-page="admin"]) .menu-toggle__line {
  width: 24px;
  height: 2px;
  margin: 0;
  background: #111111;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

body:not([data-page="admin"]) .menu-toggle__line + .menu-toggle__line {
  margin-top: 0;
}

body:not([data-page="admin"]) .site-header.is-open .menu-toggle__line:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}

body:not([data-page="admin"]) .site-header.is-open .menu-toggle__line:nth-of-type(2) {
  width: 0;
  opacity: 0;
}

body:not([data-page="admin"]) .site-header.is-open .menu-toggle__line:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body:not([data-page="admin"]) .site-nav {
  grid-row: 1;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 140;
  width: min(430px, calc(100% - 24px));
  display: grid;
  align-content: start;
  gap: 0;
  max-height: 100svh;
  overflow-y: auto;
  padding: 78px 28px 28px;
  color: #111111;
  background: #ffffff;
  box-shadow: 22px 0 60px rgba(17, 17, 17, 0.14);
  transform: translateX(-104%);
  opacity: 1;
  pointer-events: none;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

body:not([data-page="admin"]) .site-nav.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

body:not([data-page="admin"]) .site-header.is-open .menu-toggle {
  position: relative;
  z-index: 150;
}

body:not([data-page="admin"]) .site-nav a,
body:not([data-page="admin"]) .site-nav .nav-cta {
  width: 100%;
  min-height: 50px;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  color: #111111;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

body:not([data-page="admin"]) .site-nav a::after {
  content: ">";
  color: rgba(17, 17, 17, 0.36);
  font-weight: 900;
}

body:not([data-page="admin"]) .site-nav a:hover,
body:not([data-page="admin"]) .site-nav a.is-active {
  color: #111111;
}

.nav-drawer-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.nav-drawer-head span,
.nav-drawer-promo span,
body:not([data-page="admin"]) .site-nav a small,
body:not([data-page="admin"]) .site-nav a em {
  color: rgba(17, 17, 17, 0.48);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.nav-drawer-head strong {
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
}

.nav-drawer-head p {
  max-width: 320px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.nav-drawer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

body:not([data-page="admin"]) .nav-drawer-grid a {
  min-height: 84px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 13px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #f7f7f4;
}

body:not([data-page="admin"]) .nav-drawer-grid a::after {
  content: "";
}

body:not([data-page="admin"]) .nav-drawer-grid a span {
  font-size: 13px;
}

.nav-category-list {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.nav-category {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
}

.nav-category summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  color: #111111;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.nav-category summary small {
  color: rgba(17, 17, 17, 0.42);
  font-size: 10px;
  font-weight: 950;
}

.nav-category summary i {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.16);
  color: rgba(17, 17, 17, 0.6);
  transform: rotate(45deg);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-category summary i::before {
  content: "+";
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  transform: rotate(-45deg);
}

.nav-category summary::-webkit-details-marker {
  display: none;
}

.nav-category[open] summary i {
  background: #111111;
  color: #ffffff;
}

.nav-category[open] summary i::before {
  content: "×";
}

.nav-subcategory-links {
  display: grid;
  padding: 0 12px 10px;
}

body:not([data-page="admin"]) .nav-subcategory-links a {
  min-height: 36px;
  padding-left: 10px;
  color: rgba(17, 17, 17, 0.72);
  border-bottom-color: rgba(17, 17, 17, 0.07);
  font-size: 12px;
  font-weight: 850;
}

body:not([data-page="admin"]) .nav-subcategory-links a:first-child {
  color: #111111;
}

.nav-subcategory-links a span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-subcategory-links a span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.42;
}

.nav-drawer-promo {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 20px;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #111111;
  color: #ffffff;
}

.nav-drawer-promo img {
  width: 112px;
  height: 142px;
  object-fit: cover;
}

.nav-drawer-promo div {
  display: grid;
  align-content: center;
  gap: 8px;
}

.nav-drawer-promo strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

body:not([data-page="admin"]) .nav-drawer-promo a {
  width: max-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
  font-size: 11px;
}

body:not([data-page="admin"]) .nav-drawer-promo a::after {
  content: "";
}

body:not([data-page="admin"]) .gift-link {
  color: #111111;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.header-icon {
  position: relative;
  width: 34px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: #111111;
  background: transparent;
  cursor: pointer;
}

.header-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-bag span,
.header-favorite span {
  position: absolute;
  right: -4px;
  top: 4px;
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #111111;
  font-size: 10px;
  font-weight: 900;
}

.header-favorite span:empty,
.header-favorite span:not(:empty) {
  background: #111111;
}

.lofi-storefront {
  padding-bottom: 24px;
}

.lofi-hero {
  width: min(1500px, calc(100% - 48px));
  margin: 26px auto 0;
}

.lofi-hero__frame {
  position: relative;
  display: block;
  min-height: clamp(430px, 66vw, 760px);
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}

.lofi-hero__slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  animation: heroSlideFade 25s linear infinite;
}

.lofi-hero__frame--carousel .lofi-hero__slide {
  opacity: 0;
  pointer-events: none;
  animation: none;
  transition: opacity 760ms ease, transform 760ms ease;
}

.lofi-hero__frame--carousel .lofi-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.lofi-hero__slide:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}

.lofi-hero__slide:nth-child(2) {
  animation-delay: 5s;
}

.lofi-hero__slide:nth-child(3) {
  animation-delay: 10s;
}

.lofi-hero__slide:nth-child(4) {
  animation-delay: 15s;
}

.lofi-hero__slide:nth-child(5) {
  animation-delay: 20s;
}

.lofi-hero__frame--carousel .lofi-hero__slide:not(.is-active) {
  opacity: 0;
}

.lofi-hero__slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: heroImageDrift 25s ease-in-out infinite;
}

.lofi-hero__frame--carousel .lofi-hero__slide img {
  animation: none;
}

.lofi-hero__slide--campaign {
  background: #d8d2cc;
}

.lofi-hero__slide--campaign img {
  object-position: center center;
}

.lofi-hero__frame:hover .lofi-hero__slide img {
  animation-play-state: paused;
  transform: scale(1.045);
}

.lofi-hero__caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 260px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
  z-index: 2;
}

.lofi-hero__controls {
  position: absolute;
  right: 22px;
  top: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-50%);
}

.lofi-hero__control {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.48);
  backdrop-filter: blur(14px);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lofi-hero__control:hover {
  background: #111111;
  transform: scale(1.06);
}

.lofi-hero__dots {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  gap: 7px;
}

.lofi-hero__dot {
  width: 22px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.lofi-hero__dot.is-active {
  background: #ffffff;
}

.lofi-hero__slide--admin::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.52), rgba(17, 17, 17, 0.08) 54%, rgba(17, 17, 17, 0.18));
  pointer-events: none;
}

.lofi-hero__slide--plain::after {
  display: none;
}

.lofi-hero__slide--admin .lofi-hero__slide-copy {
  position: absolute;
  left: clamp(22px, 5vw, 76px);
  bottom: clamp(28px, 7vw, 96px);
  z-index: 3;
  display: grid;
  gap: 10px;
  max-width: min(520px, 72vw);
  color: #ffffff;
}

.lofi-hero__slide-copy em,
.lofi-hero__slide-copy small {
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lofi-hero__slide-copy em {
  font-size: 12px;
  opacity: 0.78;
}

.lofi-hero__slide-copy strong {
  font-size: clamp(34px, 7vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
}

.lofi-hero__slide-copy small {
  max-width: 420px;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.86;
}

.visual-slot {
  width: min(1500px, calc(100% - 48px));
  margin: 26px auto;
}

.visual-slot[hidden] {
  display: none;
}

.visual-slot__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 16px;
}

.visual-block {
  position: relative;
  min-height: clamp(260px, 34vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 12px;
  color: #111111;
  background: #f2f0ec;
  isolation: isolate;
}

.visual-block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(246, 244, 239, 0.9), rgba(246, 244, 239, 0.16) 56%, rgba(17, 17, 17, 0.12));
  pointer-events: none;
}

.visual-block--plain::after {
  display: none;
}

.visual-block img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 600ms ease, filter 600ms ease;
}

.visual-block:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.045);
}

.visual-block__content {
  position: absolute;
  left: clamp(20px, 4vw, 62px);
  bottom: clamp(20px, 4vw, 58px);
  z-index: 2;
  display: grid;
  gap: 9px;
  max-width: min(430px, 76%);
}

.visual-block__content em,
.visual-block__content small,
.visual-block__content b {
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-block__content em {
  color: rgba(17, 17, 17, 0.62);
  font-size: 11px;
}

.visual-block__content strong {
  font-size: clamp(30px, 5vw, 74px);
  line-height: 0.9;
  text-transform: uppercase;
}

.visual-block__content small {
  max-width: 380px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.visual-block__content b {
  width: fit-content;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: #111111;
  font-size: 11px;
}

.visual-block--dark {
  color: #ffffff;
  background: #111111;
}

.visual-block--dark::after {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.74), rgba(17, 17, 17, 0.12) 58%, rgba(17, 17, 17, 0.28));
}

.visual-block--dark .visual-block__content em,
.visual-block--dark .visual-block__content small {
  color: rgba(255, 255, 255, 0.78);
}

.visual-block--dark .visual-block__content b {
  color: #111111;
  background: #ffffff;
}

.visual-block--minimal::after {
  background: linear-gradient(0deg, rgba(246, 244, 239, 0.94), rgba(246, 244, 239, 0.08) 58%);
}

@keyframes heroSlideFade {
  0%,
  18% {
    opacity: 1;
  }

  22%,
  100% {
    opacity: 0;
  }
}

@keyframes heroImageDrift {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.07) translate3d(-1.8%, 0.8%, 0);
  }

  100% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
}

.section--lofi {
  width: min(1500px, calc(100% - 32px));
  padding: 70px 0 34px;
}

.lofi-title-row {
  width: min(1320px, calc(100% - 128px));
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto 26px;
}

.lofi-title-row h1,
.lofi-title-row h2 {
  margin: 0;
  color: #202020;
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.lofi-title-row a {
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body:not([data-page="admin"]) .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 22px;
}

body:not([data-page="admin"]) .product-card {
  min-width: 0;
  animation: productCardIn 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 220ms ease;
}

body:not([data-page="admin"]) .product-card:nth-child(2) {
  animation-delay: 35ms;
}

body:not([data-page="admin"]) .product-card:nth-child(3) {
  animation-delay: 70ms;
}

body:not([data-page="admin"]) .product-card:nth-child(4) {
  animation-delay: 105ms;
}

body:not([data-page="admin"]) .product-card:hover {
  transform: translateY(-3px);
}

body:not([data-page="admin"]) .product-card__media {
  position: relative;
  aspect-ratio: 3 / 4.18;
  border: 0;
  border-radius: 0;
  background: #f3f3f3;
  overflow: hidden;
}

body:not([data-page="admin"]) .product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.34) 50%, transparent 58%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

body:not([data-page="admin"]) .product-card:hover .product-card__media::after {
  transform: translateX(120%);
}

body:not([data-page="admin"]) .product-card__media > a {
  position: relative;
}

body:not([data-page="admin"]) .product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 190ms ease, transform 260ms ease;
}

body:not([data-page="admin"]) .product-card__image--hover {
  opacity: 0;
}

body:not([data-page="admin"]) .product-card--has-hover:hover .product-card__image--primary {
  opacity: 0.18;
  transform: scale(1.02);
}

body:not([data-page="admin"]) .product-card--has-hover:hover .product-card__image--hover {
  opacity: 1;
  transform: scale(1.02);
}

body:not([data-page="admin"]) .product-card__badge {
  top: 8px;
  left: 8px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  font-size: 10px;
}

body:not([data-page="admin"]) .product-card__body {
  padding: 8px 2px 0;
  text-align: left;
}

body:not([data-page="admin"]) .product-card__bottom {
  display: grid;
  align-items: start;
  justify-items: stretch;
  gap: 4px;
}

body:not([data-page="admin"]) .product-card h3 {
  min-height: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 880;
  line-height: 1.16;
  text-transform: uppercase;
}

body:not([data-page="admin"]) .product-card p {
  display: block;
  margin: 0;
  color: rgba(17, 17, 17, 0.55);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.1;
}

body:not([data-page="admin"]) .price-stack {
  min-width: 82px;
  justify-items: end;
  gap: 2px;
  padding-top: 1px;
  text-align: right;
}

body:not([data-page="admin"]) .price-module--card {
  width: fit-content;
  max-width: 100%;
  margin-top: 4px;
  padding: 7px 10px;
  box-shadow: none;
}

body:not([data-page="admin"]) .price-module--card .price-module__top,
body:not([data-page="admin"]) .price-module--card .price-module__note,
body:not([data-page="admin"]) .product-card__extras,
body:not([data-page="admin"]) .product-card__swatches {
  display: none !important;
}

body:not([data-page="admin"]) .price-module--card .price-module__main {
  justify-content: flex-start;
  gap: 8px;
}

body:not([data-page="admin"]) .price-module--card .price-module__main strong {
  font-size: 16px;
}

body:not([data-page="admin"]) .price {
  font-size: 14px;
  font-weight: 950;
}

body:not([data-page="admin"]) del {
  font-size: 11px;
}

body:not([data-page="admin"]) .product-card__quick {
  right: 0;
  bottom: 0;
  left: 0;
  gap: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

body:not([data-page="admin"]) .quick-title {
  display: none;
}

body:not([data-page="admin"]) .quick-size-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

body:not([data-page="admin"]) .quick-size,
body:not([data-page="admin"]) .quick-action {
  min-height: 42px;
  border-width: 1px 1px 0 0;
  border-color: rgba(17, 17, 17, 0.16);
  background: #ffffff;
  font-size: 11px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

body:not([data-page="admin"]) .quick-size:hover {
  color: #ffffff;
  border-color: #111111;
  background: #111111;
}

body:not([data-page="admin"]) .quick-size.is-selected {
  color: #ffffff;
  border-color: #111111;
  background: #111111;
  transform: translateY(-1px);
}

body:not([data-page="admin"]) .quick-action {
  border-right: 0;
  color: #ffffff;
  background: #111111;
}

.lofi-image-break {
  width: min(1500px, calc(100% - 48px));
  margin: 58px auto 0;
}

.lofi-image-break a {
  position: relative;
  min-height: clamp(360px, 54vw, 650px);
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}

.lofi-image-break img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 360ms ease;
}

.lofi-image-break a:hover img {
  transform: scale(1.035);
}

.lofi-image-break div {
  position: absolute;
  inset: auto 0 34px;
  display: grid;
  justify-items: center;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.lofi-image-break span {
  font-size: 22px;
  font-weight: 930;
}

.lofi-image-break strong {
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.9;
}

.lofi-service-strip {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 70px auto 0;
  color: #111111;
}

.lofi-category-board {
  width: min(1500px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 66px auto 0;
}

.lofi-category-board a {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #f2f2f2;
}

.lofi-category-board img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.lofi-category-board a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.44));
}

.lofi-category-board a:hover img {
  transform: scale(1.045);
}

.lofi-category-board span {
  position: relative;
  z-index: 1;
  padding: 18px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 950;
  text-transform: uppercase;
}

.gift-card-strip {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 72px auto 0;
  padding: 34px;
  color: #ffffff;
  background: #111111;
}

.gift-card-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gift-card-strip h2 {
  margin: 5px 0 8px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
  font-weight: 1000;
}

.gift-card-strip p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.gift-card-strip a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #111111;
  background: #ffffff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.lofi-service-strip div {
  min-height: 88px;
  display: grid;
  place-items: center;
  gap: 4px;
  text-align: center;
  background: #ffffff;
}

.lofi-service-strip strong {
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.lofi-service-strip span {
  color: #555555;
  font-size: 13px;
}

.lofi-support {
  width: min(980px, calc(100% - 40px));
  margin: 42px auto 0;
  text-align: center;
}

.lofi-support h2 {
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: 900;
}

.lofi-support p {
  margin: 0 auto;
  max-width: 820px;
  color: #333333;
  font-size: 15px;
}

.lofi-support a {
  display: inline-flex;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-band--lofi {
  width: min(1180px, calc(100% - 40px));
  margin-top: 60px;
  border-radius: 0;
  background: #f5f5f5;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.42);
  opacity: 0;
  transition: opacity 180ms ease;
}

.search-drawer,
.wishlist-drawer {
  position: fixed;
  inset: 0;
  z-index: 62;
  pointer-events: none;
}

.search-drawer.is-open,
.wishlist-drawer.is-open {
  pointer-events: auto;
}

.search-drawer.is-open .drawer-backdrop,
.wishlist-drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.search-drawer__panel,
.wishlist-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(560px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  padding: 28px;
  background: #ffffff;
  box-shadow: -24px 0 60px rgba(17, 17, 17, 0.16);
  transform: translateX(100%);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wishlist-drawer__panel {
  grid-template-rows: auto 1fr auto;
}

.search-drawer.is-open .search-drawer__panel,
.wishlist-drawer.is-open .wishlist-drawer__panel {
  transform: translateX(0);
}

body.search-open .search-drawer__panel,
body.wishlist-open .wishlist-drawer__panel {
  transform: translateX(0);
}

.search-drawer__panel header,
.wishlist-drawer__panel header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.search-drawer__panel h2,
.wishlist-drawer__panel h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.search-drawer__input {
  display: grid;
  gap: 8px;
}

.search-drawer__input span {
  color: #666666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-drawer__input input {
  min-height: 54px;
  border-radius: 0;
  font-size: 18px;
}

.search-drawer__results,
.wishlist-list {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
}

.search-result,
.wishlist-line {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.wishlist-line {
  grid-template-columns: 92px minmax(0, 1fr);
}

.search-result img,
.wishlist-line img {
  width: 86px;
  height: 112px;
  object-fit: cover;
  background: #f2f2f2;
}

.wishlist-line img {
  width: 92px;
  height: 122px;
}

.search-result strong,
.wishlist-line h3 {
  display: block;
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
}

.search-result small,
.wishlist-line p {
  display: block;
  margin: 5px 0 0;
  color: #666666;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.search-result em,
.wishlist-line strong {
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.wishlist-line__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.wishlist-line__actions a,
.wishlist-line__actions button {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: #ffffff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.wishlist-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  color: #111111;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.wishlist-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.wishlist-button.is-active svg {
  fill: currentColor;
}

.cookie-consent {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 75;
  width: min(620px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #eef3ff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
}

.cookie-consent.is-hidden {
  display: none;
}

.cookie-consent__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid #111111;
  border-radius: 999px;
  color: #111111;
  background: #f4d56b;
  font-weight: 1000;
}

.cookie-consent p {
  margin: 0;
  color: #111111;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-consent button {
  min-height: 44px;
  padding: 0 20px;
  color: #ffffff;
  background: #111111;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  max-width: min(360px, calc(100% - 40px));
  padding: 14px 16px;
  color: #ffffff;
  background: #111111;
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.premium-footer {
  width: min(1500px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(180px, 0.44fr) minmax(420px, 1.18fr) minmax(230px, 0.58fr);
  gap: 18px;
  margin: 74px auto 0;
  padding: clamp(18px, 3.8vw, 42px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(135deg, rgba(248, 248, 245, 0.98), rgba(255, 255, 255, 0.98) 44%, rgba(233, 235, 228, 0.92)),
    #ffffff;
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.1);
}

.premium-footer__topline,
.premium-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-footer__topline {
  margin-bottom: 16px;
}

.premium-footer__logo {
  display: block;
  width: min(270px, 100%);
  height: auto;
  margin: 0 0 16px;
}

.premium-footer strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.9;
  font-weight: 1000;
}

.premium-footer p {
  max-width: 520px;
  margin: 0;
  color: #555555;
  font-size: 14px;
}

.premium-footer h3 {
  margin: 0 0 13px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-footer nav,
.premium-footer__contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.premium-footer a {
  color: #333333;
  font-size: 13px;
  font-weight: 760;
  transition: color 150ms ease, transform 150ms ease;
}

.premium-footer a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.premium-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.premium-footer__badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-footer__support {
  display: grid;
  gap: 14px;
  align-content: start;
}

.premium-footer__section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.premium-footer__section-head h3 {
  margin-bottom: 0;
}

.premium-footer__section-head p {
  max-width: 270px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.45;
  text-align: right;
}

.premium-footer__support-stack {
  display: grid;
  gap: 10px;
}

.premium-footer__support-stack article {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.055);
}

.premium-footer__support-stack article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #111111, rgba(17, 17, 17, 0.08));
}

.premium-footer__support-stack article > span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
}

.premium-footer__support-stack article > strong {
  margin: 0;
  font-size: 18px;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.premium-footer__support-stack article > p {
  color: rgba(17, 17, 17, 0.62);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.45;
}

.premium-footer__support-stack article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 3px;
}

.premium-footer__support-stack a,
.premium-footer__contact a {
  width: max-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #111111;
  font-size: 11px;
  font-weight: 920;
  text-transform: uppercase;
}

.premium-footer__support-stack a::after,
.premium-footer__contact a::after {
  content: "›";
  font-size: 14px;
  line-height: 1;
}

.premium-footer__support-stack a:hover,
.premium-footer__contact a:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.premium-footer__contact {
  padding: 18px;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.premium-footer__contact h3 {
  color: rgba(255, 255, 255, 0.72);
}

.premium-footer__contact p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.premium-footer__contact a {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.premium-footer__contact a:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

.premium-footer__service-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.08);
}

.premium-footer__bottom {
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.premium-footer__service-row span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

body:not([data-page="admin"]) .premium-footer:has(+ .site-footer) {
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}

.mobile-sticky-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-sticky-nav a,
.mobile-sticky-nav button {
  min-height: 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
  color: #111111;
  background: transparent;
  font-size: 8.5px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 2px;
}

.mobile-sticky-nav span {
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #111111;
  font-size: 9px;
}

.account-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.account-premium-grid > article,
.admin-insight-card,
.policy-grid article {
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #ffffff;
}

.account-mini-card,
.account-mini-product {
  display: grid;
  gap: 5px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.account-mini-product {
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
}

.account-mini-product img {
  width: 58px;
  height: 72px;
  object-fit: cover;
}

.account-mini-card strong,
.account-mini-product strong {
  font-size: 13px;
  text-transform: uppercase;
}

.account-mini-card p,
.account-mini-product em {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-style: normal;
  font-weight: 820;
}

.account-order__tracking,
.admin-order-alert {
  display: grid;
  gap: 4px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #f8f8f4;
}

.account-order__tracking span,
.order-timeline span {
  color: rgba(17, 17, 17, 0.56);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-order__tracking strong {
  font-size: 14px;
  text-transform: uppercase;
}

.account-order__tracking a {
  width: max-content;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-timeline {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}

.order-timeline span {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.admin-shipping-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 8px;
  margin: 12px 0;
}

.admin-shipping-editor input {
  min-height: 38px;
}

.admin-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.admin-insight-card {
  display: grid;
  gap: 10px;
  background: #f8f8f4;
}

.admin-insight-card span,
.policy-grid span {
  color: rgba(17, 17, 17, 0.45);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-insight-card h3,
.policy-grid h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.admin-insight-card p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 12px;
}

.admin-insight-card em {
  color: rgba(17, 17, 17, 0.58);
  font-style: normal;
  font-weight: 850;
  text-align: right;
}

.policy-page {
  display: grid;
  gap: 28px;
}

.policy-hero {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  gap: 16px;
  margin: 42px auto 0;
  padding: clamp(34px, 6vw, 76px);
  color: #ffffff;
  background: #111111;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
}

.policy-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.policy-grid {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.policy-grid p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 14px;
  line-height: 1.55;
}

.support-page,
.about-page,
.contact-page {
  background:
    linear-gradient(180deg, #f8f8f4 0, #ffffff 420px),
    var(--paper);
}

.support-hero,
.support-section,
.support-kpis {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin-top: 42px;
  padding: clamp(28px, 6vw, 74px);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #111111 0%, #1a1a17 58%, #2a2a24 100%);
}

.support-hero--light {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 240, 0.96)),
    var(--surface);
  border: 1px solid var(--line);
}

.support-hero--editorial {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(37, 41, 32, 0.96)),
    var(--dark);
}

.support-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
}

.support-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.support-hero--light p:not(.eyebrow) {
  color: var(--ink-soft);
}

.support-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.support-hero__meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.support-hero--light .support-hero__meta span,
.brand-story .support-hero__meta span {
  border-color: rgba(17, 17, 17, 0.12);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
}

.support-hero__panel {
  min-height: 100%;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.support-hero--light .support-hero__panel {
  color: #ffffff;
  background: var(--dark);
  border-color: rgba(17, 17, 17, 0.12);
}

.support-hero__panel span,
.support-card > span,
.support-note > span,
.support-kpis span,
.support-steps span,
.brand-timeline span,
.checkout-assurance span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-hero__panel strong {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
}

.support-hero__panel a,
.support-card a,
.support-cta a {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.support-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.support-kpis article {
  min-height: 144px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.045);
}

.support-kpis strong,
.support-steps h3,
.brand-timeline strong {
  font-size: 18px;
  line-height: 1.05;
  text-transform: uppercase;
}

.support-kpis p,
.support-steps p,
.brand-timeline p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.support-section {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.support-section:last-child {
  margin-bottom: 74px;
}

.support-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.support-section__head h2,
.brand-manifesto h2,
.support-cta h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
}

.support-section__head a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.support-grid,
.support-steps,
.account-service-grid,
.checkout-trust-grid,
.contact-service-grid,
.brand-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.support-steps,
.brand-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-card,
.support-note,
.support-steps article,
.brand-timeline article {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid var(--line);
  background: #ffffff;
}

.support-card {
  align-content: start;
}

.support-card--dark,
.support-cta {
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.12), transparent 34%),
    var(--dark);
  border-color: rgba(17, 17, 17, 0.2);
}

.support-card--dark p,
.support-cta p {
  color: rgba(255, 255, 255, 0.7);
}

.support-card h2,
.support-note h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.support-card p,
.support-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.support-note {
  align-content: center;
  background:
    linear-gradient(135deg, rgba(248, 248, 244, 0.98), rgba(255, 255, 255, 0.98)),
    var(--surface);
}

.support-columns {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: stretch;
}

.support-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.support-list li {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.support-list strong {
  font-size: 14px;
  text-transform: uppercase;
}

.support-list p {
  font-size: 14px;
}

.support-card--dark .support-list {
  border-color: rgba(255, 255, 255, 0.16);
}

.support-card--dark .support-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.support-faq {
  display: grid;
  gap: 10px;
}

.support-faq details {
  border: 1px solid var(--line);
  background: #ffffff;
}

.support-faq summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.support-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 26px;
  line-height: 1;
}

.support-faq details[open] summary::after {
  content: "-";
}

.support-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.support-editorial {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.support-image-panel {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.support-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story--premium {
  padding-top: 58px;
}

.brand-story--premium img {
  min-height: 560px;
}

.brand-manifesto {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  background: #ffffff;
}

.brand-manifesto > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.brand-craft-grid {
  margin-top: 28px;
}

.brand-timeline article {
  min-height: 190px;
  align-content: end;
}

.about-page .brand-story--premium {
  width: min(1500px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
}

.about-page .brand-story--premium > div {
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 68px);
}

.about-page .brand-story--premium p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.about-page .brand-story--premium .support-hero__meta span {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.about-page .brand-story--premium img {
  min-height: 650px;
  border-radius: 0;
  filter: saturate(0.96) contrast(1.03);
}

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

.about-origin-grid article {
  min-height: 240px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 244, 0.96)),
    #ffffff;
}

.about-origin-grid span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.about-origin-grid strong {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 0.98;
  text-transform: uppercase;
}

.about-origin-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.about-signature {
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background:
    radial-gradient(circle at 0% 0%, rgba(147, 34, 24, 0.08), transparent 32%),
    #f8f8f4;
}

.support-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
}

.support-cta a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0 18px;
}

.checkout-trust-grid,
.account-service-grid,
.contact-service-grid {
  margin-top: 18px;
  margin-bottom: 24px;
}

.checkout-assurance {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #f8f8f4;
}

.checkout-assurance strong {
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
}

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

.dynamic-collection-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 22px;
  color: #ffffff;
  background: #111111;
}

.dynamic-collection-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.dynamic-collection-card strong {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}

.dynamic-collection-card div {
  display: grid;
  gap: 7px;
}

.dynamic-collection-card a {
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body:not([data-page="admin"]) .site-footer {
  justify-content: center;
  padding: 34px 20px;
  color: #555555;
  background: #ffffff;
  text-align: center;
}

body:not([data-page="admin"]) .premium-footer + .site-footer {
  width: min(1500px, calc(100% - 40px));
  justify-content: space-between;
  margin: 0 auto 42px;
  padding: 18px clamp(18px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  color: rgba(17, 17, 17, 0.58);
  background:
    linear-gradient(135deg, rgba(248, 248, 245, 0.98), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

body:not([data-page="admin"]) .premium-footer + .site-footer a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  padding: 0 12px;
  color: #111111;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

body:not([data-page="admin"]) .shop-hero {
  width: min(1500px, calc(100% - 32px));
  padding: 56px 0 24px;
  border-bottom: 0;
  text-align: center;
}

body:not([data-page="admin"]) .shop-hero .eyebrow,
body:not([data-page="admin"]) .shop-hero p:not(.eyebrow) {
  display: none;
}

body:not([data-page="admin"]) .shop-hero h1 {
  width: 100%;
  font-size: clamp(32px, 4vw, 44px);
  text-align: center;
}

body:not([data-page="admin"]) .catalog-section {
  width: min(1500px, calc(100% - 32px));
  padding-top: 16px;
}

body:not([data-page="admin"]) .catalog-tools {
  margin-bottom: 34px;
  border: 0;
  background: transparent;
}

body:not([data-page="admin"]) .category-tabs {
  justify-content: center;
}

body:not([data-page="admin"]) .category-tab {
  border-radius: 0;
  background: #ffffff;
}

@media (max-width: 1120px) {
  body:not([data-page="admin"]) .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lofi-title-row {
    width: min(1320px, calc(100% - 48px));
  }

  .premium-footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .premium-footer__support {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  body:not([data-page="admin"]) .site-header {
    padding: 0 14px;
  }

  body:not([data-page="admin"]) .brand {
    font-size: 25px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-icon {
    width: 31px;
  }

  .lofi-hero,
  .lofi-image-break {
    width: calc(100% - 32px);
    margin-top: 16px;
  }

  .lofi-hero__frame {
    min-height: 470px;
  }

  .lofi-title-row {
    width: calc(100% - 32px);
    align-items: start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  body:not([data-page="admin"]) .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 12px;
  }

  body:not([data-page="admin"]) .product-card__quick {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

  body:not([data-page="admin"]) .quick-size-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body:not([data-page="admin"]) .quick-size,
  body:not([data-page="admin"]) .quick-action {
    min-height: 34px;
    font-size: 10px;
  }

  .lofi-service-strip,
  .newsletter-band--lofi,
  .gift-card-strip,
  .premium-footer {
    grid-template-columns: 1fr;
  }

  .premium-footer {
    width: calc(100% - 24px);
    gap: 12px;
    margin-top: 48px;
    padding: 14px;
  }

  body:not([data-page="admin"]) .premium-footer + .site-footer {
    width: calc(100% - 24px);
    align-items: center;
    flex-direction: column;
    gap: 12px;
    margin-bottom: calc(var(--mobile-nav-height) + 20px);
    padding: 16px 14px;
    border-radius: 0 0 8px 8px;
  }

  .premium-footer strong {
    font-size: 34px;
  }

  .premium-footer nav {
    padding: 14px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
  }

  .premium-footer__section-head {
    display: grid;
    gap: 6px;
  }

  .premium-footer__section-head p {
    max-width: none;
    text-align: left;
  }

  .premium-footer__support-stack {
    grid-template-columns: 1fr;
  }

  .premium-footer__support-stack article {
    padding: 14px;
  }

  .premium-footer__support-stack article > strong {
    font-size: 16px;
  }

  .premium-footer__support-stack a,
  .premium-footer__contact a {
    min-height: 30px;
    font-size: 10px;
  }

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

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

  .lofi-category-board a {
    min-height: 200px;
  }

  .gift-card-strip {
    padding: 24px;
  }

  .cookie-consent {
    grid-template-columns: 42px minmax(0, 1fr);
    bottom: 84px;
  }

  .cookie-consent button {
    grid-column: 1 / -1;
  }

  .cookie-consent__icon {
    width: 42px;
    height: 42px;
  }

  .search-drawer__panel,
  .wishlist-drawer__panel {
    padding: 22px;
  }

  .search-result,
  .wishlist-line {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .search-result em {
    grid-column: 2;
  }
}

@media (max-width: 520px) {
  body:not([data-page="admin"]) .brand {
    font-size: 22px;
  }

  .lofi-hero__frame {
    min-height: 390px;
  }

  .lofi-hero__caption {
    right: 18px;
    bottom: 18px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lofi-hero__slide,
  .lofi-hero__slide img {
    animation: none;
  }

  .lofi-hero__slide {
    opacity: 0;
  }

  .lofi-hero__slide:first-child {
    opacity: 1;
  }
}

/* Premium upgrade layer */
@keyframes premiumTicker {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scaleX(0.92);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 95;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.scroll-progress::after {
  content: "";
  width: var(--scroll-progress, 0%);
  height: 100%;
  display: block;
  background: #111111;
  transition: width 120ms ease;
}

.premium-drop-ticker {
  width: min(1500px, calc(100% - 48px));
  overflow: hidden;
  margin: 18px auto 0;
  border-block: 1px solid rgba(17, 17, 17, 0.12);
}

.premium-drop-ticker div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 48px;
  animation: premiumTicker 32s linear infinite;
}

.premium-drop-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  color: #111111;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.premium-drop-ticker span::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(17, 17, 17, 0.28);
}

body:not([data-page="admin"]) .product-card {
  position: relative;
}

body:not([data-page="admin"]) .product-card::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 68px;
  left: 20%;
  height: 1px;
  background: #111111;
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

body:not([data-page="admin"]) .product-card:hover::after {
  opacity: 0.18;
  transform: scaleX(1);
}

.product-card__extras {
  display: grid;
  justify-items: start;
  gap: 4px;
  margin-top: 3px;
}

.product-card__extras > span {
  color: #777777;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.compare-button {
  position: absolute;
  top: 56px;
  right: 12px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.compare-button span,
.compare-button span::before {
  display: block;
  width: 13px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 2px;
  content: "";
}

.compare-button span::before {
  width: 9px;
  height: 20px;
  margin: -5px 0 0 9px;
}

.compare-button:hover,
.compare-button.is-active {
  color: var(--paper);
  background: var(--dark);
  transform: translateY(-2px);
}

body:not([data-page="admin"]) .quick-preview {
  min-height: 38px;
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  color: #111111;
  background: #ffffff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

body:not([data-page="admin"]) .quick-preview:hover {
  color: #ffffff;
  background: #4d5540;
}

body:not([data-page="admin"]) .quick-size.is-selected {
  color: #ffffff !important;
  border-color: #111111 !important;
  background: #111111 !important;
  box-shadow: inset 0 0 0 1px #111111;
}

/* Premium shop catalog */
.shop-page {
  display: grid;
  gap: 44px;
  padding-bottom: 58px;
}

.shop-editorial-hero {
  width: min(1500px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: stretch;
  margin: 28px auto 0;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #f6f6f1;
}

.shop-editorial-hero__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 460px;
}

.shop-editorial-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.86;
  font-weight: 1000;
  text-transform: uppercase;
}

.shop-editorial-hero p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 17px;
  line-height: 1.55;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.shop-editorial-hero__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #e8e8e3;
}

.shop-editorial-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-editorial-hero__image:hover img {
  transform: scale(1.035);
}

.shop-editorial-hero__image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: #111111;
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.shop-category-strip {
  width: min(1500px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto;
}

.shop-category-strip a {
  position: relative;
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 4px;
  overflow: hidden;
  padding: 14px;
  color: #ffffff;
  background: #111111;
}

.shop-category-strip a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.74));
}

.shop-category-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 260ms ease;
}

.shop-category-strip a:hover img {
  transform: scale(1.04);
}

.shop-category-strip span,
.shop-category-strip em,
.shop-category-strip small {
  position: relative;
  z-index: 2;
  font-style: normal;
  text-transform: uppercase;
}

.shop-category-strip span {
  font-size: 14px;
  font-weight: 950;
}

.shop-category-strip em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 850;
}

.shop-category-strip small {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
}

.shop-assurance-rail {
  width: min(1500px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -18px auto 0;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.1);
}

.shop-assurance-rail article {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
  background: #ffffff;
}

.shop-assurance-rail span {
  color: rgba(17, 17, 17, 0.38);
  font-size: 11px;
  font-weight: 950;
}

.shop-assurance-rail strong {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.shop-assurance-rail p {
  max-width: 360px;
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
  line-height: 1.48;
}

.catalog-section {
  width: min(1500px, calc(100% - 32px));
  display: grid;
  gap: 20px;
  margin: 0 auto;
}

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.catalog-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
}

.catalog-head [data-product-count] {
  display: inline-block;
  margin-top: 8px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.catalog-sort,
.search-field {
  display: grid;
  gap: 8px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.catalog-sort select,
.search-field input {
  min-height: 48px;
  min-width: 220px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.catalog-tools {
  position: sticky;
  z-index: 20;
  top: 62px;
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.category-tab {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.category-tab em {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #ffffff;
  background: #111111;
  font-style: normal;
  font-size: 10px;
}

.category-tab.is-active,
.category-tab:hover {
  color: #ffffff;
  background: #111111;
}

.category-tab.is-active em,
.category-tab:hover em {
  color: #111111;
  background: #ffffff;
}

.subcategory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-top: -8px;
}

.subcategory-tabs[hidden] {
  display: none;
}

.subcategory-tab {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #f8f8f4;
  color: rgba(17, 17, 17, 0.76);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.subcategory-tab em {
  color: rgba(17, 17, 17, 0.42);
  font-style: normal;
  font-size: 10px;
}

.subcategory-tab.is-active,
.subcategory-tab:hover {
  color: #ffffff;
  border-color: #111111;
  background: #111111;
}

.subcategory-tab.is-active em,
.subcategory-tab:hover em {
  color: rgba(255, 255, 255, 0.72);
}

.shop-product-grid {
  padding-top: 10px;
}

.catalog-load-more {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  padding: 22px 0 8px;
}

.catalog-load-more .button {
  min-width: min(360px, 100%);
  justify-content: center;
}

.catalog-load-more span {
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
}

.catalog-filter-panel {
  display: grid;
  grid-template-columns: repeat(2, auto) repeat(2, minmax(150px, 0.18fr)) minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #f8f8f4;
}

.catalog-filter-panel label {
  display: grid;
  gap: 8px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.catalog-filter-panel select,
.catalog-filter-panel input[type="range"] {
  min-height: 42px;
}

.catalog-filter-panel select {
  padding: 0 10px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #ffffff;
  color: #111111;
  font-weight: 850;
}

.check-toggle {
  min-height: 42px;
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px !important;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #ffffff;
  cursor: pointer;
}

.check-toggle input {
  width: 16px;
  height: 16px;
}

.price-range-filter strong {
  color: #111111;
}

.price-range-filter input {
  accent-color: #111111;
}

.compare-drawer {
  position: fixed;
  inset: 0;
  z-index: 64;
  pointer-events: none;
}

.compare-drawer.is-open {
  pointer-events: auto;
}

.compare-drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.compare-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: min(760px, 94vw);
  height: 100%;
  padding: 28px;
  overflow: auto;
  background: #ffffff;
  box-shadow: -24px 0 60px rgba(17, 17, 17, 0.18);
  transform: translateX(102%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.compare-drawer.is-open .compare-drawer__panel,
body.compare-open .compare-drawer__panel {
  transform: translateX(0);
}

.compare-drawer__panel header,
.compare-drawer__panel footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.compare-table {
  display: grid;
  gap: 12px;
}

.compare-table__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.compare-table__products article,
.compare-table__row {
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #f5f5f2;
}

.compare-table__products img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  background: #ece9e1;
}

.compare-table__products strong {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.compare-table__products button,
.compare-table__actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 0 10px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 6px;
  color: #111111;
  background: #ffffff;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  cursor: pointer;
}

.compare-table__row {
  display: grid;
  grid-template-columns: 110px repeat(auto-fit, minmax(110px, 1fr));
  align-items: center;
  gap: 10px;
}

.compare-table__row span {
  color: #77736d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-table__row em {
  color: #111111;
  font-style: normal;
  font-weight: 850;
}

.compare-table__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-view-drawer {
  position: fixed;
  inset: 0;
  z-index: 63;
  pointer-events: none;
}

.quick-view-drawer.is-open {
  pointer-events: auto;
}

.quick-view-drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.quick-view__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(620px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(260px, 0.9fr) auto;
  gap: 18px;
  padding: 28px;
  overflow: auto;
  background: #ffffff;
  box-shadow: -24px 0 60px rgba(17, 17, 17, 0.16);
  transform: translateX(100%);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quick-view-drawer.is-open .quick-view__panel,
body.quick-view-open .quick-view__panel {
  transform: translateX(0);
}

.quick-view__panel header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.quick-view__panel h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.quick-view__media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #f7f6f3;
}

.quick-view__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
}

.quick-view__media span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  color: #111111;
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-view__content {
  display: grid;
  gap: 16px;
}

.quick-view__content p {
  margin: 0;
  color: #555555;
}

.quick-view__options {
  display: grid;
  gap: 14px;
}

.quick-view__options span {
  display: block;
  margin-bottom: 8px;
  color: #666666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-view__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.atelier-journal {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 72px auto 0;
  background: rgba(17, 17, 17, 0.12);
}

.atelier-journal article {
  min-height: 270px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 26px;
  background: #ffffff;
  transition: background 180ms ease, transform 180ms ease;
}

.atelier-journal article:hover {
  background: #f4f1ea;
  transform: translateY(-4px);
}

.atelier-journal span {
  color: #777777;
  font-size: 12px;
  font-weight: 950;
}

.atelier-journal h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.atelier-journal p {
  margin: 0;
  color: #555555;
}

.fit-finder {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(140px, 0.32fr));
  gap: 10px;
  align-items: stretch;
  margin: 54px auto 0;
}

.fit-finder > div {
  min-height: 160px;
  display: grid;
  align-content: center;
  padding: 24px;
  color: #ffffff;
  background: #111111;
}

.fit-finder span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fit-finder h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.98;
  text-transform: uppercase;
}

.fit-finder a {
  min-height: 160px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: #111111;
  background: #ffffff;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.fit-finder a:hover {
  color: #ffffff;
  background: #111111;
  transform: translateY(-3px);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 58;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: #111111;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top span {
  animation: softPulse 1.8s ease-in-out infinite;
  font-weight: 1000;
}

@media (max-width: 960px) {
  .atelier-journal,
  .fit-finder {
    grid-template-columns: 1fr;
  }

  .fit-finder a,
  .fit-finder > div {
    min-height: 118px;
  }
}

@media (max-width: 760px) {
  .premium-drop-ticker,
  .lofi-category-board,
  .atelier-journal,
  .fit-finder {
    width: calc(100% - 32px);
  }

  .quick-view__panel {
    padding: 22px;
  }

  .quick-view__actions {
    grid-template-columns: 1fr;
  }
}

/* Ecommerce account and checkout layer */
.menu-section-label {
  display: block;
  margin: 22px 0 7px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body:not([data-page="admin"]) .site-nav .menu-section-label:first-child {
  margin-top: 0;
}

body:not([data-page="admin"]) .site-nav a.is-authenticated {
  color: var(--blue);
}

.button-light {
  color: var(--dark);
  background: var(--paper);
}

.button-light:hover {
  color: var(--paper);
  background: var(--olive);
}

.checkout-page,
.account-page {
  background:
    linear-gradient(180deg, #f7f7f3 0, #ffffff 340px),
    var(--paper);
}

.checkout-hero,
.account-hero {
  width: min(1260px, calc(100% - 48px));
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding: clamp(46px, 8vw, 86px) 0 32px;
}

.checkout-hero h1,
.account-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.98;
  text-transform: uppercase;
}

.checkout-hero p:not(.eyebrow),
.account-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.checkout-layout {
  width: min(1260px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.44fr);
  gap: 22px;
  align-items: start;
  margin: 0 auto;
  padding-bottom: 74px;
}

.checkout-form,
.checkout-summary,
.account-card,
.account-profile,
.account-benefits article,
.account-order {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.checkout-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
}

.checkout-form.is-disabled {
  opacity: 0.58;
}

.checkout-form.is-disabled button[type="submit"] {
  pointer-events: none;
}

.checkout-form section {
  display: grid;
  gap: 14px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}

.checkout-form section > span,
.account-card > span,
.account-benefits span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-form h2,
.account-card h2,
.account-orders h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.checkout-form label,
.account-card label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-options label,
.shipping-options label {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.shipping-options {
  display: grid;
  gap: 10px;
}

.shipping-options label span {
  display: grid;
  gap: 2px;
}

.shipping-options em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.payment-options input,
.shipping-options input {
  width: 18px;
  min-height: 18px;
}

.checkout-summary {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
  padding: 20px;
}

.checkout-promo {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f8f4;
}

.checkout-promo > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-promo div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.checkout-promo input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 11px;
  background: #ffffff;
  font-weight: 850;
  text-transform: uppercase;
}

.checkout-promo p {
  min-height: 16px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
}

.checkout-lines {
  display: grid;
  gap: 12px;
}

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

.checkout-line img {
  width: 82px;
  height: 102px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--surface);
}

.checkout-line h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.checkout-line strong,
.checkout-total-box dd,
.cart-line strong,
.cart-drawer__panel footer strong,
.admin-stat strong,
.admin-product-item p,
.admin-preview-card em,
.admin-order-item__top strong,
.admin-customer-item strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  white-space: nowrap;
}

.checkout-line p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.checkout-total-box {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border-radius: 6px;
  color: var(--paper);
  background: var(--dark);
}

.checkout-total-box div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.checkout-total-box dt {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
  text-transform: uppercase;
}

.checkout-total-box dd {
  margin: 0;
  font-weight: 950;
}

.checkout-success {
  display: none;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(91, 101, 72, 0.28);
  border-radius: var(--radius);
  background: #eef3e8;
}

.checkout-success.is-visible {
  display: grid;
  animation: revealUp 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.checkout-success span,
.checkout-trust span {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-success strong {
  font-size: 24px;
}

.checkout-success p {
  margin: 0;
  color: var(--ink-soft);
}

.checkout-empty {
  display: grid;
}

.checkout-login-required {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 242, 0.98)),
    radial-gradient(circle at 18% 0%, rgba(147, 34, 24, 0.1), transparent 34%);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.checkout-login-required span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-login-required strong {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.checkout-login-required p {
  max-width: 56ch;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 750;
}

.checkout-login-required div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.checkout-trust span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  text-align: center;
}

.account-hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  align-items: end;
}

.account-hero__panel {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 22px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.88)),
    url("assets/product-bomber.png") center / cover;
  box-shadow: var(--shadow-soft);
}

.account-hero__panel span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-hero__panel strong {
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.account-auth,
.account-dashboard {
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 74px;
}

.account-auth {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.account-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
}

.account-card__intro {
  max-width: 54ch;
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.account-card form {
  display: grid;
  gap: 13px;
}

.otp-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.otp-row .button {
  min-height: 46px;
  white-space: nowrap;
}

.otp-row .button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.account-card--dark {
  color: var(--paper);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.account-card--dark label {
  color: rgba(255, 255, 255, 0.76);
}

.account-card--dark .account-card__intro {
  color: rgba(255, 255, 255, 0.68);
}

.account-card--dark input {
  border-color: rgba(255, 255, 255, 0.24);
}

.account-status {
  grid-column: 1 / -1;
  min-height: 26px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink-soft);
  font-weight: 900;
}

.account-status:empty {
  display: none;
}

.account-status.is-error {
  border-color: rgba(147, 34, 24, 0.32);
  color: #932218;
  background: #fff4f1;
}

.account-status.is-success {
  border-color: rgba(91, 101, 72, 0.34);
  color: #40502f;
  background: #eef3e8;
}

.account-status.is-info {
  border-color: rgba(17, 17, 17, 0.14);
  color: var(--ink);
  background: #f8f8f4;
}

.account-dashboard {
  display: grid;
  gap: 18px;
}

.account-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 3vw, 28px);
}

.account-profile h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.account-profile p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.account-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.account-benefits article {
  min-height: 168px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
}

.account-benefits strong {
  font-size: 18px;
  text-transform: uppercase;
}

.account-benefits p {
  margin: 0;
  color: var(--ink-soft);
}

.account-orders {
  display: grid;
  gap: 18px;
}

.account-orders [data-account-orders] {
  display: grid;
  gap: 12px;
}

.account-order {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.account-order__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.account-order span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-order h3 {
  margin: 5px 0 0;
  font-size: 22px;
}

.account-order p {
  margin: 6px 0 0;
  color: var(--muted);
}

.account-order ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.account-order li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.account-order em {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.admin-order-list,
.admin-customer-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-order-item,
.admin-customer-item {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.admin-order-item__top,
.admin-customer-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-order-item h3,
.admin-customer-item h3 {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.1;
}

.admin-order-item p,
.admin-customer-item p {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.admin-customer-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-align: right;
  text-transform: uppercase;
}

.admin-customer-item strong {
  display: block;
  margin-top: 6px;
  text-align: right;
}

.admin-order-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-order-details > div,
.admin-order-lines {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.admin-order-details span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-order-details small {
  display: block;
  color: var(--muted);
}

.admin-order-lines {
  display: grid;
  gap: 6px;
}

.admin-order-lines span {
  color: var(--ink-soft);
  font-size: 13px;
}

@media (max-width: 980px) {
  .shop-editorial-hero {
    grid-template-columns: 1fr;
  }

  .shop-editorial-hero__copy {
    min-height: auto;
  }

  .shop-editorial-hero__image {
    min-height: 420px;
  }

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

  .shop-assurance-rail {
    grid-template-columns: 1fr;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

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

  .price-range-filter {
    grid-column: 1 / -1;
  }

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

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

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

  .category-tabs {
    justify-content: flex-start;
  }

  .subcategory-tabs {
    justify-content: flex-start;
  }

  .checkout-layout,
  .account-hero,
  .account-auth,
  .support-hero,
  .support-columns,
  .support-editorial,
  .brand-manifesto,
  .support-cta {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

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

  .account-premium-grid,
  .admin-insight-grid,
  .policy-grid,
  .support-grid,
  .account-service-grid,
  .checkout-trust-grid,
  .contact-service-grid,
  .about-origin-grid {
    grid-template-columns: 1fr;
  }

  .support-kpis,
  .support-steps,
  .brand-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-shipping-editor {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body:not([data-page="admin"]) .site-nav {
    width: min(390px, calc(100% - 18px));
    padding: 76px 20px 22px;
  }

  .nav-drawer-grid,
  .nav-drawer-promo {
    grid-template-columns: 1fr;
  }

  .nav-drawer-promo img {
    width: 100%;
    height: 180px;
  }

  .shop-editorial-hero,
  .shop-category-strip,
  .catalog-section {
    width: calc(100% - 28px);
  }

  .shop-editorial-hero {
    margin-top: 18px;
    padding: 20px;
  }

  .shop-editorial-hero h1 {
    font-size: clamp(42px, 16vw, 68px);
  }

  .shop-editorial-hero__image {
    min-height: 330px;
  }

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

  .shop-category-strip a {
    min-height: 156px;
  }

  .shop-assurance-rail {
    width: calc(100% - 28px);
    margin-top: -24px;
  }

  .shop-assurance-rail article {
    min-height: 0;
    padding: 18px;
  }

  .catalog-head {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-sort select,
  .search-field input {
    width: 100%;
    min-width: 0;
  }

  .catalog-filter-panel {
    grid-template-columns: 1fr;
  }

  body:not([data-page="admin"]) .product-card__bottom {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  body:not([data-page="admin"]) .product-card h3 {
    min-height: auto;
  }

  body:not([data-page="admin"]) .price-stack {
    min-width: 0;
    justify-items: start;
    text-align: left;
  }

  .price-module {
    padding: 10px;
  }

  body:not([data-page="admin"]) {
    padding-bottom: 74px;
  }

  .mobile-sticky-nav {
    display: grid;
  }

  .price-module__main strong {
    font-size: 17px;
  }

  .sticky-product-bar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .sticky-product-bar em {
    grid-column: 1;
    grid-row: 2;
    font-size: 16px;
  }

  .sticky-product-bar .button {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 116px;
  }

  .checkout-hero,
  .account-hero,
  .checkout-layout,
  .account-auth,
  .account-dashboard,
  .support-hero,
  .support-section,
  .support-kpis {
    width: calc(100% - 32px);
  }

  .support-hero {
    margin-top: 18px;
    padding: 24px;
  }

  .support-hero h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .support-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .support-hero__panel {
    min-height: 190px;
  }

  .support-hero__meta {
    gap: 6px;
  }

  .support-hero__meta span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 9px;
  }

  .support-kpis,
  .support-steps,
  .brand-timeline {
    grid-template-columns: 1fr;
  }

  .support-kpis article {
    min-height: 118px;
  }

  .support-section {
    margin-top: 22px;
  }

  .support-section__head {
    align-items: start;
    flex-direction: column;
  }

  .support-section__head h2,
  .brand-manifesto h2,
  .support-cta h2 {
    font-size: clamp(30px, 11vw, 46px);
  }

  .support-card,
  .support-note,
  .support-steps article,
  .brand-timeline article {
    padding: 18px;
  }

  .support-faq summary {
    min-height: 58px;
    padding: 0 16px;
    font-size: 16px;
  }

  .support-faq details p {
    padding: 0 16px 16px;
  }

  .support-image-panel {
    min-height: 300px;
  }

  .brand-story--premium img {
    min-height: 360px;
  }

  .about-page .brand-story--premium {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .about-page .brand-story--premium > div {
    padding: 24px;
  }

  .about-page .brand-story--premium img {
    min-height: 300px;
  }

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

  .brand-manifesto {
    padding: 20px;
  }

  .support-cta {
    align-items: start;
  }

  .checkout-line {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .checkout-line strong {
    grid-column: 2;
  }

  .checkout-trust,
  .admin-order-details,
  .admin-visual-item {
    grid-template-columns: 1fr;
  }

  .admin-visual-item img {
    width: 100%;
    height: 180px;
  }

  .size-advisor form,
  .compare-table__row {
    grid-template-columns: 1fr;
  }

  .compare-drawer__panel {
    width: 100%;
    padding: 20px;
  }

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

  .account-profile,
  .account-order__top,
  .admin-order-item__top,
  .admin-customer-item {
    align-items: stretch;
    flex-direction: column;
  }

  .account-profile__actions {
    display: grid;
  }

  .account-order li {
    flex-direction: column;
  }

  .admin-customer-item span,
  .admin-customer-item strong {
    text-align: left;
  }

  .visual-slot {
    width: calc(100% - 28px);
    margin: 18px auto;
  }

  .visual-block {
    min-height: 360px;
    border-radius: 10px;
  }

  .visual-block::after {
    background: linear-gradient(0deg, rgba(246, 244, 239, 0.92), rgba(246, 244, 239, 0.06) 58%);
  }

  .visual-block__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .visual-block__content strong {
    font-size: 34px;
  }

  .lofi-hero__slide--admin .lofi-hero__slide-copy {
    left: 18px;
    right: 18px;
    bottom: 56px;
    max-width: none;
  }

  .lofi-hero__slide-copy strong {
    font-size: 34px;
  }

  .lofi-hero__slide-copy small {
    font-size: 12px;
  }
}

/* Stable image framing for editorial/lookbook pages. */
body[data-page="lookbook"] .lookbook-hero {
  min-height: clamp(420px, 62vw, 760px);
  aspect-ratio: 16 / 8;
}

body[data-page="lookbook"] .lookbook-hero img {
  object-position: center 46%;
}

body[data-page="lookbook"] .lookbook-grid {
  width: min(1360px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  grid-auto-flow: dense;
}

body[data-page="lookbook"] .lookbook-grid article {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.18)),
    #e9e7e0;
}

body[data-page="lookbook"] .lookbook-grid .lookbook-card--square {
  aspect-ratio: 1 / 1;
}

body[data-page="lookbook"] .lookbook-grid .lookbook-card--portrait {
  aspect-ratio: 4 / 5;
}

body[data-page="lookbook"] .lookbook-grid .lookbook-card--landscape {
  aspect-ratio: 4 / 3;
}

body[data-page="lookbook"] .lookbook-grid .lookbook-card--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

body[data-page="lookbook"] .lookbook-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body[data-page="lookbook"] .lookbook-grid div {
  width: 100%;
  max-width: 100%;
  padding: clamp(18px, 2.4vw, 30px);
}

body[data-page="lookbook"] .lookbook-grid h2 {
  max-width: 12ch;
  font-size: clamp(28px, 3.7vw, 54px);
  line-height: 0.9;
  overflow-wrap: anywhere;
}

body[data-page="lookbook"] .lookbook-grid a {
  width: fit-content;
  max-width: 100%;
}

body[data-page="lookbook"] .lookbook-grid article:nth-child(1) img {
  object-position: 58% center;
}

body[data-page="lookbook"] .lookbook-grid article:nth-child(2) img,
body[data-page="lookbook"] .lookbook-grid article:nth-child(3) img {
  object-position: center center;
}

body[data-page="lookbook"] [data-lookbook-products] .product-card__media,
body[data-page="lookbook"] [data-lookbook-products] .product-card__media > a {
  min-height: 0;
}

@media (max-width: 1120px) and (min-width: 761px) {
  body[data-page="lookbook"] .lookbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="lookbook"] .lookbook-grid .lookbook-card--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 760px) {
  body[data-page="lookbook"] .lookbook-hero,
  body[data-page="lookbook"] .lookbook-grid article {
    min-height: 0 !important;
  }

  body[data-page="lookbook"] .lookbook-hero {
    aspect-ratio: 4 / 5;
  }

  body[data-page="lookbook"] .lookbook-grid {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-page="lookbook"] .lookbook-grid article {
    grid-column: auto !important;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }

  body[data-page="lookbook"] .lookbook-grid .lookbook-card--portrait {
    aspect-ratio: 4 / 5;
  }

  body[data-page="lookbook"] .lookbook-grid .lookbook-card--landscape,
  body[data-page="lookbook"] .lookbook-grid .lookbook-card--wide {
    aspect-ratio: 16 / 10;
  }

  body[data-page="lookbook"] .lookbook-grid div {
    padding: 16px;
  }

  body[data-page="lookbook"] .lookbook-grid h2 {
    max-width: 11ch;
    font-size: clamp(26px, 8vw, 36px);
  }
}

/* Mobile storefront pass: keep product browsing fast and unobstructed. */
body:not([data-page="admin"]) .product-card {
  content-visibility: auto;
  contain-intrinsic-size: 520px;
}

/* Launch polish: collection/category pages should feel editorial without the giant side image. */
.collection-hero {
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 20px;
}

.collection-hero > div {
  min-height: 0;
  padding: clamp(24px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.86)),
    var(--dark);
}

.collection-hero img {
  height: clamp(180px, 24vw, 340px);
  min-height: 0;
  object-fit: cover;
  object-position: center 38%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-top: 0;
}

.collection-tabs a,
.collection-subtabs a {
  border-color: rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
}

.collection-tabs a.is-active,
.collection-subtabs a.is-active {
  color: #111111;
  background: #ffffff;
}

@media (max-width: 760px) {
  body:not([data-page="admin"]) {
    overflow-x: hidden;
  }

  body:not([data-page="admin"]) .site-header {
    min-height: 58px;
    padding: 0 12px;
  }

  body:not([data-page="admin"]) .brand {
    font-size: 21px;
    line-height: 1;
  }

  body:not([data-page="admin"]) .header-actions {
    gap: 4px;
  }

  body:not([data-page="admin"]) .header-icon {
    width: 30px;
    height: 38px;
  }

  .lofi-storefront {
    padding-bottom: 12px;
  }

  .lofi-hero {
    width: 100%;
    margin-top: 0;
  }

  .lofi-hero__frame {
    height: clamp(245px, 68vw, 360px);
    min-height: 0 !important;
    border-radius: 0;
  }

  .lofi-hero__slide img {
    min-height: 0;
    object-position: center top;
    transform: scale(1.01);
    animation: none;
  }

  .lofi-hero__slide--campaign img {
    object-position: center center;
  }

  .lofi-hero__controls {
    right: 12px;
    bottom: 12px;
    top: auto;
    flex-direction: row;
    transform: none;
  }

  .lofi-hero__control {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .lofi-hero__dots {
    display: none;
  }

  .lofi-hero__caption {
    right: 14px;
    top: 14px;
    bottom: auto;
    max-width: 170px;
    font-size: 9px;
    line-height: 1.25;
  }

  .section--lofi {
    width: calc(100% - 24px);
    padding: 38px 0 22px;
  }

  .shop-page {
    gap: 24px;
    padding-bottom: 36px;
  }

  .page-main {
    padding-top: 0;
  }

  .collection-hero,
  .collection-showcase,
  .lookbook-hero,
  .lookbook-grid {
    width: calc(100% - 20px);
  }

  .collection-hero {
    gap: 0;
    padding: 10px 0 0;
  }

  .collection-hero > div {
    min-height: 0 !important;
    padding: 18px;
  }

  .collection-hero h1 {
    font-size: clamp(28px, 9.4vw, 40px);
    line-height: 0.96;
  }

  .collection-hero p:not(.eyebrow) {
    max-width: 100%;
    margin: 8px 0 0;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .collection-hero img {
    width: 100%;
    height: 138px;
    min-height: 0 !important;
    object-position: center 34%;
  }

  .collection-tabs,
  .collection-subtabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .collection-tabs a,
  .collection-subtabs a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 11px;
    font-size: 10px;
  }

  .shop-editorial-hero,
  .catalog-section {
    width: 100%;
  }

  .shop-editorial-hero {
    gap: 14px;
    margin-top: 0;
    padding: 16px;
    border-right: 0;
    border-left: 0;
  }

  .shop-editorial-hero__copy {
    gap: 10px;
    min-height: 0;
  }

  .shop-editorial-hero h1 {
    font-size: clamp(32px, 12vw, 48px);
    line-height: 0.94;
  }

  .shop-editorial-hero p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.45;
  }

  .shop-hero-actions {
    gap: 8px;
    margin-top: 0;
  }

  .shop-hero-actions .button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 11px;
  }

  .shop-editorial-hero__image {
    height: 218px;
    min-height: 0;
  }

  .shop-category-strip {
    width: calc(100% - 20px);
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 0 auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .shop-category-strip a {
    min-width: 148px;
    min-height: 142px;
    padding: 12px;
    scroll-snap-align: start;
  }

  .shop-category-strip small {
    display: none;
  }

  .shop-assurance-rail {
    display: none;
  }

  .catalog-section {
    gap: 12px;
    padding: 0 12px;
  }

  .catalog-head {
    gap: 10px;
    padding-bottom: 10px;
  }

  .catalog-head h2 {
    font-size: 28px;
  }

  .catalog-tools {
    position: static;
    gap: 10px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .catalog-sort select,
  .search-field input {
    min-height: 42px;
  }

  .category-tabs,
  .subcategory-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .category-tab,
  .subcategory-tab {
    min-height: 38px;
    flex: 0 0 auto;
    padding: 0 10px;
    font-size: 10px;
    scroll-snap-align: start;
  }

  .category-tab em,
  .subcategory-tab em {
    min-width: 20px;
    height: 20px;
    font-size: 9px;
  }

  .catalog-filter-panel {
    display: none;
  }

  .lofi-title-row {
    width: calc(100% - 24px);
    gap: 6px;
  }

  body[data-page="lookbook"] .lookbook-hero {
    width: calc(100% - 20px);
    aspect-ratio: 5 / 4;
    border-radius: 10px;
  }

  body[data-page="lookbook"] .lookbook-hero div {
    padding: 18px;
  }

  body[data-page="lookbook"] .lookbook-hero h1 {
    font-size: clamp(28px, 9vw, 38px);
  }

  body[data-page="lookbook"] .lookbook-grid {
    width: calc(100% - 20px);
    gap: 10px;
  }

  body[data-page="lookbook"] .lookbook-grid article {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
  }

  body[data-page="lookbook"] .lookbook-grid div {
    padding: 16px;
  }

  body[data-page="lookbook"] .lookbook-grid h2 {
    font-size: 24px;
  }

  body:not([data-page="admin"]) .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }

  body:not([data-page="admin"]) .product-card,
  body:not([data-page="admin"]) .product-card:hover {
    content-visibility: visible;
    contain-intrinsic-size: auto;
    transform: none;
    animation: none;
    transition: none;
  }

  body:not([data-page="admin"]) .product-card__media {
    aspect-ratio: 3 / 4.12;
    background: #f6f5f1;
  }

  body:not([data-page="admin"]) .product-card__media::after {
    display: none;
  }

  body:not([data-page="admin"]) .product-card__media img {
    object-fit: contain;
    object-position: center bottom;
    padding: 0;
    transform: none !important;
  }

  body:not([data-page="admin"]) .product-card__image--hover {
    display: none;
  }

  body:not([data-page="admin"]) .product-card__quick,
  body:not([data-page="admin"]) .quick-size-row,
  body:not([data-page="admin"]) .quick-size,
  body:not([data-page="admin"]) .quick-action,
  body:not([data-page="admin"]) .quick-preview {
    display: none !important;
  }

  body:not([data-page="admin"]) .product-card__body {
    padding-top: 7px;
  }

  body:not([data-page="admin"]) .product-card h3 {
    font-size: 11px;
    line-height: 1.16;
  }

  body:not([data-page="admin"]) .product-card p {
    font-size: 9.5px;
  }

  body:not([data-page="admin"]) .price-module--card {
    margin-top: 3px;
    padding: 6px 8px;
  }

  body:not([data-page="admin"]) .price-module--card .price-module__main strong {
    font-size: 14px;
  }

  body:not([data-page="admin"]) .product-card__badge,
  body:not([data-page="admin"]) .wishlist-button,
  body:not([data-page="admin"]) .compare-button {
    transform: scale(0.9);
    transform-origin: top left;
  }
}

@media (max-width: 520px) {
  .lofi-hero__frame {
    height: 258px;
    min-height: 0 !important;
  }

  body:not([data-page="admin"]) .product-grid {
    gap: 22px 9px;
  }
}

/* Final mobile commerce pass */
@media (max-width: 760px) {
  :root {
    --mobile-nav-height: 66px;
    --mobile-product-bar-height: 78px;
  }

  body:not([data-page="admin"]) {
    padding-bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom) + 16px);
  }

  body[data-page="product-detail"] {
    padding-bottom: calc(var(--mobile-nav-height) + var(--mobile-product-bar-height) + env(safe-area-inset-bottom) + 28px);
  }

  body:not([data-page="admin"]) .announcement {
    min-height: 26px;
    padding: 5px 12px;
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  body:not([data-page="admin"]) .site-header {
    min-height: 56px;
    grid-template-columns: 48px minmax(0, 1fr) 82px;
    gap: 6px;
    padding: 0 10px;
    border-bottom-color: rgba(17, 17, 17, 0.1);
    background: rgba(255, 255, 255, 0.98);
  }

  body:not([data-page="admin"]) .menu-toggle {
    width: 42px;
    height: 42px;
    gap: 4px;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
  }

  body:not([data-page="admin"]) .menu-toggle__line {
    width: 21px;
  }

  body:not([data-page="admin"]) .brand {
    min-width: 0;
    min-height: 56px;
    justify-self: center;
    font-size: clamp(20px, 6vw, 25px);
    line-height: 1;
    letter-spacing: 0;
  }

  body:not([data-page="admin"]) .header-actions {
    width: 82px;
    justify-self: end;
    justify-content: flex-end;
    gap: 2px;
  }

  body:not([data-page="admin"]) .header-favorite,
  body:not([data-page="admin"]) .header-compare,
  body:not([data-page="admin"]) .header-account {
    display: none;
  }

  body:not([data-page="admin"]) .header-icon {
    width: 38px;
    height: 44px;
  }

  body:not([data-page="admin"]) .header-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
  }

  body:not([data-page="admin"]) .header-bag span,
  body:not([data-page="admin"]) .header-favorite span {
    right: 0;
    top: 5px;
    min-width: 17px;
    height: 17px;
    font-size: 9px;
  }

  .mobile-sticky-nav {
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 92;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-radius: 14px;
  }

  .mobile-sticky-nav [data-compare-open] {
    display: none;
  }

  .mobile-sticky-nav a,
  .mobile-sticky-nav button {
    min-height: 54px;
    padding: 0 3px;
    font-size: 9px;
    line-height: 1.05;
    white-space: nowrap;
  }

  .mobile-sticky-nav span {
    min-width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .lofi-hero {
    margin-bottom: 10px;
  }

  .lofi-hero__frame {
    height: clamp(238px, 62vw, 330px);
  }

  .lofi-hero__control {
    width: 32px;
    height: 32px;
  }

  .premium-drop-ticker {
    overflow: hidden;
    padding: 12px 0;
  }

  .premium-drop-ticker div {
    gap: 34px;
    font-size: 11px;
  }

  .visual-slot {
    width: calc(100% - 20px);
    margin: 14px auto;
  }

  .visual-slot__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .visual-block {
    min-height: 0;
    height: clamp(164px, 48vw, 230px);
    border-radius: 10px;
  }

  .visual-block img {
    min-height: 0;
    height: 100%;
    transform: none;
  }

  .visual-block:hover img {
    transform: none;
  }

  .visual-block__content {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 5px;
    max-width: calc(100% - 28px);
  }

  .visual-block__content em,
  .visual-block__content small {
    font-size: 9px;
  }

  .visual-block__content strong {
    max-width: 92%;
    font-size: clamp(18px, 6vw, 28px);
    line-height: 0.98;
  }

  .visual-block__content b {
    min-height: 28px;
    width: max-content;
    max-width: 100%;
    padding: 0 10px;
    font-size: 9px;
  }

  .visual-slot[data-visual-slot="home-after-hero"] .visual-block,
  .visual-slot[data-visual-slot="home-after-featured"] .visual-block,
  .visual-slot[data-visual-slot="home-after-dynamic"] .visual-block,
  .visual-slot[data-visual-slot="home-after-studio"] .visual-block {
    height: clamp(150px, 43vw, 210px);
  }

  body:not([data-page="admin"]) .wishlist-button {
    width: 34px;
    height: 34px;
    right: 8px;
    top: 8px;
  }

  body:not([data-page="admin"]) .wishlist-button svg {
    width: 18px;
    height: 18px;
  }

  body:not([data-page="admin"]) .compare-button {
    display: none !important;
  }

  body[data-page="product-detail"] .page-main {
    padding-bottom: 32px;
  }

  body[data-page="product-detail"] .product-detail {
    width: calc(100% - 20px);
    gap: 18px;
    padding-top: 16px;
  }

  body[data-page="product-detail"] .product-detail__media {
    gap: 8px;
  }

  body[data-page="product-detail"] .product-gallery__main {
    height: min(118vw, 520px);
    min-height: 0;
    object-fit: contain;
    background: #f5f4f0;
  }

  body[data-page="product-detail"] .product-gallery__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  body[data-page="product-detail"] .product-gallery__thumbs button {
    flex: 0 0 62px;
  }

  body[data-page="product-detail"] .product-detail__content h1 {
    margin-top: 12px;
    font-size: clamp(26px, 8.4vw, 38px);
    line-height: 1.02;
  }

  body[data-page="product-detail"] .product-detail__summary,
  body[data-page="product-detail"] .product-detail__description {
    font-size: 13px;
    line-height: 1.5;
  }

  body[data-page="product-detail"] .price-module--detail {
    width: 100%;
    margin: 12px 0;
    padding: 12px;
  }

  body[data-page="product-detail"] .purchase-panel {
    gap: 12px;
    padding: 14px;
  }

  body[data-page="product-detail"] .purchase-panel .button {
    min-height: 44px;
  }

  body[data-page="product-detail"] .size-row,
  body[data-page="product-detail"] .color-row {
    gap: 7px;
  }

  body[data-page="product-detail"] .product-service-grid,
  body[data-page="product-detail"] .product-premium-strip,
  body[data-page="product-detail"] .hero-actions {
    grid-template-columns: 1fr;
  }

  body[data-page="product-detail"] .sticky-product-bar {
    left: 10px;
    right: 10px;
    bottom: calc(var(--mobile-nav-height) + 12px + env(safe-area-inset-bottom));
    z-index: 110;
    width: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    padding: 10px;
    border-radius: 14px;
  }

  body[data-page="product-detail"] .sticky-product-bar span {
    display: none;
  }

  body[data-page="product-detail"] .sticky-product-bar strong {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.16;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body[data-page="product-detail"] .sticky-product-bar em {
    grid-column: 1;
    grid-row: 2;
    font-size: 15px;
  }

  body[data-page="product-detail"] .sticky-product-bar .button {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 104px;
    min-height: 48px;
    padding: 0 12px;
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  body:not([data-page="admin"]) .site-header {
    grid-template-columns: 44px minmax(0, 1fr) 76px;
    padding: 0 8px;
  }

  body:not([data-page="admin"]) .brand {
    font-size: 20px;
  }

  body:not([data-page="admin"]) .header-actions {
    width: 76px;
  }

  body:not([data-page="admin"]) .header-icon {
    width: 36px;
  }

  .mobile-sticky-nav a,
  .mobile-sticky-nav button {
    font-size: 8px;
  }

  body[data-page="product-detail"] .sticky-product-bar .button {
    min-width: 96px;
  }
}

/* Mobile checkout and hero correction layer */
@media (max-width: 760px) {
  body[data-page="checkout"] {
    padding-bottom: calc(env(safe-area-inset-bottom) + 18px);
  }

  body[data-page="checkout"] .mobile-sticky-nav {
    display: none !important;
  }

  body.cart-open .mobile-sticky-nav,
  body.search-open .mobile-sticky-nav,
  body.wishlist-open .mobile-sticky-nav,
  body.compare-open .mobile-sticky-nav {
    display: none !important;
  }

  body.cart-open {
    overflow: hidden;
  }

  .cart-drawer {
    z-index: 260;
  }

  .cart-drawer__panel {
    top: auto;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    width: auto;
    height: auto;
    max-height: min(88svh, 720px);
    grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 18px;
    box-shadow: 0 -18px 60px rgba(17, 17, 17, 0.24);
    transform: translateY(calc(100% + 18px));
  }

  .cart-drawer.is-open .cart-drawer__panel {
    transform: translateY(0);
  }

  .cart-drawer__panel header {
    gap: 10px;
  }

  .cart-drawer__panel h2 {
    font-size: 26px;
  }

  .cart-list {
    min-height: 0;
    max-height: none;
    overscroll-behavior: contain;
    padding-right: 0;
  }

  .cart-line {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
    padding: 9px;
  }

  .cart-line img {
    width: 70px;
    height: 92px;
  }

  .cart-line h3 {
    font-size: 12px;
  }

  .cart-line p {
    font-size: 10px;
  }

  .cart-drawer__panel footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin: 0 -14px -14px;
    padding: 12px 14px 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), #ffffff 28%);
  }

  .cart-drawer__panel footer strong {
    font-size: 22px;
  }

  .cart-drawer__panel footer .button {
    min-height: 48px;
    width: 100%;
  }

  .lofi-hero {
    width: 100%;
    margin: 0;
    background: #ebe7df;
  }

  .lofi-hero__frame {
    height: auto;
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0;
    background: #e9e3dc;
  }

  .lofi-hero__slide img {
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    object-fit: contain;
    object-position: center center;
    transform: none !important;
  }

  .lofi-hero__slide--campaign img,
  .lofi-hero__slide--admin img {
    object-fit: contain;
    object-position: center center;
  }

  .lofi-hero__slide--plain img {
    object-fit: contain;
  }

  .lofi-hero__slide-copy {
    left: 14px;
    bottom: 14px;
    max-width: 52%;
    gap: 4px;
  }

  .lofi-hero__slide-copy strong {
    font-size: clamp(18px, 6vw, 26px);
    line-height: 0.98;
  }

  .lofi-hero__slide-copy em,
  .lofi-hero__slide-copy small {
    font-size: 9px;
  }

  .lofi-hero__caption {
    right: 10px;
    top: 10px;
    max-width: 132px;
    padding: 4px 6px;
    border-radius: 6px;
    background: rgba(17, 17, 17, 0.16);
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
  }

  .lofi-hero__controls {
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }

  .lofi-hero__control {
    width: 34px;
    height: 34px;
    background: rgba(17, 17, 17, 0.54);
    color: #ffffff;
    backdrop-filter: blur(10px);
  }

  .visual-block--plain img,
  .visual-slot[data-visual-slot="home-after-hero"] .visual-block img,
  .visual-slot[data-visual-slot="home-after-featured"] .visual-block img,
  .visual-slot[data-visual-slot="home-after-dynamic"] .visual-block img,
  .visual-slot[data-visual-slot="home-after-studio"] .visual-block img {
    object-fit: cover;
    object-position: center;
    background: #ece8e1;
  }
}

@media (max-width: 520px) {
  .lofi-hero__frame {
    aspect-ratio: 16 / 9;
    height: auto !important;
  }

  .cart-drawer__panel {
    max-height: min(86svh, 660px);
  }
}

/* Final page polish: about, checkout and admin visual management */
.brand-proof-strip,
.checkout-steps-rail {
  width: min(1260px, calc(100% - 48px));
  margin: 22px auto 0;
}

.brand-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
}

.brand-proof-strip article {
  min-height: 142px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: clamp(18px, 2.4vw, 28px);
  border-right: 1px solid rgba(17, 17, 17, 0.1);
}

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

.brand-proof-strip span,
.checkout-steps-rail span {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-proof-strip span {
  color: var(--red);
}

.brand-proof-strip strong {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.92;
  text-transform: uppercase;
}

.brand-proof-strip em {
  color: var(--ink-soft);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.checkout-steps-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
}

.checkout-steps-rail span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 clamp(14px, 2.4vw, 24px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.checkout-steps-rail span:last-child {
  border-right: 0;
}

.checkout-summary {
  position: sticky;
  top: 104px;
}

body[data-page="checkout"] .checkout-form input,
body[data-page="checkout"] .checkout-form select,
body[data-page="checkout"] .checkout-form textarea {
  font-size: 16px;
}

.admin-list-tools--visuals {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.52fr);
}

.admin-list-tools--visuals input,
.admin-list-tools--visuals select {
  min-height: 44px;
}

@media (max-width: 980px) {
  .brand-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .brand-proof-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }

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

  .checkout-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 760px) {
  body[data-page="about"] .site-footer,
  body[data-page="checkout"] .site-footer {
    margin-bottom: 0;
  }

  .about-page .brand-story--premium,
  .checkout-hero,
  .checkout-layout,
  .brand-proof-strip,
  .checkout-steps-rail,
  body[data-page="about"] .support-section,
  body[data-page="checkout"] .support-section {
    width: calc(100% - 24px);
  }

  .about-page .brand-story--premium {
    margin-top: 12px;
    border-radius: 14px;
  }

  .about-page .brand-story--premium > div {
    padding: 22px;
  }

  .about-page .brand-story--premium h1,
  .checkout-hero h1 {
    font-size: clamp(34px, 11vw, 50px);
    line-height: 0.96;
  }

  .about-page .brand-story--premium p:not(.eyebrow),
  .checkout-hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.5;
  }

  .about-page .brand-story--premium img {
    min-height: 0 !important;
    height: min(58svh, 430px);
    object-fit: cover;
    object-position: center top;
  }

  .brand-proof-strip {
    margin-top: 12px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.07);
  }

  .brand-proof-strip article {
    min-height: 116px;
    padding: 14px;
  }

  .brand-proof-strip strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .brand-proof-strip em {
    font-size: 11px;
  }

  .about-origin-grid,
  .brand-manifesto,
  .about-signature,
  .support-cta {
    grid-template-columns: 1fr;
  }

  .about-origin-grid article,
  .brand-timeline article,
  .support-card {
    border-radius: 12px;
  }

  .checkout-hero {
    padding: 24px 0 10px;
    gap: 12px;
  }

  .checkout-steps-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
    border-radius: 14px;
  }

  .checkout-steps-rail span {
    min-height: 46px;
    padding: 0 12px;
    font-size: 10px;
  }

  .checkout-steps-rail span:nth-child(2) {
    border-right: 0;
  }

  .checkout-steps-rail span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .checkout-trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .checkout-layout {
    gap: 14px;
    padding-bottom: 26px;
  }

  .checkout-form,
  .checkout-summary {
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
  }

  .checkout-form {
    gap: 12px;
    padding: 14px;
  }

  .checkout-form section {
    gap: 10px;
    padding-bottom: 16px;
  }

  .checkout-form h2 {
    font-size: 24px;
  }

  .checkout-form .form-grid,
  .checkout-form .form-grid--three {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .payment-options label,
  .shipping-options label {
    min-height: 50px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .payment-options label span,
  .shipping-options label span {
    min-width: 0;
    line-height: 1.28;
  }

  .checkout-summary {
    padding: 14px;
  }

  .checkout-assurance strong {
    font-size: 18px;
    line-height: 1.2;
  }

  .admin-list-tools--visuals {
    grid-template-columns: 1fr;
  }
}

/* NexFrame Merch kilitli koleksiyon */
.nexframe-home-section {
  margin-top: 18px;
}

.nexframe-home-card,
.collection-hero--nexframe,
.nexframe-info-card,
.nexframe-product-card__media,
.nexframe-detail__media,
.nexframe-detail__content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(210, 244, 239, 0.18);
  background:
    radial-gradient(circle at 82% 18%, rgba(68, 203, 190, 0.18), transparent 28%),
    linear-gradient(135deg, #0a0d0f 0%, #111615 52%, #0a0c0d 100%);
  color: #ffffff;
}

.nexframe-home-card {
  min-height: clamp(270px, 30vw, 420px);
  display: grid;
  align-content: end;
  gap: 24px;
  padding: clamp(22px, 4vw, 44px);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.18);
  isolation: isolate;
}

.nexframe-home-card:hover {
  transform: translateY(-2px);
  border-color: rgba(151, 238, 229, 0.42);
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.22);
}

.nexframe-brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(72px, 10vw, 132px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.32),
    0 0 0 8px rgba(255, 255, 255, 0.04);
}

.nexframe-home-card__logo {
  position: absolute;
  top: clamp(20px, 3vw, 38px);
  right: clamp(20px, 3vw, 38px);
}

.nexframe-home-card__grid,
.nexframe-hero-visual__grid,
.nexframe-product-card__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.72), transparent 72%);
}

.nexframe-home-card__status,
.nexframe-hero__status span,
.nexframe-lock-overlay,
.nexframe-detail__notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nexframe-home-card__status {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.nexframe-home-card svg,
.nexframe-lock-icon,
.nexframe-hero-lock {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.nexframe-home-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 760px;
  gap: 10px;
}

.nexframe-home-card__body small,
.nexframe-product-card__badge,
.nexframe-info-card span {
  color: #9eece2;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.nexframe-home-card__body strong {
  font-size: clamp(42px, 8vw, 104px);
  line-height: 0.86;
  text-transform: uppercase;
}

.nexframe-home-card__body em {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(15px, 1.6vw, 20px);
  font-style: normal;
  line-height: 1.45;
}

.nexframe-home-card__cta {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.collection-hero--nexframe {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 0;
  border-radius: 8px;
}

.collection-hero--nexframe > div:first-child {
  background: transparent;
}

.nexframe-hero__status {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.nexframe-hero__status span {
  width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.nexframe-hero__status em {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.45;
}

.nexframe-hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.nexframe-hero-visual strong {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(34px, 5vw, 74px);
  line-height: 0.88;
  text-transform: uppercase;
}

.nexframe-hero-visual__logo {
  width: clamp(92px, 12vw, 160px);
}

.nexframe-hero-lock {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  color: #9eece2;
}

.nexframe-hero-visual em {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.collection-showcase--nexframe {
  grid-template-columns: 1.2fr 0.8fr;
}

.nexframe-info-card {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(20px, 3vw, 32px);
}

.nexframe-info-card--large {
  grid-row: span 2;
  min-height: 520px;
}

.nexframe-info-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.94;
  text-transform: uppercase;
}

.nexframe-info-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.48;
}

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

.nexframe-product-card {
  gap: 0;
}

.nexframe-product-card__media {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  isolation: isolate;
}

.nexframe-product-card__brand,
.nexframe-product-card__type {
  position: relative;
  z-index: 1;
}

.nexframe-product-card__brand {
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 1000;
  line-height: 0.88;
  text-transform: uppercase;
}

.nexframe-product-card__logo {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 72px;
}

.nexframe-product-card__type {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.nexframe-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(5, 7, 8, 0.18), rgba(5, 7, 8, 0.56));
  color: #ffffff;
  text-align: center;
}

.nexframe-lock-overlay .nexframe-lock-icon {
  width: 42px;
  height: 42px;
  color: #9eece2;
}

.nexframe-lock-overlay strong,
.nexframe-lock-overlay em {
  display: block;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.nexframe-lock-overlay strong {
  font-size: 13px;
}

.nexframe-lock-overlay em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.nexframe-product-card__body {
  gap: 14px;
  padding-top: 14px;
}

.nexframe-product-card__body h3 {
  margin-top: 8px;
  font-size: 18px;
  text-transform: uppercase;
}

.nexframe-product-card__body p {
  max-width: 34ch;
  text-transform: none;
}

.nexframe-product-card__bottom {
  display: grid;
  gap: 10px;
  align-items: start;
}

.nexframe-product-card__bottom strong {
  font-size: 22px;
  font-weight: 1000;
  text-transform: uppercase;
}

.nexframe-product-card__bottom .quick-action:disabled,
.purchase-panel--locked .button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.price-module--locked {
  border-color: rgba(67, 181, 168, 0.28);
  background:
    linear-gradient(135deg, rgba(10, 13, 15, 0.98), rgba(19, 27, 26, 0.96)),
    #111111;
  color: #ffffff;
}

.price-module--locked .price-module__top span,
.price-module--locked .price-module__note,
.price-module--locked .price-module__main strong {
  color: #ffffff;
}

.price-module--locked .price-module__top em {
  color: #0a0d0f;
  background: #9eece2;
}

.nexframe-detail {
  width: min(1360px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  margin: 22px auto 0;
}

.nexframe-detail__media {
  min-height: min(72svh, 720px);
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.nexframe-detail__logo {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  width: clamp(84px, 11vw, 146px);
}

.nexframe-detail__content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 48px);
  border-radius: 8px;
}

.nexframe-detail__content h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
}

.nexframe-detail__content .product-detail__summary {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.nexframe-detail__notice {
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.nexframe-detail__notice .nexframe-lock-icon {
  flex: 0 0 auto;
  color: #9eece2;
}

.nexframe-detail__notice strong,
.nexframe-detail__notice p {
  margin: 0;
}

.nexframe-detail__notice p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.purchase-panel--locked {
  width: min(520px, 100%);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.nexframe-related {
  margin-top: 36px;
}

@media (max-width: 980px) {
  .collection-hero--nexframe,
  .collection-showcase--nexframe,
  .nexframe-detail,
  .nexframe-product-grid {
    grid-template-columns: 1fr;
  }

  .nexframe-hero-visual,
  .nexframe-info-card--large,
  .nexframe-detail__media {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .nexframe-home-card {
    min-height: 300px;
    border-radius: 14px;
    padding: 20px;
  }

  .nexframe-home-card__logo {
    width: 66px;
    top: 18px;
    right: 18px;
  }

  .nexframe-home-card__body strong {
    font-size: clamp(38px, 13vw, 54px);
  }

  .collection-hero--nexframe,
  .collection-showcase--nexframe,
  .nexframe-detail {
    width: calc(100% - 20px);
  }

  .collection-hero--nexframe {
    border-radius: 14px;
  }

  .nexframe-hero-visual {
    min-height: 240px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nexframe-hero-visual__logo {
    width: 84px;
  }

  .nexframe-info-card,
  .nexframe-info-card--large {
    min-height: 220px;
    border-radius: 14px;
  }

  .nexframe-product-card__media {
    min-height: 330px;
    border-radius: 14px;
  }

  .nexframe-product-card__logo {
    width: 58px;
    top: 14px;
    right: 14px;
  }

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

  .nexframe-detail {
    gap: 12px;
    margin-top: 12px;
  }

  .nexframe-detail__media {
    min-height: 340px;
    border-radius: 14px;
  }

  .nexframe-detail__logo {
    width: 68px;
    top: 14px;
    right: 14px;
  }

  .nexframe-detail__content {
    padding: 18px;
    border-radius: 14px;
  }

  .nexframe-detail__content h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .purchase-panel--locked {
    gap: 10px;
  }
}

/* Final lookbook card sizing pass. Keeps admin-selected ratios stable. */
body[data-page="lookbook"] .lookbook-grid {
  width: min(1360px, calc(100% - 40px));
  grid-auto-flow: dense;
  align-items: stretch;
}

body[data-page="lookbook"] .lookbook-grid article {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}

body[data-page="lookbook"] .lookbook-grid .lookbook-card--square {
  aspect-ratio: 1 / 1;
}

body[data-page="lookbook"] .lookbook-grid .lookbook-card--portrait {
  aspect-ratio: 4 / 5;
}

body[data-page="lookbook"] .lookbook-grid .lookbook-card--landscape {
  aspect-ratio: 4 / 3;
}

body[data-page="lookbook"] .lookbook-grid .lookbook-card--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

body[data-page="lookbook"] .lookbook-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="lookbook"] .lookbook-grid div {
  width: 100%;
  max-width: 100%;
}

body[data-page="lookbook"] .lookbook-grid h2 {
  max-width: 12ch;
  overflow-wrap: anywhere;
}

@media (max-width: 1120px) and (min-width: 761px) {
  body[data-page="lookbook"] .lookbook-grid .lookbook-card--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 760px) {
  body[data-page="lookbook"] .lookbook-grid {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-page="lookbook"] .lookbook-grid article {
    grid-column: auto !important;
    border-radius: 12px;
  }

  body[data-page="lookbook"] .lookbook-grid .lookbook-card--square {
    aspect-ratio: 1 / 1;
  }

  body[data-page="lookbook"] .lookbook-grid .lookbook-card--portrait {
    aspect-ratio: 4 / 5;
  }

  body[data-page="lookbook"] .lookbook-grid .lookbook-card--landscape,
  body[data-page="lookbook"] .lookbook-grid .lookbook-card--wide {
    aspect-ratio: 16 / 10;
  }

  body[data-page="lookbook"] .lookbook-grid div {
    padding: 16px;
  }

  body[data-page="lookbook"] .lookbook-grid h2 {
    max-width: 11ch;
    font-size: clamp(24px, 8vw, 34px);
  }
}

/* Official THREON logo integration. */
.brand {
  position: relative;
  justify-content: center;
  width: clamp(144px, 13vw, 184px);
  height: 48px;
  min-height: 48px;
  gap: 0;
  overflow: visible;
  font-size: 0 !important;
  letter-spacing: 0;
}

.brand::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("assets/threon-logo-black-header.png") center / contain no-repeat;
}

.brand > span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.brand .brand-mark {
  display: none !important;
}

body:not([data-page="admin"]) .brand {
  width: clamp(148px, 18vw, 196px);
  height: 52px;
  min-height: 52px;
}

body[data-page="admin"] .brand {
  width: 154px;
  height: 50px;
  min-height: 50px;
}

.admin-form-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-coupon-item {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.035), rgba(255, 255, 255, 0.96)),
    var(--surface);
}

.admin-coupon-item h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.admin-coupon-item p,
.admin-coupon-item small {
  display: block;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-weight: 850;
  line-height: 1.45;
}

.admin-visual-item[draggable="true"],
.admin-shelf-item[draggable="true"] {
  cursor: grab;
}

.admin-visual-item[draggable="true"]:active,
.admin-shelf-item[draggable="true"]:active {
  cursor: grabbing;
}

.admin-variant-table {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.admin-variant-table__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-variant-table__head strong,
.admin-variant-table__head span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-variant-table__grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.5fr 1.1fr;
  border: 1px solid var(--line);
  overflow: hidden;
}

.admin-variant-table__grid > * {
  min-width: 0;
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.admin-variant-table__grid > span {
  color: var(--muted);
  font-weight: 950;
  text-transform: uppercase;
}

.admin-variant-table__grid em,
.admin-variant-table__grid small {
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 850;
}

.limited-drop-countdown {
  width: min(1320px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 20px auto;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.82)),
    #111111;
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.16);
}

.limited-drop-countdown a {
  display: grid;
  gap: 4px;
  color: inherit;
}

.limited-drop-countdown span,
.limited-drop-countdown small,
.limited-drop-countdown em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.limited-drop-countdown strong {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.95;
  text-transform: uppercase;
}

.limited-drop-countdown__timer {
  display: grid;
  grid-template-columns: repeat(4, 70px);
  gap: 8px;
}

.limited-drop-countdown__timer span {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.limited-drop-countdown__timer strong {
  font-size: 24px;
}

.search-drawer__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 2px;
}

.search-drawer__summary strong,
.search-drawer__summary span {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.search-drawer__summary span,
.search-result i {
  color: var(--muted);
}

.search-result i {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.size-advisor p span,
.size-advisor p small {
  display: block;
  margin-top: 5px;
  line-height: 1.45;
}

.size-advisor p small {
  color: rgba(17, 17, 17, 0.58);
}

.loyalty-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.1);
}

.loyalty-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--dark);
  transition: width 320ms ease;
}

.loyalty-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

img[style*="object-fit:contain"] {
  background: #f7f6f2;
}

@media (max-width: 760px) {
  body[data-page="product-detail"] .product-detail {
    gap: 22px;
  }

  body[data-page="product-detail"] .product-detail__media {
    width: 100%;
    position: static;
  }

  body[data-page="product-detail"] .product-detail__media img,
  body[data-page="product-detail"] .product-gallery__main {
    min-height: 0;
  }

  body[data-page="product-detail"] .product-gallery__main {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 5;
    background: #f7f6f2;
  }

  body[data-page="product-detail"] img.product-gallery__main {
    display: block;
    width: 100%;
    height: min(118vw, 74svh);
    max-height: 74svh;
    object-fit: contain !important;
    object-position: center center !important;
  }

  body[data-page="product-detail"] .product-gallery__main img {
    width: 100%;
    height: 100%;
    max-height: 74svh;
    object-fit: contain !important;
    object-position: center center !important;
  }

  body[data-page="product-detail"] .product-gallery__thumbs img {
    object-fit: cover !important;
  }

  body:not([data-page="admin"]) .brand {
    width: clamp(134px, 34vw, 154px);
    height: 46px;
    min-height: 46px;
  }

  .premium-footer__logo {
    width: min(230px, 100%);
  }

  .limited-drop-countdown {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .limited-drop-countdown__timer {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .limited-drop-countdown__timer span {
    min-height: 54px;
  }

  .limited-drop-countdown__timer strong {
    font-size: 18px;
  }

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

@media (max-width: 390px) {
  body:not([data-page="admin"]) .brand {
    width: 130px;
    height: 42px;
    min-height: 42px;
  }
}

.is-hidden {
  display: none !important;
}
