:root {
  --black: #000000;
  --charcoal: #111111;
  --charcoal-2: #1a1a1a;
  --white: #ffffff;
  --off-white: #ededed;
  --grey: #7a7a7a;
  --red: #c00000;
  --line: rgba(255, 255, 255, 0.24);
  --soft-line: rgba(255, 255, 255, 0.12);
  --font-ui: "Inter Tight", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-utility: "Barlow Condensed", "Inter Tight", "Arial Narrow", sans-serif;
  --font-condensed: "Bebas Neue", "Barlow Condensed", Impact, sans-serif;
  --font-mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--off-white);
  background: var(--black);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.45;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.visually-hidden,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  background: var(--white);
  color: var(--black);
  padding: 0.75rem 1rem;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.nav-shell {
  width: min(100%, 1536px);
  min-height: 86px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand-mark > img:first-child {
  width: clamp(150px, 16vw, 196px);
  height: auto;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  justify-self: end;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: 86px 0 auto 0;
  display: grid;
  padding: 0 1rem 1rem;
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid var(--line);
  transform: translateY(-120%);
  transition: transform 220ms ease;
}

.nav-menu.is-open {
  transform: translateY(0);
}

.nav-menu a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--soft-line);
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.nav-menu span {
  color: var(--grey);
  font-size: 0.9em;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.55rem;
}

.icon-button {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--grey);
}

.icon-button:active {
  transform: translateY(1px);
}

.icon-button svg,
.add-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  right: -0.2rem;
  top: 0.2rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.hero-slides,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 62% center;
  opacity: 0;
  filter: grayscale(1) contrast(1.13);
  transition: opacity 1100ms ease;
}

.hero-bg-3 {
  object-position: 52% 18%;
}

.hero-bg-5 {
  object-position: 50% 28%;
}

.hero-bg.is-active {
  opacity: 0.94;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.14) 58%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1536px);
  margin: 0 auto;
  align-self: end;
  display: flex;
  justify-content: flex-end;
  padding: 3.8rem clamp(1.25rem, 5vw, 5rem) 2.2rem;
  pointer-events: none;
}

.hero-wordmark {
  width: min(82vw, 500px);
  margin-left: -0.15rem;
}

.hero-subtitle {
  max-width: 430px;
  margin: 1.2rem 0 0;
  color: var(--white);
  font-family: var(--font-utility);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.095em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 0;
  pointer-events: auto;
}

.button {
  min-width: 160px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--white);
  font-size: 0.82rem;
  font-family: var(--font-utility);
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

.button-secondary {
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
}

.hero-index {
  position: absolute;
  right: 5vw;
  top: 50%;
  z-index: 2;
  display: none;
  place-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-index i {
  width: 1px;
  height: 42px;
  background: var(--white);
}

.category-section,
.store-band,
.journal-stockists,
.trust-bar,
.footer-bottom {
  width: min(100%, 1536px);
  margin: 0 auto;
}

.category-section {
  border-bottom: 1px solid var(--line);
}

.category-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 42vw);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--grey) transparent;
}

.category-card {
  min-height: 190px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  justify-items: center;
  align-items: end;
  gap: 0.35rem;
  scroll-snap-align: start;
  padding: 1rem 0.85rem 1.15rem;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #080808;
  transition: background 180ms ease, border-color 180ms ease;
}

.category-card img {
  width: 105px;
  height: 105px;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.7));
  transition: transform 200ms ease;
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: translateY(-4px) scale(1.04);
}

.category-card:hover,
.category-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    #0b0b0b;
}

.category-card span {
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  line-height: 1;
  text-transform: uppercase;
}

.category-card em,
.text-link {
  color: var(--off-white);
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card em::after,
.text-link::after {
  content: " ->";
}

.store-band {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.story-section,
.products-section {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.story-section {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  background: #080808;
}

.story-section > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  filter: grayscale(1) contrast(1.1);
}

.story-copy {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 4vw, 3.25rem);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58), transparent);
}

.story-title {
  width: min(100%, 260px);
}

.story-copy span {
  display: block;
  margin: 0.75rem 0 1.2rem;
  color: var(--white);
  font-size: 1.35rem;
}

.story-copy p,
.story-copy strong {
  display: block;
  max-width: 330px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.55;
}

.story-copy strong {
  margin-top: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-section {
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: #090909;
}

.section-heading-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-heading-split h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

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

.product-grid[aria-busy="true"] {
  opacity: 0.72;
}

.product-toolbar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 0 1rem;
  scrollbar-color: var(--grey) transparent;
}

.filter-button,
.option-button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-button.is-active,
.option-button.is-active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

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

.product-load-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--soft-line);
  background: #050505;
}

.product-media {
  display: block;
  aspect-ratio: 1 / 1.06;
  overflow: hidden;
  border-radius: 7px;
  background: #eeeeee;
}

.product-media:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.04);
  transition: transform 220ms ease;
}

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

.is-live-product .product-media {
  border: 1px solid var(--soft-line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 38%),
    #050505;
}

.is-live-product .product-media img {
  padding: 0.8rem;
}

.product-info {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0.45rem;
  padding-top: 0.65rem;
}

.product-info h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-info p {
  margin: 0.28rem 0 0;
  color: var(--white);
  font-size: 0.74rem;
  font-family: var(--font-utility);
  font-weight: 700;
}

.add-button {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.add-button:hover,
.add-button:focus-visible,
.add-button.is-added {
  background: var(--white);
  color: var(--black);
  transform: translateY(-1px);
}

.journal-stockists {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--line);
}

.lookbook-section {
  width: min(100%, 1536px);
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.lookbook-grid {
  display: grid;
  gap: 0.8rem;
}

.lookbook-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  background: #000;
}

.lookbook-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.88;
  transition: transform 260ms ease, opacity 260ms ease;
}

.lookbook-card:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.lookbook-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84));
}

.lookbook-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.way-icons {
  width: min(100%, 1536px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.way-icons div {
  min-height: 86px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  padding: 0.8rem 0.35rem;
  border-right: 1px solid var(--soft-line);
}

.way-icons div:last-child {
  border-right: 0;
}

.way-icons img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.way-icons span {
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-panel {
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
  background: #070707;
}

.inline-panel .eyebrow {
  margin: 0 0 0.5rem;
  color: var(--grey);
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inline-panel h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.inline-panel p:last-child {
  max-width: 520px;
  margin: 0.55rem 0 0;
  color: var(--grey);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-footer {
  background: #050505;
}

.trust-bar {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.trust-bar div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 0.15rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--soft-line);
}

.trust-bar strong {
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-bar span,
.footer-bottom p {
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-bottom {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.footer-logo {
  width: 170px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.social-links a {
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  color: var(--white);
}

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

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

.drawer {
  justify-items: end;
}

.drawer-panel,
.modal-panel {
  width: min(100%, 430px);
  height: 100%;
  overflow-y: auto;
  border-left: 1px solid var(--line);
  background: #050505;
  color: var(--white);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.modal {
  place-items: center;
  padding: 1rem;
}

.modal-panel {
  height: auto;
  max-height: min(760px, 92vh);
  border: 1px solid var(--line);
  transform: translateY(18px);
}

.drawer.is-open .drawer-panel,
.modal.is-open .modal-panel {
  transform: translateX(0) translateY(0);
}

.drawer-header,
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2,
.modal-panel h2,
.chat-header h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.empty-state,
.modal-note {
  color: var(--grey);
  font-size: 0.9rem;
  font-weight: 700;
}

.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--soft-line);
}

.cart-line img {
  width: 74px;
  height: 82px;
  object-fit: cover;
  background: var(--off-white);
}

.cart-line h3 {
  margin: 0;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-line small {
  display: block;
  margin-top: 0.25rem;
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-line p,
.cart-line strong {
  margin: 0.3rem 0 0;
  color: var(--off-white);
  font-size: 0.82rem;
}

.qty-controls {
  display: inline-grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  margin-top: 0.65rem;
  border: 1px solid var(--line);
}

.qty-controls button {
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.qty-controls span {
  text-align: center;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.cart-summary {
  position: sticky;
  bottom: 0;
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: #050505;
}

.cart-summary div,
.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-summary p {
  margin: 0;
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 700;
}

.checkout-button,
.chat-form button {
  min-height: 46px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-utility);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-button:disabled,
.chat-form button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.checkout-button.is-secondary {
  background: transparent;
  color: var(--white);
}

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

.printful-status {
  margin: 0;
  padding: 0.85rem;
  border: 1px solid var(--soft-line);
  background: #070707;
  color: var(--grey);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.printful-status[data-state="ok"] {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--off-white);
}

.printful-status[data-state="error"] {
  border-color: rgba(192, 0, 0, 0.8);
  color: #ffefef;
}

.modal-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.product-modal-panel {
  width: min(1120px, 94vw);
}

.product-detail {
  display: grid;
  gap: 1.1rem;
}

.product-detail-media {
  display: grid;
  gap: 0.75rem;
  place-items: center;
  min-height: min(70vh, 680px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    #050505;
  border: 1px solid var(--line);
}

.product-detail-media img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  padding: clamp(0.75rem, 2vw, 1.5rem);
}

.product-gallery {
  width: 100%;
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0 0.75rem 0.75rem;
}

.gallery-thumb {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  border: 1px solid var(--soft-line);
  background: #0b0b0b;
  cursor: pointer;
  padding: 0;
}

.gallery-thumb.is-active,
.gallery-thumb:focus-visible {
  border-color: var(--white);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  padding: 0.25rem;
  object-fit: contain;
}

.product-detail-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.product-detail-copy h2 {
  font-family: var(--font-condensed);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.product-detail-price {
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.option-group {
  display: grid;
  gap: 0.55rem;
}

.option-group > span {
  color: var(--grey);
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.field {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: #000;
  color: var(--white);
  padding: 0 0.9rem;
  font: inherit;
}

.account-form {
  display: grid;
  gap: 0.9rem;
}

.account-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--off-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-results {
  display: grid;
  gap: 0.6rem;
}

.search-result {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  border: 1px solid var(--soft-line);
  background: #090909;
  color: var(--white);
  padding: 0.55rem;
  text-align: left;
  cursor: pointer;
}

.search-result img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  background: var(--off-white);
}

.search-result span,
.search-result strong {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chat-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
}

.chat-toggle {
  min-width: 74px;
  min-height: 42px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-utility);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 52px;
  width: min(340px, calc(100vw - 2rem));
  display: none;
  border: 1px solid var(--line);
  background: #050505;
}

.chat-panel.is-open {
  display: block;
}

.chat-log {
  max-height: 220px;
  overflow-y: auto;
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.chat-log p {
  margin: 0;
  color: var(--off-white);
  font-size: 0.86rem;
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1rem 1rem;
}

.chat-quick button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  padding: 0.45rem 0.55rem;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
}

.chat-form button {
  min-height: 46px;
  padding: 0 0.85rem;
}

.nav-menu-static {
  position: static;
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: 0;
  border: 0;
  background: transparent;
  transform: none;
}

.nav-menu-static a {
  padding: 0;
  border: 0;
}

.page-shell {
  width: min(100%, 1536px);
  margin: 0 auto;
  min-height: calc(100svh - 88px);
  padding: clamp(2rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 20rem),
    #050505;
}

.page-hero {
  max-width: 820px;
}

.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 620px;
  color: var(--off-white);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
}

.page-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.page-grid article {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.page-grid h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-grid p {
  max-width: 420px;
  color: var(--grey);
  font-weight: 700;
}

.page-media-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.page-media-grid img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: grayscale(1) contrast(1.08);
}

.cart-page-panel {
  max-width: 760px;
  margin-top: 2rem;
  border: 1px solid var(--line);
  background: #050505;
}

@media (min-width: 760px) {
  .page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 759px) {
  .nav-shell {
    min-height: 74px;
    grid-template-columns: auto auto 1fr;
  }

  .brand-mark > img:first-child {
    width: 136px;
  }

  .menu-toggle {
    order: -1;
    justify-self: start;
  }

  .nav-menu {
    inset: 74px 0 auto 0;
  }

  .nav-actions .icon-button:not(.cart-button) {
    display: none;
  }

  .hero {
    min-height: 0;
    display: block;
    background: #050505;
  }

  .hero-slides {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #050505;
  }

  .hero-bg {
    object-fit: contain;
    object-position: center center;
  }

  .hero-bg-3 {
    object-position: center center;
  }

  .hero-bg-5 {
    object-position: center center;
  }

  .hero-overlay {
    display: none;
  }

  .hero-grain {
    inset: 0 0 auto;
    height: calc(100vw * 0.5625);
  }

  .hero-content {
    position: relative;
    justify-content: center;
    width: 100%;
    padding: 1.05rem 1rem 1.2rem;
    background: #050505;
    border-top: 1px solid var(--line);
  }

  .hero-wordmark {
    width: min(77vw, 360px);
  }

  .button {
    min-width: 132px;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-section > img {
    position: absolute;
    inset: 0;
  }

  .story-copy {
    min-height: 360px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.54));
  }
}

@media (min-width: 760px) {
  .nav-shell {
    padding: 0 2rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 3.3vw, 3rem);
    padding: 0;
    border: 0;
    background: transparent;
    transform: none;
  }

  .nav-menu a {
    padding: 0;
    border: 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: 2.1rem;
  }

  .hero-index {
    display: grid;
  }

  .category-strip {
    grid-auto-columns: 1fr;
  }

  .category-card {
    min-height: 190px;
  }

  .store-band {
    grid-template-columns: minmax(330px, 0.95fr) minmax(0, 1.15fr);
  }

  .story-section,
  .products-section {
    border-bottom: 0;
  }

  .story-section {
    border-right: 1px solid var(--line);
  }

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

  .product-detail {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

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

  .lookbook-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .lookbook-card-large {
    grid-row: span 2;
    min-height: 532px;
  }

  .lookbook-card-large img {
    min-height: 532px;
  }

  .inline-panel {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .inline-panel:last-child {
    border-right: 0;
  }

  .trust-bar {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .trust-bar div {
    border-right: 1px solid var(--soft-line);
    border-bottom: 0;
  }

  .trust-bar div:last-child {
    border-right: 0;
  }

  .footer-bottom {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (min-width: 1180px) {
  .nav-shell {
    min-height: 88px;
    padding: 0 3rem;
  }

  .hero {
    min-height: 548px;
  }

  .hero-content {
    padding-right: 5.8rem;
  }

  .hero-wordmark {
    width: 500px;
  }

  .category-card {
    min-height: 190px;
  }

  .category-card img {
    width: 118px;
    height: 118px;
  }

  .store-band {
    grid-template-columns: 35.2% 64.8%;
  }
}

.nav-menu-static,
.nav-menu-static.is-open {
  position: static;
  inset: auto;
  display: flex;
  transform: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-menu-static a {
  border: 0;
}

/* Store collection restructuring */
.section-kicker {
  margin: 0.45rem 0 0;
  color: var(--grey);
  font-size: 0.8rem;
  font-weight: 800;
}

.collection-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.collection-tile {
  min-width: 0;
  min-height: 142px;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 0.15rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: 7px;
  background: #050505;
  color: var(--white);
  cursor: pointer;
  padding: 0.85rem;
  text-align: left;
}

.collection-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.88));
}

.collection-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  opacity: 0.72;
  filter: grayscale(1) contrast(1.08);
}

.collection-tile span,
.collection-tile strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-utility);
  text-transform: uppercase;
}

.collection-tile span {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.collection-tile strong {
  color: var(--grey);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.collection-tile:hover,
.collection-tile:focus-visible,
.collection-tile.is-active {
  border-color: var(--white);
}

.product-category-tag {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--grey);
  font-family: var(--font-utility);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-load-more {
  display: grid;
  place-items: center;
  padding-top: 1rem;
}

.load-more-button {
  min-height: 42px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0.7rem 1rem;
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.load-more-button:hover,
.load-more-button:focus-visible {
  background: var(--white);
  color: var(--black);
}

@media (min-width: 760px) {
  .collection-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 2026 storefront polish */
body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.08), transparent 34rem),
    #000;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.88);
}

.hero {
  min-height: min(760px, calc(100svh - 88px));
}

.hero-bg {
  object-position: center;
  filter: grayscale(1) contrast(1.2) brightness(0.86);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.04) 52%, rgba(0, 0, 0, 0.88) 100%);
}

.hero-content {
  align-self: stretch;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: clamp(6rem, 11vw, 9rem);
  padding-bottom: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy {
  max-width: 680px;
  pointer-events: auto;
}

.eyebrow {
  margin: 0;
  color: var(--grey);
  font-family: var(--font-utility);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0.45rem 0 0;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: clamp(4.8rem, 15vw, 13.5rem);
  font-weight: 400;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 520px;
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
}

.hero-drop-note {
  width: min(300px, 34vw);
  min-height: 180px;
  display: grid;
  align-content: end;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.52);
  pointer-events: auto;
}

.hero-drop-note span,
.hero-drop-note strong,
.hero-drop-note em {
  font-family: var(--font-utility);
  text-transform: uppercase;
}

.hero-drop-note span {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-drop-note strong {
  color: var(--white);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
}

.hero-drop-note em {
  color: var(--grey);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.button {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.category-card {
  min-height: 228px;
  isolation: isolate;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 180ms ease;
}

.category-card:hover::before,
.category-card:focus-visible::before {
  opacity: 1;
}

.category-card span,
.category-card em,
.category-card img {
  position: relative;
  z-index: 1;
}

.store-band {
  display: block;
}

.story-section {
  min-height: 440px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.story-copy {
  display: grid;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72), transparent),
    #050505;
}

.products-section {
  padding: clamp(1rem, 3vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18rem),
    #050505;
}

.drop-callout {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid var(--soft-line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 44%),
    #080808;
}

.drop-callout h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.drop-callout p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--grey);
  font-weight: 800;
}

.section-heading-split {
  align-items: end;
  padding-top: 0.25rem;
}

.section-heading-split h2 {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.collection-overview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.collection-tile {
  min-height: 184px;
  border-radius: 0;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 38%),
    #070707;
}

.collection-tile img {
  transform: scale(1.04);
  transition: transform 240ms ease, opacity 240ms ease;
}

.collection-tile:hover img,
.collection-tile:focus-visible img,
.collection-tile.is-active img {
  opacity: 0.92;
  transform: scale(1.11);
}

.collection-tile span {
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 0.95;
}

.product-toolbar {
  position: sticky;
  top: 88px;
  z-index: 7;
  margin: 0 -0.35rem 1rem;
  padding: 0.35rem;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(12px);
}

.filter-button,
.option-button,
.load-more-button {
  border-color: rgba(255, 255, 255, 0.18);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.product-grid {
  gap: clamp(0.85rem, 1.6vw, 1.25rem);
}

.product-card {
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255, 255, 255, 0);
  pointer-events: none;
  transition: border-color 180ms ease;
}

.product-card:hover::before {
  border-color: rgba(255, 255, 255, 0.24);
}

.product-media {
  position: relative;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.18), transparent 46%),
    linear-gradient(135deg, #242424, #0c0c0c 58%, #181818);
}

.is-live-product .product-media {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(135deg, #292929, #0c0c0c 58%, #171717);
}

.is-live-product .product-media img {
  padding: clamp(0.45rem, 1.6vw, 1rem);
  filter: brightness(1.15) contrast(1.08);
}

.product-image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-image-hover {
  opacity: 1;
}

.product-card:hover .product-image-hover + .product-media-mark,
.product-card:hover .product-media .product-image-main {
  opacity: 0;
}

.product-media-mark {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 2;
  padding: 0.32rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-info {
  align-items: start;
  padding: 0.72rem 0.2rem 0.15rem;
}

.product-info h3 {
  display: -webkit-box;
  min-height: 2.4em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
}

.product-info small {
  display: block;
  max-width: 22ch;
  margin-top: 0.22rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-utility);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-info p {
  margin-top: 0.4rem;
  font-size: 0.88rem;
}

.product-category-tag {
  color: rgba(255, 255, 255, 0.55);
}

.add-button {
  border-radius: 0;
}

.product-modal-panel {
  width: min(1240px, 95vw);
  padding: 0;
  overflow: hidden;
}

.product-modal-panel > .drawer-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 3;
  background: #050505;
}

.product-detail {
  gap: 0;
}

.product-detail-media {
  min-height: min(74vh, 760px);
  border: 0;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(135deg, #242424, #080808 56%, #151515);
}

.product-detail-media > img {
  max-height: min(68vh, 720px);
  padding: clamp(1rem, 3vw, 2rem);
}

.product-gallery {
  justify-content: center;
  padding: 0 1rem 1rem;
}

.gallery-thumb {
  width: 76px;
  height: 76px;
  border-radius: 0;
  background:
    linear-gradient(135deg, #181818, #050505);
}

.gallery-thumb img {
  background: transparent;
}

.product-detail-copy {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.product-detail-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  overflow-wrap: anywhere;
}

.product-detail-copy .modal-note {
  max-width: 420px;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.product-tabs article {
  min-height: 106px;
  border: 1px solid var(--soft-line);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.025);
}

.product-tabs span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-tabs p {
  margin: 0;
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.4;
}

.search-result img,
.cart-line img {
  background:
    linear-gradient(135deg, #191919, #050505);
  object-fit: contain;
}

.lookbook-section {
  background:
    linear-gradient(180deg, #080808, #020202);
}

.trust-bar,
.footer-bottom {
  background: #030303;
}

@media (min-width: 760px) {
  .collection-overview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (min-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .collection-overview {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .hero-content {
    display: grid;
    justify-items: start;
    padding: 1.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(4.6rem, 22vw, 7.5rem);
  }

  .hero-drop-note {
    width: 100%;
    min-height: 112px;
  }

  .product-toolbar {
    top: 74px;
  }

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

  .product-detail-media {
    min-height: 48vh;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-detail-copy h2 {
    max-width: 11ch;
  }
}

/* Shift Gremlin mockup direction */
:root {
  --acid: #b6ff00;
  --acid-soft: rgba(182, 255, 0, 0.18);
  --ink: #020303;
  --panel: rgba(10, 12, 13, 0.78);
  --panel-solid: #090b0c;
  --hairline: rgba(255, 255, 255, 0.14);
}

body {
  color: #f5f5f2;
  background:
    radial-gradient(circle at 8% 10%, rgba(182, 255, 0, 0.07), transparent 22rem),
    radial-gradient(circle at 88% 4%, rgba(255, 255, 255, 0.05), transparent 26rem),
    linear-gradient(180deg, #050707 0%, #090b0c 48%, #030404 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.19;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.shipping-strip {
  position: sticky;
  top: 0;
  z-index: 51;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #070909;
  color: #f6f7f2;
  font-family: var(--font-utility);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.shipping-strip span,
.shipping-strip strong,
.eyebrow span,
.cart-count {
  color: var(--acid);
}

.site-header {
  top: 38px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(4, 5, 5, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.nav-shell {
  min-height: 70px;
}

.brand-mark > img:first-child {
  width: clamp(170px, 17vw, 230px);
}

.nav-menu a,
.icon-button {
  color: rgba(255, 255, 255, 0.92);
}

.nav-menu a {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.55rem;
  height: 1px;
  background: var(--acid);
  transition: right 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  right: 0;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--acid);
  transform: translateY(-1px);
}

.hero {
  min-height: min(820px, calc(100svh - 108px));
  border-bottom: 0;
  background: #040505;
}

.hero-bg {
  object-position: 62% center;
  filter: grayscale(1) contrast(1.19) brightness(0.82) saturate(0.7);
  transform: scale(1.012);
  transition: opacity 1100ms ease, transform 6200ms ease;
}

.hero-bg-1 {
  object-position: 66% center;
}

.hero-bg-2 {
  object-position: 56% center;
}

.hero-bg-3 {
  object-position: 58% center;
}

.hero-bg.is-active {
  transform: scale(1.045);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.58) 39%, rgba(0, 0, 0, 0.1) 72%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.02) 54%, rgba(0, 0, 0, 0.94) 100%);
}

.hero-grain {
  opacity: 0.12;
  background-size: 3px 3px, 8px 8px;
}

.hero-content {
  align-items: center;
  padding: clamp(7rem, 12vw, 11rem) clamp(1.3rem, 7vw, 7rem) clamp(6rem, 10vw, 8rem);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  margin-top: 1.25rem;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.52);
  font-size: clamp(5.4rem, 11.6vw, 11.6rem);
  line-height: 0.82;
}

.hero-subtitle {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 650;
  letter-spacing: 0.01em;
  text-transform: none;
}

.hero-buttons {
  gap: 1rem;
  margin-top: 1.9rem;
}

.button,
.checkout-button,
.chat-form button,
.load-more-button,
.filter-button,
.option-button {
  border-radius: 4px;
}

.button {
  min-width: 176px;
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.11em;
  box-shadow: inset 0 0 0 1px transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button-primary,
.checkout-button,
.filter-button.is-active,
.option-button.is-active {
  border-color: var(--acid);
  background: var(--acid);
  color: #050505;
  box-shadow: 0 0 24px rgba(182, 255, 0, 0.18);
}

.button-secondary,
.checkout-button.is-secondary {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.button:hover,
.button:focus-visible,
.checkout-button:hover,
.checkout-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(182, 255, 0, 0.22);
}

.hero-drop-note {
  width: min(260px, 28vw);
  min-height: 152px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(4, 5, 5, 0.42);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 24px 70px rgba(0, 0, 0, 0.34);
}

.hero-drop-note span {
  color: var(--acid);
}

.hero-index {
  color: rgba(255, 255, 255, 0.72);
}

.hero-index i {
  background: var(--acid);
}

.hero-trust {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 2rem), 1390px);
  margin: -4.8rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 9, 10, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.hero-trust div {
  min-height: 96px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  column-gap: 1rem;
  padding: 1rem 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust div:last-child {
  border-right: 0;
}

.hero-trust img {
  width: 32px;
  height: 32px;
  grid-row: span 2;
  object-fit: contain;
  filter: sepia(1) saturate(4) hue-rotate(28deg) brightness(1.18);
}

.hero-trust strong,
.hero-trust span {
  font-family: var(--font-utility);
  text-transform: uppercase;
}

.hero-trust strong {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.category-section,
.store-band,
.lookbook-section,
.journal-stockists,
.way-icons,
.trust-bar,
.footer-bottom {
  width: min(100%, 1480px);
}

.category-section {
  padding: clamp(4.5rem, 7vw, 7rem) clamp(1rem, 3vw, 2rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 0;
}

.collection-heading {
  margin-bottom: 1.55rem;
}

.collection-heading h2,
.section-heading-split h2,
.lookbook-section h2 {
  margin: 0.25rem 0 0;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.category-strip {
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
  padding-bottom: 0.6rem;
}

.category-card {
  position: relative;
  min-height: clamp(280px, 34vw, 430px);
  align-items: stretch;
  justify-items: stretch;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: 7px;
  background: #070808;
  overflow: hidden;
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  opacity: 0.76;
  filter: grayscale(1) contrast(1.12) brightness(0.76);
  transform: scale(1.01);
  transition: transform 360ms ease, opacity 360ms ease, filter 360ms ease;
}

.category-card::before {
  z-index: 1;
  opacity: 1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 54%);
}

.category-card::after {
  content: "->";
  position: absolute;
  right: 1.15rem;
  bottom: 1.3rem;
  z-index: 2;
  color: #fff;
  font-family: var(--font-utility);
  font-size: 1.15rem;
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.category-card span,
.category-card em {
  position: absolute;
  left: 1.25rem;
  z-index: 2;
}

.category-card span {
  bottom: 2.75rem;
  font-family: var(--font-condensed);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0;
}

.category-card em {
  bottom: 1.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.category-card em::after {
  content: "";
}

.category-card:hover,
.category-card:focus-visible {
  border-color: rgba(182, 255, 0, 0.68);
  box-shadow: 0 0 0 1px rgba(182, 255, 0, 0.16), 0 24px 70px rgba(0, 0, 0, 0.3);
}

.category-card:hover img,
.category-card:focus-visible img {
  opacity: 0.92;
  filter: grayscale(1) contrast(1.18) brightness(0.9);
  transform: scale(1.075);
}

.category-card:hover::after,
.category-card:focus-visible::after {
  color: var(--acid);
  transform: translateX(4px);
}

.store-band {
  border-bottom: 0;
}

.story-section {
  display: none;
}

.products-section {
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 8%, rgba(182, 255, 0, 0.06), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 20rem),
    rgba(5, 7, 8, 0.86);
}

.drop-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  align-items: end;
  gap: 1.4rem;
  padding: 0 0 1.5rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.drop-callout h2 {
  font-size: clamp(3.4rem, 8vw, 7.5rem);
}

.drop-callout p:last-child {
  justify-self: end;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.64);
}

.collection-overview {
  gap: 0.75rem;
}

.collection-tile {
  min-height: 170px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: #090b0c;
}

.collection-tile::after {
  background:
    linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.93)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 62%);
}

.collection-tile img {
  object-fit: cover;
  padding: 0;
  opacity: 0.56;
}

.collection-tile:hover,
.collection-tile:focus-visible,
.collection-tile.is-active {
  border-color: rgba(182, 255, 0, 0.74);
}

.collection-tile.is-active strong {
  color: var(--acid);
}

.product-toolbar {
  top: 108px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  background: rgba(6, 8, 9, 0.78);
}

.filter-button,
.option-button {
  min-height: 36px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.filter-button:hover,
.option-button:hover {
  border-color: rgba(182, 255, 0, 0.72);
  color: #fff;
}

.product-grid {
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.product-card {
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 46%),
    #090b0c;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card::before {
  display: none;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(182, 255, 0, 0.42);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(182, 255, 0, 0.08);
  transform: translateY(-5px);
}

.product-media,
.is-live-product .product-media {
  aspect-ratio: 1 / 1.14;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.22), transparent 43%),
    linear-gradient(145deg, #232526, #0b0d0e 60%, #161819);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.28));
}

.is-live-product .product-media img {
  padding: clamp(0.55rem, 1.4vw, 1.05rem);
  filter: brightness(1.11) contrast(1.08) saturate(0.92);
}

.is-sticker-product .product-media {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(145deg, #1c2021, #070909 62%, #111414);
}

.is-sticker-product .product-media img {
  padding: clamp(2.35rem, 4vw, 4.2rem);
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.16))
    brightness(1.08)
    contrast(1.08);
}

.product-media-mark {
  top: 2.45rem;
  border-color: rgba(182, 255, 0, 0.52);
  border-radius: 3px;
  background: rgba(20, 30, 0, 0.72);
  color: var(--acid);
}

.product-new-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 3;
  padding: 0.26rem 0.42rem;
  border: 1px solid rgba(182, 255, 0, 0.55);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--acid);
  font-family: var(--font-utility);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info {
  grid-template-columns: 1fr auto;
  padding: 0.95rem 1rem 1.05rem;
}

.product-info h3 {
  min-height: auto;
  color: #fff;
}

.product-category-tag,
.product-info small {
  display: none;
}

.product-info p {
  color: rgba(255, 255, 255, 0.82);
}

.swatch-row {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.swatch {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.36);
}

.swatch-black { background: #020202; }
.swatch-charcoal { background: #2f3130; }
.swatch-white,
.swatch-off-white { background: #f2f0e8; }
.swatch-grey { background: #7d817d; }
.swatch-olive { background: #555b3b; }
.swatch-mono { background: linear-gradient(135deg, #fff 0 48%, #090909 50%); }

.add-button {
  width: 39px;
  height: 39px;
  align-self: end;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.86);
}

.add-button:hover,
.add-button:focus-visible,
.add-button.is-added {
  border-color: var(--acid);
  background: var(--acid);
  color: #060606;
  transform: translateY(-2px) scale(1.04);
}

.add-button.is-added {
  animation: addPop 620ms ease;
}

.cart-button.is-burst .cart-count {
  animation: cartPulse 540ms ease;
}

.cart-toast {
  position: fixed;
  right: 1.2rem;
  top: 118px;
  z-index: 90;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(182, 255, 0, 0.55);
  border-radius: 6px;
  background: rgba(7, 9, 10, 0.92);
  color: #fff;
  font-family: var(--font-utility);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.lookbook-section,
.inline-panel,
.site-footer {
  background: #050606;
}

.lookbook-card {
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 7px;
}

.lookbook-card span {
  font-family: var(--font-condensed);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
}

.trust-bar {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  overflow: hidden;
}

.drawer-panel,
.modal-panel,
.chat-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 20% 0%, rgba(182, 255, 0, 0.06), transparent 18rem),
    #070909;
}

.product-modal .modal-panel {
  max-height: min(860px, 92vh);
  overflow-y: auto;
}

.product-modal-panel {
  overflow: auto;
}

.product-modal-panel .product-detail {
  min-height: 0;
}

.product-modal-panel .product-detail-copy {
  max-height: min(860px, 92vh);
  overflow-y: auto;
  padding-bottom: 2.2rem;
}

.product-modal-panel .product-detail-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
}

.product-modal-panel .option-group,
.product-modal-panel [data-product-add] {
  display: grid;
}

.product-modal-panel .option-group {
  order: 4;
}

.product-modal-panel [data-product-add] {
  order: 5;
}

.product-modal-panel .product-tabs {
  order: 6;
}

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

.product-modal-panel .product-tabs article {
  min-height: 86px;
}

.drawer-close {
  border-radius: 50%;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
  transform: rotate(90deg);
}

@keyframes addPop {
  0% { transform: translateY(-2px) scale(1); }
  45% { transform: translateY(-5px) scale(1.18); }
  100% { transform: translateY(-2px) scale(1.04); }
}

@keyframes cartPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.55); }
  100% { transform: scale(1); }
}

@media (min-width: 760px) {
  .category-strip {
    grid-auto-columns: minmax(210px, 1fr);
  }

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

@media (min-width: 1180px) {
  .category-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-flow: initial;
  }

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

@media (max-width: 759px) {
  .shipping-strip {
    min-height: 34px;
    padding: 0 0.75rem;
    font-size: 0.62rem;
  }

  .site-header {
    top: 34px;
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-menu {
    inset: 102px 0 auto 0;
  }

  .hero {
    min-height: calc(100svh - 102px);
  }

  .hero-slides {
    position: absolute;
    height: 100%;
    aspect-ratio: auto;
  }

  .hero-bg {
    object-fit: cover;
    object-position: 67% center;
  }

  .hero-overlay {
    display: block;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.92)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12));
  }

  .hero-content {
    min-height: calc(100svh - 102px);
    align-content: end;
    padding: 6rem 1.1rem 6.8rem;
    border-top: 0;
    background: transparent;
  }

  .hero-copy h1 {
    font-size: clamp(4.9rem, 20vw, 7.4rem);
  }

  .hero-buttons {
    width: 100%;
  }

  .button {
    flex: 1 1 142px;
  }

  .hero-drop-note {
    display: none;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
    margin-top: -5.5rem;
  }

  .hero-trust div {
    min-height: 82px;
    grid-template-columns: 26px 1fr;
    padding: 0.8rem;
  }

  .hero-trust img {
    width: 24px;
    height: 24px;
  }

  .hero-trust strong {
    font-size: 0.64rem;
  }

  .hero-trust span {
    font-size: 0.6rem;
  }

  .collection-heading h2,
  .section-heading-split h2,
  .lookbook-section h2 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .category-section {
    padding-top: 4.2rem;
  }

  .category-strip {
    grid-auto-columns: minmax(245px, 76vw);
  }

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

  .drop-callout p:last-child {
    justify-self: start;
  }

  .product-toolbar {
    top: 102px;
  }

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

  .product-info {
    padding: 0.78rem;
  }

  .swatch-row {
    gap: 0.3rem;
  }

  .cart-toast {
    top: 106px;
    right: 0.75rem;
    left: 0.75rem;
    text-align: center;
  }
}

/* Collection filter sidebar */
.shop-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: start;
}

.filter-sidebar {
  position: sticky;
  top: 166px;
  max-height: calc(100svh - 188px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background:
    radial-gradient(circle at 16% 0%, rgba(182, 255, 0, 0.07), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 16rem),
    rgba(6, 8, 9, 0.82);
  backdrop-filter: blur(16px);
}

.filter-head,
.filter-group {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.filter-head strong,
.filter-group > span {
  color: #fff;
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.filter-head button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.filter-head button:disabled {
  cursor: default;
  opacity: 0.36;
}

.filter-list,
.filter-size-list,
.filter-swatch-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.filter-row {
  min-height: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.filter-row span,
.filter-row em,
.filter-check {
  font-size: 0.78rem;
  font-weight: 750;
}

.filter-row em {
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
}

.filter-row:hover,
.filter-row:focus-visible,
.filter-row.is-active {
  color: #fff;
}

.filter-row.is-active em,
.filter-row.is-active::after {
  color: var(--acid);
}

.filter-row.is-active::after {
  content: "✓";
  grid-column: 2;
  grid-row: 1;
  font-weight: 900;
}

.filter-row.is-active em {
  display: none;
}

.filter-swatch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-swatch,
.filter-size {
  min-width: 36px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-swatch:not(:first-child) {
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  color: transparent;
}

.filter-swatch.is-active,
.filter-size.is-active {
  border-color: var(--acid);
  box-shadow: 0 0 0 1px rgba(182, 255, 0, 0.32), 0 0 18px rgba(182, 255, 0, 0.14);
}

.filter-size-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-track {
  position: relative;
  height: 18px;
  margin-top: 1rem;
}

.price-track::before,
.price-track i {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 2px;
  border-radius: 999px;
}

.price-track::before {
  background: rgba(255, 255, 255, 0.16);
}

.price-track i {
  background: var(--acid);
}

.price-track i::before,
.price-track i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  background: #050606;
  transform: translateY(-50%);
}

.price-track i::before {
  left: 0;
}

.price-track i::after {
  right: 0;
}

.price-range {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
}

.filter-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--acid);
}

.filter-apply {
  display: none;
}

.filter-toggle {
  display: none;
}

@media (max-width: 1020px) {
  .shop-layout {
    display: block;
  }

  .filter-toggle {
    display: inline-flex;
  }

  .filter-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 86;
    width: min(360px, calc(100vw - 2rem));
    max-height: none;
    border-radius: 0;
    transform: translateX(-105%);
    transition: transform 220ms ease;
  }

  .products-section.filters-open .filter-sidebar {
    transform: translateX(0);
    box-shadow: 32px 0 90px rgba(0, 0, 0, 0.58);
  }

  .products-section.filters-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 85;
    background: rgba(0, 0, 0, 0.62);
  }

  .filter-apply {
    position: sticky;
    bottom: 0;
    display: block;
    width: calc(100% - 2rem);
    min-height: 46px;
    margin: 1rem;
    border: 1px solid var(--acid);
    border-radius: 5px;
    background: var(--acid);
    color: #050505;
    cursor: pointer;
    font-family: var(--font-utility);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}
