:root {
  --bg: #070707;
  --surface: #111;
  --surface-2: #171717;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f1ec;
  --muted: #a39c94;
  --accent: #c45a2c;
  --accent-soft: #e8c2ae;
  --header-h: 4rem;
  --announce-h: 2.15rem;
  --chrome-h: calc(var(--announce-h) + var(--header-h));
  --max: 1200px;
  --radius: 0;
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --page-inset: clamp(0.75rem, 2.5vw, 1.25rem);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

button,
.btn,
.chip,
.swatch,
.icon-btn,
.quick-preview-btn,
.nav-link {
  touch-action: manipulation;
}

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

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 45;
  background: #070707;
}

.announce-bar {
  background: #111;
  text-align: center;
  padding: 0.55rem max(1rem, var(--safe-right)) 0.55rem max(1rem, var(--safe-left));
  padding-top: calc(0.55rem + var(--safe-top));
}

.announce-link {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  transition: color 0.2s ease;
  max-width: 100%;
  line-height: 1.35;
}

.announce-link:hover {
  color: #fff;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.45rem clamp(1rem, 3vw, 1.5rem);
  padding-left: max(clamp(1rem, 3vw, 1.5rem), var(--safe-left));
  padding-right: max(clamp(1rem, 3vw, 1.5rem), var(--safe-right));
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.logo {
  width: 5.75rem;
  height: 5.75rem;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.nav-main {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: #151515;
  box-shadow: inset 0 -2px 0 var(--accent);
}

.nav-ico {
  width: 1.05rem;
  height: 1.05rem;
  display: grid;
  place-items: center;
}

.nav-ico svg,
.icon-btn svg {
  width: 100%;
  height: 100%;
}

.nav-utils {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  justify-self: end;
}

.icon-btn {
  appearance: none;
  border: 0;
  background: transparent;
  width: 3.15rem;
  height: 3.15rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text);
  position: relative;
}

.icon-btn svg {
  width: 1.55rem;
  height: 1.55rem;
}

.bag-count {
  position: absolute;
  top: 0.25rem;
  right: 0.15rem;
  min-width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  display: grid;
  place-items: center;
  padding: 0 0.2rem;
}

.bag-count[hidden] {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn.is-disabled,
a.btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.checkout-empty {
  margin: 0 0 1.25rem;
  padding: 0.85rem 0;
}

.checkout-empty a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.checkout-form--empty .form-grid,
.checkout-form--empty .terms-check {
  opacity: 0.45;
  pointer-events: none;
}

.checkout-form--empty .checkout-actions-bar {
  opacity: 0.7;
}

.btn-primary {
  background: var(--text);
  color: #111;
}

.btn-primary:hover {
  background: var(--accent-soft);
  color: #111;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: #fff;
}

.btn-large {
  width: 100%;
  min-height: 3.4rem;
  font-size: 0.8rem;
}

.text-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  padding: 0.4rem 0;
}

.text-btn:hover {
  color: var(--text);
}

.index-page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.index-main {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.55rem var(--page-inset, 0.55rem) 0;
  min-height: 0;
}

.index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.55rem;
  height: calc(100vh - 1.1rem);
  min-height: 28rem;
  position: relative;
  flex-shrink: 0;
}

.index-tile {
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  isolation: isolate;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  color: inherit;
  appearance: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.index-tile:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.index-tile:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.index-tile:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.index-tile:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.index-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.index-tile-label {
  position: absolute;
  top: 0.85rem;
  left: 0.9rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  pointer-events: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
}

.index-tile-label strong {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.index-tile-label em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.index-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    transparent 35%,
    transparent 65%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.index-tile:hover img {
  transform: scale(1.03);
}

.index-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.index-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.index-reveal {
  position: fixed;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.15rem 1.15rem 1.25rem;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  overflow: auto;
  transition:
    opacity 0.32s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.index-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.reveal-kicker {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.reveal-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.15;
}

.reveal-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.reveal-cta {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.reveal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.reveal-close:hover {
  color: #fff;
}

.reveal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0.15rem 0 0;
}

.reveal-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.reveal-form legend {
  margin-bottom: 0.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.reveal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.reveal-pill {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #ddd;
  padding: 0.4rem 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.reveal-pill:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.reveal-pill.is-on {
  background: #fff;
  border-color: #fff;
  color: #111;
}

body.index-focus {
  overflow: hidden;
}

body.index-focus .index-tile:not(.is-active) {
  opacity: 0.22;
}

body.index-focus .index-tile.is-active {
  z-index: 50;
  transform: translate(-6%, -3%) scale(0.94);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28),
    0 22px 60px rgba(0, 0, 0, 0.55);
}

body.index-focus .index-tile.is-active img {
  transform: scale(1.04);
}

body.index-focus .site-chrome {
  opacity: 0.28;
  pointer-events: none;
  filter: none;
}

body.index-focus .site-footer,
body.index-focus .shop-intro,
body.index-focus .method-grid,
body.index-focus .recommend,
body.index-focus .quote-band,
body.index-focus .trust-bar {
  opacity: 0.2;
  pointer-events: none;
  filter: none;
}

@media (max-width: 980px) {
  .index-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(18rem, 42vh) minmax(10rem, 22vh) minmax(10rem, 22vh);
    height: auto;
    min-height: auto;
  }

  .index-tile:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .index-tile:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .index-tile:nth-child(3) {
    grid-column: 1;
    grid-row: 2 / span 2;
  }

  .index-tile:nth-child(4) {
    grid-column: 2;
    grid-row: 2 / span 2;
  }
}

@media (max-width: 560px) {
  .index-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .index-tile,
  .index-tile:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
    min-height: 14rem;
  }

  .index-tile--tall {
    min-height: 22rem;
  }
}

.trust-bar {
  overflow: hidden;
  border: 0;
  padding: 1.15rem 0;
  margin: 0.55rem 0 0;
  background: #1a2229;
  white-space: nowrap;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-move 32s linear infinite;
  will-change: transform;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  letter-spacing: 0.04em;
  color: #f4f1ec;
}

.trust-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.trust-group span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 0.15rem;
}

.trust-group span::after {
  content: "•";
  margin: 0 1.6rem;
  font-size: 0.85rem;
  line-height: 1;
  color: var(--accent-soft);
  opacity: 0.95;
}

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

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
  }
}

.shop-intro {
  max-width: 44rem;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 2.5rem;
  text-align: center;
}

.shop-intro h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 600;
}

.shop-intro h1 em {
  font-style: italic;
  color: var(--accent-soft);
}

.shop-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.promo-banner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 3.5rem;
  min-height: min(52vh, 420px);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
}

.promo-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55);
}

.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45));
}

.promo-banner-copy {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
  text-align: center;
}

.promo-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.promo-banner-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
}

.promo-banner-copy h2 em {
  font-style: italic;
  color: var(--accent-soft);
}

.promo-banner-copy p {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.method-grid,
.shade-row,
.story-row,
.help-pair,
.quote-band {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.method-card,
.shade-card,
.story-card {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.method-card img,
.shade-card img,
.story-card img,
.catalog-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.method-card:hover img,
.shade-card:hover img,
.story-card:hover img {
  transform: scale(1.04);
}

.method-card::after,
.shade-card::after,
.story-card::after,
.catalog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78));
}

.method-card span,
.story-card span {
  position: relative;
  z-index: 1;
  padding: 1.2rem;
  display: grid;
  gap: 0.25rem;
}

.method-card strong,
.story-card strong,
.shade-card strong {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-card em,
.story-card em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
}

.match-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  width: 100%;
  margin: 0 0 3.5rem;
  padding: 1.15rem 1.25rem;
  background: #1a2229;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.04em;
  color: #f4f1ec;
  transition: color 0.2s ease, background 0.2s ease;
}

.match-bar span {
  display: inline-flex;
  align-items: center;
  white-space: normal;
}

.match-bar span:first-child::after {
  content: "•";
  margin: 0 1.15rem;
  font-size: 0.8rem;
  line-height: 1;
  color: var(--accent-soft);
  opacity: 0.95;
}

.match-bar:hover {
  color: #fff;
  background: #1f2930;
}

.recommend .section-head {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.shade-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  padding-bottom: 1.5rem;
}

.shade-card {
  min-height: 16rem;
}

.shade-card strong {
  position: relative;
  z-index: 1;
  padding: 1.1rem;
}

.story-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.7rem;
}

.story-card {
  min-height: 28rem;
}

.quote-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-bottom: 4.5rem;
}

.quote-band blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.catalog-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.catalog-hero-copy {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  max-width: 40rem;
}

.catalog-hero-copy h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.catalog-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.method-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.method-pills a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 0.72rem 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.78);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.method-pills a .pill-ico {
  width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
  opacity: 0.85;
}

.method-pills a .pill-ico svg {
  width: 100%;
  height: 100%;
}

.method-pills a.is-active,
.method-pills a:hover {
  background: linear-gradient(180deg, #f7efe6, #e8c2ae);
  color: #1a1210;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(196, 90, 44, 0.18);
}

.method-pills a.is-active .pill-ico,
.method-pills a:hover .pill-ico {
  opacity: 1;
}

.seo-block,
.seo-split {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem 0;
}

.seo-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.seo-block h1,
.seo-block h2,
.legal-page h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.seo-block h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.seo-block p,
.seo-split p,
.legal-block p {
  margin: 0 0 1rem;
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-size: 1.02rem;
}

.seo-block a,
.seo-split a,
.legal-block a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: var(--accent-soft);
}

.seo-block .btn {
  margin-top: 0.6rem;
  text-decoration: none;
}

.seo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-top: 3.5rem;
}

.seo-split h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.seo-split .btn {
  margin-top: 0.5rem;
  text-decoration: none;
}

.seo-block--last {
  padding-bottom: 4.5rem;
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4.5rem;
}

.legal-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.legal-block h2 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.site-footer--large {
  padding: 4.5rem 1.25rem 2.2rem;
}

.footer-large {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  max-width: 34rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: 5.2rem;
  height: 5.2rem;
  object-fit: contain;
  filter: invert(1);
  margin-bottom: 1rem;
}

.footer-brand h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-grid--large {
  grid-template-columns: repeat(4, 1fr);
}

.footer-grid p {
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: #000;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 6vw, 5rem);
  max-width: 38rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent);
}

.hero-content h1 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-content p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.category-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 32rem;
}

.category-panel {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

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

.category-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.78));
}

.category-copy {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 28rem;
}

.category-copy h2 {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.category-copy p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.section {
  padding: 3.5rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head h1,
.section-head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem 1.25rem;
}

.product-card {
  position: relative;
  background: transparent;
  border: 0;
  display: block;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a0a0a;
}

.product-card-image {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.03);
}

.quick-preview-btn {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  transform: translate(-50%, 8px);
  appearance: none;
  border: 0;
  min-height: 2.55rem;
  padding: 0.65rem 1.15rem;
  background: #f4f1ec;
  color: #14110f;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}

.product-card:hover .quick-preview-btn,
.product-card:focus-within .quick-preview-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.quick-preview-btn:hover {
  background: #fff;
}

@media (hover: none) {
  .quick-preview-btn {
    left: auto;
    right: 0.55rem;
    bottom: 0.55rem;
    transform: none;
    min-height: 1.85rem;
    padding: 0.35rem 0.55rem;
    background: rgba(8, 8, 8, 0.42);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .quick-preview-btn:active {
    background: rgba(8, 8, 8, 0.62);
    color: #fff;
  }
}

.product-card-body {
  display: block;
  padding: 0.85rem 0.1rem 0;
  text-align: left;
  color: inherit;
}

.product-card-body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: #f4f1ec;
}

.product-price {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(244, 241, 236, 0.9);
}

.best-for {
  margin: 0.55rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c2a178;
}

.quick-preview-scrim {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.quick-preview-scrim.is-open {
  opacity: 1;
}

.quick-preview {
  position: fixed;
  z-index: 71;
  top: 50%;
  left: 50%;
  width: min(860px, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.95fr);
  background: #f4f1ec;
  color: #14110f;
  transform: translate(-50%, -46%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.quick-preview.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.quick-preview-close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  z-index: 2;
  appearance: none;
  border: 0;
  background: transparent;
  color: #14110f;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
}

.quick-preview-media {
  aspect-ratio: 1;
  background: #111;
  overflow: hidden;
}

.quick-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-preview-copy {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem 1.35rem;
  min-height: 100%;
}

.quick-preview-copy h2 {
  margin: 0 1.5rem 0.65rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
}

.quick-preview-price {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.quick-preview-details {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: #14110f;
}

.quick-preview-rule {
  border: 0;
  border-top: 1px solid rgba(20, 17, 15, 0.16);
  margin: 0 0 1rem;
}

.quick-preview-desc {
  margin: 0 0 1.35rem;
  color: rgba(20, 17, 15, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}

.btn-quick {
  width: 100%;
  margin-top: auto;
  min-height: 3.1rem;
  border: 0;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.btn-quick:hover {
  background: #000;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.catalog-toolbar {
  display: none;
}

.filter-scrim {
  display: none;
}

.filters-head,
.filters-foot {
  display: none;
}

.filters {
  position: sticky;
  top: calc(var(--chrome-h) + 0.75rem);
  background: linear-gradient(180deg, #121212, #0d0d0d);
  padding: 1.25rem 1.15rem 1.35rem;
}

.filter-group + .filter-group {
  margin-top: 1.25rem;
  padding-top: 1.2rem;
}

.filter-group h3 {
  margin: 0 0 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.filter-group h3 .filter-ico {
  width: 0.95rem;
  height: 0.95rem;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.filter-group h3 .filter-ico svg {
  width: 100%;
  height: 100%;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  cursor: pointer;
  color: rgba(244, 241, 236, 0.82);
  transition: color 0.15s ease;
}

.filter-group label:hover {
  color: #fff;
}

.filter-group label input {
  appearance: none;
  width: 0.95rem;
  height: 0.95rem;
  border: 1px solid rgba(232, 194, 174, 0.45);
  background: transparent;
  display: grid;
  place-content: center;
  flex-shrink: 0;
}

.filter-group label input::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: var(--accent);
  transform: scale(0);
  transition: transform 0.12s ease;
}

.filter-group label input:checked {
  border-color: var(--accent-soft);
  background: rgba(196, 90, 44, 0.12);
}

.filter-group label input:checked::after {
  transform: scale(1);
}

.filter-swatch {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.breadcrumbs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem 0.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.breadcrumbs a {
  color: rgba(244, 241, 236, 0.72);
  transition: color 0.15s ease;
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs-sep {
  color: rgba(244, 241, 236, 0.35);
}

.breadcrumbs-current {
  color: rgba(244, 241, 236, 0.92);
  max-width: 100%;
}

.product-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4.75rem;
  gap: 0.65rem;
  align-items: start;
}

.gallery-main {
  aspect-ratio: 1;
  background: #0a0a0a;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  max-height: 100%;
}

.gallery-thumbs button {
  appearance: none;
  border: 0;
  padding: 0;
  background: #0a0a0a;
  cursor: pointer;
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.gallery-thumbs button:hover,
.gallery-thumbs button.is-active {
  opacity: 1;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-panel h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 500;
  line-height: 1.15;
  color: #f7f2ea;
}

.buy-price {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}

.pdp-best {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  color: rgba(244, 241, 236, 0.88);
  line-height: 1.45;
}

.pdp-best strong {
  font-weight: 600;
  color: #fff;
}

.pdp-rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin: 0 0 1.35rem;
}

.option-block {
  margin-bottom: 1.45rem;
}

.option-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.option-label {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  color: #f4f1ec;
}

.option-label strong {
  font-weight: 600;
}

.option-note {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.option-help {
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.option-help:hover {
  color: #fff;
}

.option-block--qty .option-label {
  margin-bottom: 0.55rem;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(2.35rem, 1fr));
  gap: 0.45rem;
}

.swatch {
  appearance: none;
  aspect-ratio: 1;
  width: 100%;
  padding: 3px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.swatch span {
  display: block;
  width: 100%;
  height: 100%;
}

.swatch.is-active {
  border-color: #fff;
}

.chip-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4.5rem, 1fr));
  gap: 0.5rem;
}

.chip {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  min-height: 2.85rem;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(244, 241, 236, 0.9);
}

.chip.is-active {
  border-width: 2px;
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.qty-control button {
  appearance: none;
  border: 0;
  background: transparent;
  width: 2.6rem;
  height: 2.6rem;
  cursor: pointer;
}

.qty-control span {
  min-width: 2rem;
  text-align: center;
}

.btn-pdp {
  margin-top: 0.35rem;
  border: 0;
  background: #f4f1ec;
  color: #111;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.btn-pdp:hover {
  background: #fff;
}

.product-info {
  max-width: min(720px, var(--max));
  margin: 0 auto 3.5rem;
  padding: 0 1.25rem;
}

.pdp-acc {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pdp-acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.pdp-acc-trigger {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1.15rem 0;
  border: 0;
  background: transparent;
  color: #f4f1ec;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.pdp-acc-icon {
  position: relative;
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.pdp-acc-icon::before,
.pdp-acc-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.pdp-acc-icon::before {
  width: 100%;
  height: 1.5px;
}

.pdp-acc-icon::after {
  width: 1.5px;
  height: 100%;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.pdp-acc-item.is-open .pdp-acc-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.pdp-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
}

.pdp-acc-item.is-open .pdp-acc-panel {
  grid-template-rows: 1fr;
}

.pdp-acc-panel-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  color: rgba(244, 241, 236, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  transition:
    opacity 0.28s ease,
    padding 0.38s ease;
}

.pdp-acc-item.is-open .pdp-acc-panel-inner {
  opacity: 1;
  padding: 0 0 1.25rem;
}

.pdp-acc-panel-inner p {
  margin: 0 0 0.75rem;
}

.pdp-acc-panel-inner p:last-child {
  margin-bottom: 0;
}

.pdp-acc-panel-inner a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.pdp-acc-details {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.pdp-acc-details li strong {
  display: inline-block;
  min-width: 6.5rem;
  margin-right: 0.35rem;
  color: #fff;
  font-weight: 600;
}

.selected-shade {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.overlay-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 50;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.overlay-scrim.is-open {
  opacity: 1;
}

.search-panel,
.bag-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #0b0b0b;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
}

.search-panel.is-open,
.bag-panel.is-open {
  transform: translateX(0);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.panel-head h2 {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  background: #121212;
  padding: 0.75rem 0.9rem;
  outline: none;
}

.search-field input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.popular-searches {
  margin: 1rem 0;
}

.popular-searches p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.popular-searches button {
  display: block;
  width: 100%;
  text-align: left;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0.45rem 0;
  cursor: pointer;
}

.search-results {
  overflow: auto;
  flex: 1;
}

.search-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0;
}

.search-row img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.search-row strong,
.search-row em {
  display: block;
}

.search-row em {
  color: var(--muted);
  font-style: normal;
  margin-top: 0.2rem;
}

.bag-items {
  flex: 1;
  overflow: auto;
}

.bag-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  padding: 0.85rem 0;
}

.bag-item img {
  width: 72px;
  height: 90px;
  object-fit: cover;
}

.bag-item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.bag-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.qty-row button:not(.text-btn) {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
}

.bag-footer {
  padding-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.bag-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.empty-note {
  color: var(--muted);
}

.checkout-page,
.confirm-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.form-card {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.summary-card {
  grid-column: 2;
  grid-row: 1;
}

.checkout-actions {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  background: var(--surface);
  padding: 1.2rem;
}

.checkout-actions-bar {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.checkout-actions-total {
  display: none;
}

.form-card,
.summary-card {
  background: var(--surface);
  border: 0;
  padding: 1.2rem;
}

.form-card h1,
.confirm-page h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
}

.form-card h2,
.summary-card h2 {
  margin: 1.35rem 0 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-card h1 + .checkout-empty + h2,
.form-card h1 + h2 {
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.8rem;
  border: 1px solid var(--line);
  background: #101010;
  padding: 0.55rem 0.7rem;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.order-lines {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.order-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.order-line-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.order-line-name {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.35;
}

.order-line-qty {
  color: var(--muted);
  font-size: 0.78rem;
}

.order-line-price {
  flex: 0 0 auto;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.summary-totals {
  display: grid;
  gap: 0.15rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  color: var(--muted);
}

.summary-row.total {
  color: var(--text);
  margin-top: 0.55rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}

.checkout-actions .btn-large {
  margin-top: 0;
}

.confirm-page {
  text-align: center;
  padding-top: 5rem;
}

.confirm-page p {
  color: var(--muted);
}

.confirm-page strong {
  color: var(--text);
}

.site-footer {
  padding: 2.5rem 1.25rem 2rem;
  background: #000;
}

.footer-shell {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-grid--lux {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.75rem;
}

.footer-grid h3 {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-visit {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-note {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .category-split,
  .product-page,
  .checkout-grid,
  .catalog-layout,
  .product-info,
  .seo-split,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .form-card,
  .summary-card,
  .checkout-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .product-gallery {
    grid-template-columns: minmax(0, 1fr) 4rem;
  }

  .method-grid,
  .shade-row {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.75rem;
  }

  .catalog-toolbar {
    display: flex;
    align-items: center;
    margin: 0 0 1rem;
  }

  .filter-open-btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 2.75rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #121212;
    color: var(--text);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
  }

  .filter-open-btn.has-filters {
    border-color: rgba(232, 194, 174, 0.45);
    color: var(--accent-soft);
  }

  .filter-open-ico {
    width: 1rem;
    height: 1rem;
    display: grid;
    place-items: center;
  }

  .filter-open-ico svg {
    width: 100%;
    height: 100%;
  }

  .filter-count {
    display: inline-grid;
    place-items: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.68rem;
    letter-spacing: 0;
    font-weight: 700;
  }

  .filter-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  .filter-scrim.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .filters {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 61;
    width: 100%;
    max-height: min(88vh, 720px);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #111;
    border-radius: 1rem 1rem 0 0;
    transform: translate3d(0, 110%, 0);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.28s;
    box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.45);
  }

  .filters.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  .filters-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex: 0 0 auto;
    padding: 1rem 1rem 0.85rem max(1rem, var(--safe-left));
    padding-right: max(0.65rem, var(--safe-right));
    border-bottom: 1px solid var(--line);
  }

  .filters-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--text);
  }

  .filters-close {
    appearance: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
  }

  .filters-body {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.85rem max(1rem, var(--safe-right)) 0.5rem max(1rem, var(--safe-left));
  }

  .filters-foot {
    display: block;
    flex: 0 0 auto;
    padding: 0.85rem max(1rem, var(--safe-right)) calc(0.85rem + var(--safe-bottom)) max(1rem, var(--safe-left));
    border-top: 1px solid var(--line);
    background: #0f0f0f;
  }

  .filters-foot .btn {
    width: 100%;
    min-height: 3.1rem;
  }

  .filter-group + .filter-group {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  body.filters-open {
    overflow: hidden;
  }

  .catalog-layout {
    display: block;
  }

  .nav-link {
    padding: 0.7rem 0.85rem;
    font-size: 0.76rem;
  }

  .method-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding: 0 0.25rem 0.35rem;
  }

  .method-pills::-webkit-scrollbar {
    display: none;
  }

  .method-pills a {
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 3.35rem;
    --announce-h: 2rem;
    --page-inset: 0.85rem;
  }

  .announce-bar {
    padding-top: calc(0.45rem + var(--safe-top));
    padding-bottom: 0.45rem;
  }

  .announce-link {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.35rem 0.75rem;
    padding-top: 0.35rem;
    padding-bottom: 0.45rem;
  }

  .logo {
    width: 3.4rem;
    height: 3.4rem;
  }

  .nav-utils {
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-main {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.25rem;
    margin: 0 -0.15rem;
    padding-bottom: 0.15rem;
  }

  .nav-main::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    flex: 0 0 auto;
    padding: 0.55rem 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .icon-btn {
    width: 2.75rem;
    height: 2.75rem;
  }

  .index-main {
    padding-left: var(--page-inset);
    padding-right: var(--page-inset);
  }

  .index-tile,
  .index-tile:nth-child(n) {
    min-height: 15rem;
  }

  .index-tile--tall {
    min-height: 18rem;
  }

  .index-tile-label {
    top: auto;
    bottom: 0.9rem;
    left: 0.85rem;
    right: 0.85rem;
  }

  .index-tile-label strong {
    font-size: 0.72rem;
  }

  .index-tile-label em {
    font-size: 0.95rem;
  }

  .trust-bar {
    padding: 0.9rem 0;
  }

  .trust-track {
    font-size: 1.05rem;
  }

  .shop-intro {
    padding: 2.75rem 1rem 1.75rem;
  }

  .method-grid,
  .shade-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-bottom: 2rem;
  }

  .method-card,
  .shade-card,
  .story-card {
    min-height: 16rem;
  }

  .match-bar {
    margin-bottom: 2.25rem;
    padding: 1rem 1rem;
    font-size: 1rem;
    gap: 0.25rem;
  }

  .match-bar span:first-child::after {
    margin: 0 0.7rem;
  }

  .promo-banner {
    min-height: 70vw;
    margin-bottom: 2.25rem;
  }

  .promo-banner-copy {
    padding: 1.75rem 1.1rem;
  }

  .section {
    padding-left: var(--page-inset);
    padding-right: var(--page-inset);
  }

  .section-head {
    margin-bottom: 1.25rem;
  }

  .product-grid,
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.65rem;
  }

  .checkout-page,
  .confirm-page {
    padding: 1.15rem var(--page-inset) calc(7.5rem + var(--safe-bottom));
  }

  .checkout-grid {
    gap: 0.85rem;
  }

  .form-card,
  .summary-card {
    padding: 1rem 0.9rem 1.15rem;
  }

  .form-card h1,
  .confirm-page h1 {
    font-size: clamp(1.85rem, 8vw, 2.15rem);
    margin-bottom: 0.85rem;
  }

  .form-card h2,
  .summary-card h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .checkout-page .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 0.65rem;
  }

  .checkout-page .form-grid--stack {
    grid-template-columns: 1fr;
  }

  .checkout-page .field input,
  .checkout-page .field select,
  .checkout-page .field textarea {
    min-height: 3.15rem;
    font-size: 1rem;
    padding: 0.7rem 0.8rem;
  }

  .order-line-name {
    font-size: 0.9rem;
  }

  .checkout-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    margin: 0;
    padding: 0.75rem max(0.9rem, var(--safe-right)) calc(0.75rem + var(--safe-bottom)) max(0.9rem, var(--safe-left));
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
  }

  .checkout-actions .terms-check {
    margin-top: 0;
    margin-bottom: 0.55rem;
    padding: 0;
    font-size: 0.78rem;
  }

  .checkout-actions .terms-check input {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.1rem;
    flex: 0 0 auto;
  }

  .checkout-actions-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
  }

  .checkout-actions-total {
    display: grid;
    gap: 0.1rem;
  }

  .checkout-actions-total span {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .checkout-actions-total strong {
    font-size: 1.05rem;
    color: var(--text);
  }

  .checkout-actions .btn-large {
    margin-top: 0;
    min-height: 3.15rem;
    width: 100%;
  }

  .confirm-page {
    padding-top: 3.5rem;
    padding-bottom: calc(2.5rem + var(--safe-bottom));
  }

  .product-card-body h3 {
    font-size: 0.92rem;
  }

  .product-price {
    font-size: 0.88rem;
  }

  .quick-preview-btn {
    right: 0.45rem;
    bottom: 0.45rem;
    min-height: 1.7rem;
    padding: 0.3rem 0.5rem;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .footer-grid,
  .footer-grid--large,
  .footer-grid--lux {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1rem;
    text-align: center;
  }

  .footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-grid a,
  .footer-visit {
    text-align: center;
  }

  .footer-note {
    text-align: center;
  }

  .site-footer {
    padding: 2.5rem var(--page-inset) calc(2rem + var(--safe-bottom));
  }

  .product-gallery {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.45rem;
  }

  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumbs button {
    width: 4.5rem;
    flex: 0 0 4.5rem;
  }

  .breadcrumbs {
    padding: 0.85rem var(--page-inset) 0.25rem;
    font-size: 0.72rem;
    gap: 0.25rem 0.35rem;
  }

  .product-page {
    padding: 0.65rem var(--page-inset) 5.5rem;
    gap: 1.35rem;
  }

  .buy-panel h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .chip {
    min-height: 3rem;
  }

  .swatches {
    grid-template-columns: repeat(auto-fill, minmax(2.6rem, 1fr));
    gap: 0.55rem;
  }

  .swatch {
    min-height: 2.6rem;
  }

  .btn,
  .btn-pdp,
  .btn-large {
    min-height: 3.15rem;
  }

  .buy-panel .btn-pdp {
    position: sticky;
    bottom: calc(0.75rem + var(--safe-bottom));
    z-index: 5;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  }

  .filter-group label {
    min-height: 2.5rem;
    padding: 0.35rem 0;
  }

  .search-panel,
  .bag-panel {
    width: 100%;
    padding: 1rem max(1rem, var(--safe-right)) calc(1rem + var(--safe-bottom)) max(1rem, var(--safe-left));
  }

  .cookie-bar {
    left: max(0.65rem, var(--safe-left));
    right: max(0.65rem, var(--safe-right));
    bottom: max(0.65rem, var(--safe-bottom));
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .cookie-bar .btn {
    width: 100%;
  }

  .hero {
    min-height: 70vh;
  }

  .quote-band {
    padding-bottom: 2.5rem;
    gap: 1.25rem;
  }

  .quote-band blockquote {
    font-size: 1.15rem;
  }
}

@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 0.5rem;
  }

  .nav-link {
    padding: 0.5rem 0.55rem;
    font-size: 0.64rem;
  }

  .match-bar span {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .quick-preview {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: min(92vh, 900px);
    transform: translate3d(0, 16%, 0);
    border-radius: 1rem 1rem 0 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    padding-bottom: var(--safe-bottom);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  }

  .quick-preview.is-open {
    transform: translate3d(0, 0, 0);
  }

  .quick-preview-media {
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    aspect-ratio: auto;
    height: min(42vh, 100vw);
    max-height: 42vh;
  }

  .quick-preview-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .quick-preview-copy {
    flex: 1 1 auto;
    padding: 1.15rem 1.1rem 1.25rem;
    min-height: 0;
  }

  .quick-preview-copy h2 {
    margin-right: 2.5rem;
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
  }

  .quick-preview-desc {
    margin-bottom: 1.1rem;
  }

  .quick-preview-close {
    top: 0.65rem;
    right: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    background: rgba(244, 241, 236, 0.92);
    border-radius: 999px;
    font-size: 1.35rem;
  }
}

.cookie-bar {
  position: fixed;
  left: max(0.75rem, var(--safe-left));
  right: max(0.75rem, var(--safe-right));
  bottom: max(0.75rem, var(--safe-bottom));
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  background: #111;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-bar .btn {
  flex-shrink: 0;
  min-width: 4.5rem;
  color: #111;
  background: #f4f1ec;
}

.cookie-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-bar a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.terms-check input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  flex: 0 0 auto;
  accent-color: var(--accent-soft);
}

.terms-check a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-block ul {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}
