:root {
  color-scheme: light;
  --bg: oklch(96.5% 0.008 170);
  --surface: oklch(99% 0.002 250);
  --surface-2: oklch(92.8% 0.012 170);
  --ink: oklch(18% 0.018 236);
  --muted: oklch(39% 0.018 236);
  --line: oklch(82% 0.014 170);
  --accent: oklch(58% 0.12 78);
  --accent-strong: oklch(38% 0.09 78);
  --signal: oklch(50% 0.08 165);
  --danger: oklch(48% 0.16 30);
  --shadow: 0 18px 44px oklch(18% 0.018 236 / 0.12);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

a { color: inherit; }

button,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 42px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.brand {
  justify-self: start;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Black", "Franklin Gothic Heavy", sans-serif;
  font-size: 1.42rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 0 white, 0 8px 18px oklch(18% 0.018 236 / 0.18);
  transform: skewX(-5deg);
}

.brand::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -4px;
  bottom: 7px;
  z-index: -1;
  height: 8px;
  background: var(--accent);
  transform: skewX(-14deg);
}

.brand span {
  color: var(--accent-strong);
  text-shadow: 0 1px 0 white, 0 6px 14px oklch(58% 0.12 78 / 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.12rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transform: skewX(-5deg);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
  transform: skewX(-5deg) translateY(-1px);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 8px;
  z-index: -1;
  height: 4px;
  background: var(--accent);
  transform: skewX(-14deg) scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav a:hover::after {
  transform: skewX(-14deg) scaleX(1);
}

.bag-button,
.button,
.add-button,
.icon-button,
.checkout-button,
.pay-button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.bag-button:focus-visible,
.button:focus-visible,
.add-button:focus-visible,
.icon-button:focus-visible,
.checkout-button:focus-visible,
.pay-button:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid oklch(72% 0.16 78);
  outline-offset: 3px;
}

.bag-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: white;
  padding: 9px 16px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-style: italic;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transform: skewX(-5deg);
  box-shadow: 0 4px 12px oklch(18% 0.018 236 / 0.15);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.bag-button:hover {
  background: var(--accent-strong);
  color: white;
  transform: skewX(-5deg) translateY(-2px);
  box-shadow: 0 6px 16px oklch(18% 0.018 236 / 0.25);
}

.bag-button span {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 4px;
  background: var(--accent);
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 0.82rem;
  transform: skewX(5deg);
}

main { overflow: clip; }

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 72px));
  display: grid;
  align-items: center;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--surface-2) 0%, oklch(95% 0.005 170) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: calc(max(16px, calc((100vw - var(--max)) / 2)) + 50px);
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  background: var(--accent);
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-video-wrapper {
  position: absolute;
  inset: 40px max(16px, calc((100vw - var(--max)) / 2)) 40px auto;
  width: min(35vw, 380px);
  height: calc(100% - 80px);
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hero-video-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px oklch(18% 0.018 236 / 0.16);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-video-wrapper:hover .video-controls,
.hero-video-wrapper:focus-within .video-controls {
  opacity: 1;
}

.video-control-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-control-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.08);
}

.video-control-btn svg {
  width: 16px;
  height: 16px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

.hero-copy {
  width: min(680px, calc(100% - 32px));
  margin-left: max(16px, calc((100vw - var(--max)) / 2));
  padding: clamp(46px, 8vw, 96px) 0 clamp(56px, 9vw, 112px);
}

.drop-label,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-weight: 900;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 8vw, 5.9rem);
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  text-wrap: pretty;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-weight: 850;
}

.button.primary {
  background: var(--ink);
  color: white;
}

.button.secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button:hover,
.add-button:hover,
.bag-button:hover {
  transform: translateY(-1px);
}

.shop-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
}

.shop-strip p {
  margin: 0;
  min-height: 118px;
  padding: 22px;
  background: var(--surface);
}

.shop-strip strong,
.shop-strip span { display: block; }

.shop-strip strong { font-size: 1.02rem; }

.shop-strip span {
  max-width: 28ch;
  color: var(--muted);
  margin-top: 8px;
}

.collection,
.fit {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 104px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading h2,
.story-band h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.section-heading p:last-child,
.story-band > p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  text-wrap: pretty;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.8) inset;
}

.product-card.feature { grid-column: span 2; }

.product-media {
  margin: 0;
  aspect-ratio: 1 / 0.86;
  background: oklch(93% 0.004 210);
  border-bottom: 1px solid var(--line);
}

.product-media.tall { aspect-ratio: 1 / 1.22; }
.product-media.wide { aspect-ratio: 1.55 / 1; }

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

.product-media.tall img { object-fit: contain; background: white; }
.product-media.dark-product img { background: oklch(43% 0.01 180); }

.product-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

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

.product-row h3 {
  margin: 0;
  font-size: 1.14rem;
}

.price {
  margin: 0;
  font-weight: 900;
  color: var(--accent-strong);
}

.product-copy > p {
  min-height: 3.2em;
  margin-bottom: 0;
  color: var(--muted);
}

.swatches {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.swatch {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 2px white;
}

.swatch.white { background: white; }
.swatch.cream { background: oklch(86% 0.035 82); }
.swatch.graphite { background: oklch(36% 0.012 180); }

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 0 12px;
}

.add-button {
  width: 100%;
  background: var(--ink);
  color: white;
  padding: 11px 14px;
  font-weight: 900;
}

.add-button.is-added {
  background: var(--signal);
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 7vw, 90px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) max(16px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: white;
}

.story-band .section-kicker { color: oklch(75% 0.13 78); }
.story-band > p { color: oklch(88% 0.012 236); }

.section-heading.compact {
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.5fr);
}

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

.fit-panel {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.fit-panel h3 { font-size: 1.35rem; }

.fit-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.fit-panel li + li { margin-top: 10px; }

.fit-panel.ordering {
  background: var(--surface-2);
}

.fit-panel.ordering p {
  color: var(--muted);
}

.studio-note {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto clamp(28px, 6vw, 62px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
}

.studio-note p {
  margin: 0;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 900;
}

.studio-note span { text-align: right; }

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.bag-dialog {
  width: min(640px, calc(100% - 28px));
  max-height: min(720px, calc(100svh - 28px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.bag-dialog::backdrop {
  background: oklch(18% 0.018 236 / 0.58);
}

.bag-shell {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.bag-head,
.bag-foot,
.bag-line,
.bag-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bag-head h2 { margin-bottom: 0; font-size: 2rem; }

.icon-button {
  background: white;
  border-color: var(--line);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 850;
}

.bag-items {
  display: grid;
  gap: 10px;
  max-height: 340px;
  overflow: auto;
}

.bag-line {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--bg);
}

.bag-line strong,
.bag-line span { display: block; }
.bag-line span { color: var(--muted); font-size: 0.92rem; }

.remove-button {
  min-height: 36px;
  border: 0;
  background: transparent;
  color: var(--danger);
  font-weight: 850;
  cursor: pointer;
}

.bag-total {
  padding-top: 4px;
  font-size: 1.14rem;
}


.empty-bag {
  margin: 0;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--bg);
}

.checkout-button,
.pay-button {
  width: 100%;
}

.checkout-panel {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.checkout-panel[hidden] {
  display: none;
}

.checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-weight: 900;
}

.stripe-fields {
  display: grid;
  gap: 14px;
}

.stripe-field {
  display: grid;
  gap: 8px;
}

.stripe-field h3 {
  margin: 0;
  font-size: 1rem;
}

.stripe-mount {
  min-height: 46px;
}

.checkout-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.checkout-status[data-tone="error"] {
  color: var(--danger);
}

.checkout-status[data-tone="ready"] {
  color: var(--signal);
}

.pay-button {
  background: var(--accent);
  color: var(--ink);
  padding: 12px 18px;
  font-weight: 950;
}

.pay-button:disabled,
.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.completion-section {
  min-height: calc(100svh - 160px);
  display: grid;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(52px, 9vw, 110px) 0;
}

.completion-panel {
  max-width: 760px;
}

.completion-panel h1 {
  max-width: 12ch;
}

.completion-panel > p {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.status-list {
  display: grid;
  gap: 1px;
  max-width: 620px;
  margin: 28px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.status-list:empty {
  display: none;
}

.status-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  background: var(--surface);
}

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

.status-list dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

@media (max-width: 1020px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card.feature { grid-column: span 2; }
  .fit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }

  .hero {
    min-height: 0;
    padding-top: 0;
    background: var(--surface-2);
  }

  .hero::after { display: none; }

  .hero-video-wrapper {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    max-height: 480px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    order: -1;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-controls {
    opacity: 1;
    bottom: 12px;
    right: 12px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 34px 0 44px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 16vw, 4.3rem);
  }

  .shop-strip,
  .section-heading,
  .section-heading.compact,
  .story-band {
    grid-template-columns: 1fr;
  }

  .shop-strip { gap: 0; }

  .story-band { padding-left: 16px; padding-right: 16px; }

  .product-grid { grid-template-columns: 1fr; }
  .product-card.feature { grid-column: auto; }

  .product-copy > p { min-height: 0; }

  .studio-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .studio-note span { text-align: left; }
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-media img { transform: scale(1.02); }
  .product-media img { transition: transform 320ms ease; }
}

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

.brand-section,
.lifestyle-section,
.community-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 104px) 0;
}

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

.audience-list span,
.lifestyle-grid p {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.audience-list span {
  padding: 9px 12px;
  color: var(--ink);
  font-weight: 850;
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.discipline-grid p {
  min-height: 118px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 950;
  text-align: center;
}

.brand-story .story-copy {
  display: grid;
  gap: 16px;
}

.brand-story .story-copy p {
  margin: 0;
  color: oklch(88% 0.012 236);
  font-size: 1.05rem;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lifestyle-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 474px));
  justify-content: center;
  gap: 12px;
  margin: 28px 0 18px;
}

.lifestyle-photo {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.lifestyle-photo img {
  width: 100%;
  height: auto;
}

.lifestyle-grid p {
  min-height: 96px;
  margin: 0;
  display: grid;
  align-content: end;
  padding: 16px;
  color: var(--ink);
  font-weight: 900;
  background:
    linear-gradient(180deg, oklch(99% 0.002 250 / 0.55), var(--surface)),
    var(--surface-2);
}

.community-panel {
  max-width: 820px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.community-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.community-panel > p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

@media (max-width: 760px) {
  .discipline-grid,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .discipline-grid p,
  .lifestyle-grid p {
    min-height: 86px;
  }

  .brand {
    font-size: 1.06rem;
  }
}

.variant-control {
  display: grid;
  gap: 8px;
}

.variant-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 850;
}

.variant-label strong {
  color: var(--ink);
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 34px;
}

.color-chip {
  width: 34px;
  height: 34px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  cursor: pointer;
}

.color-chip.is-selected {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--accent);
}

.color-chip:focus-visible {
  outline: 3px solid oklch(72% 0.16 78);
  outline-offset: 3px;
}

.color-swatch {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--swatch-color, white);
  box-shadow: inset 0 0 0 2px white;
}

.color-swatch.white { background: white; }
.color-swatch.cream { background: oklch(86% 0.035 82); }
.color-swatch.graphite { background: oklch(36% 0.012 180); }
.color-swatch.black { background: oklch(18% 0.01 250); }
.color-swatch.navy { background: oklch(27% 0.06 255); }
.color-swatch.heather-gray { background: oklch(70% 0.01 240); }

.product-card[hidden] {
  display: none;
}

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

.product-grid.is-three .product-card.feature {
  grid-column: auto;
}

@media (max-width: 900px) {
  .product-grid.is-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-grid.is-three {
    grid-template-columns: 1fr;
  }
}

.color-swatch.asphalt { background: #68645b; }
.color-swatch.vintage-brown { background: #a77951; }
.color-swatch.dust { background: #eee7d8; }
.color-swatch.athletic-heather { background: #b6b5ae; }
