/* HELLABASAS Mardi Gras catalog chrome, white ground. */
:root {
  --bg: #fff;
  --fg: #111;
  --muted: #737373;
  --mute-2: #8a8a8a;
  --line: #ececec;
  --grey: #f2f2f2;
  --grey-2: #e8e8e8;
  --tile: #e9e9e9;
  --charcoal: #3c3f4a;
  --navy: #2a3344;
  --wine: #5a2c3a;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pad: 20px;
  --header-h: 56px;
  --logo: 88px;
  --max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--bg); color: var(--fg); }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  background: var(--bg);
  color: var(--fg);
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; background: none; border: 0; }
button { cursor: pointer; }
button:disabled, [aria-disabled="true"] { cursor: not-allowed; }
::selection { background: var(--fg); color: var(--bg); }

/* —— HEADER —— */
.site-header {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: flex-start;
  min-height: var(--header-h);
  height: var(--header-h);
  padding: 0 var(--pad) 0 0;
  background: #fff;
  overflow: visible;
}
.brand-cluster {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: 0;
  gap: 10px;
  padding-left: 12px;
}
.logo-tile {
  width: var(--logo);
  height: var(--logo);
  margin: 0;
  flex-shrink: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  position: relative;
  z-index: 5;
}
.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-type {
  display: flex;
  align-items: center;
  height: var(--header-h);
  flex-shrink: 1;
  min-width: 0;
}
.brand-type img {
  height: 17px;
  width: auto;
  max-width: min(176px, 40vw);
  object-fit: contain;
}
.site-nav {
  display: none;
  align-items: center;
  height: var(--header-h);
  gap: 18px;
  flex: 0 0 auto;
  margin-left: 22px;
  margin-right: 12px;
  white-space: nowrap;
}
.site-nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 6px 0;
}
.site-nav a:hover { opacity: 0.55; }
.header-tools {
  display: flex;
  align-items: center;
  height: var(--header-h);
  margin-left: auto;
  gap: 0;
  flex-shrink: 0;
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  position: relative;
}
.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bag-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: #111;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.menu-toggle { display: inline-flex; }

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.28);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.scrim.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(100%, 320px);
  background: #fff;
  z-index: 60;
  padding: 20px 22px 40px;
  transform: translateX(-100%);
  transition: transform 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--line);
}
.drawer.is-open { transform: translateX(0); }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.drawer-head span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.drawer nav a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.search-overlay.is-open { display: flex; }
.search-overlay form {
  width: min(100%, 520px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.search-overlay label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.search-overlay input[type="search"] {
  width: 100%;
  border-bottom: 1px solid #111;
  padding: 12px 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  outline: none;
}
.search-close { position: absolute; top: 16px; right: 12px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* —— HEADLINE + BLACK BAR —— */
.headline-block {
  /* Clear the hanging grey tile so the headline never slides under it. */
  padding: calc(var(--logo) - var(--header-h) + 28px) var(--pad) 28px;
  text-align: center;
}
.headline-block h1 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.announce {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 16px;
  line-height: 1.3;
}
.announce a { color: inherit; }

/* —— HERO (catalog homepage) —— */
.hero {
  position: relative;
  width: 100%;
  height: 70svh;
  max-height: 760px;
  overflow: hidden;
  background: #1a1a1a;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}
.home-hero img {
  object-fit: contain;
  object-position: center center;
}

/* —— COLLECTION ROW —— */
.collection-block {
  padding: 36px var(--pad) 56px;
  max-width: var(--max);
  margin: 0 auto;
}
.row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.row-head-left {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}
.row-title {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}
.row-status {
  font-size: 14px;
  font-weight: 400;
  color: var(--mute-2);
  letter-spacing: 0;
  text-transform: none;
}
.row-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.view-all {
  display: inline-flex;
  align-items: center;
  background: var(--grey);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.view-all:hover { background: var(--grey-2); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 12px;
}
.home-grid { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: 1fr 1fr; }
.card { display: block; min-width: 0; color: inherit; }
.card-img {
  position: relative;
  background: #000;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
}
.card-img.is-flat {
  background: #000;
}
.card-img.is-flat img,
.card-img img.is-flat {
  object-fit: contain;
  object-position: center center;
}
.card-meta { padding: 12px 2px 0; }
.card-collection {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}
.card-title {
  margin: 3px 0 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

/* —— DROP / COLLECTION PAGE —— */
.collection-page {
  padding: 28px var(--pad) 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.filters {
  font-size: 13px;
}
.filters h2 {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.filter-group { margin-bottom: 8px; }
.filter-group-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
}
.filter-reset {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.filter-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #333;
  font-size: 13px;
  cursor: default;
}
.filter-opt input {
  width: 14px;
  height: 14px;
  accent-color: #111;
  pointer-events: none;
}
.collection-main { min-width: 0; }
.collection-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 13px;
  color: #333;
}
.sort {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}
.sort select {
  appearance: none;
  background: transparent;
  padding: 4px 18px 4px 0;
  font-weight: 500;
  outline: none;
  cursor: default;
}

/* —— PDP —— */
.crumbs {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad) 0;
  font-size: 12px;
  color: var(--muted);
}
.crumbs a:hover { color: #111; }
.pdp {
  display: block;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad) 72px;
}
.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  background: transparent;
}
.pdp-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center center;
  background: #000;
}
.pdp-gallery img.is-flat {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center center;
  background: #000;
}
.pdp-info h1 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.pdp-sub {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--muted);
}
.block { margin-bottom: 22px; }
.block-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.swatches { display: flex; gap: 10px; align-items: center; }
.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  outline: 1px solid transparent;
  outline-offset: 3px;
  padding: 0;
}
.swatch.is-on { outline-color: #111; }
.swatch[data-color="charcoal"] { background: var(--charcoal); }
.swatch[data-color="navy"] { background: var(--navy); }
.swatch[data-color="wine"] { background: var(--wine); }

.fit-toggle {
  display: flex;
  gap: 8px;
}
.fit-toggle button {
  min-width: 88px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--grey-2);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  background: #fff;
}
.fit-toggle button.is-on {
  border-color: #111;
  color: #fff;
  background: #111;
}
.fit-copy {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.look-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.look-switch button {
  min-width: 88px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--grey-2);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
  background: #fff;
}

.look-switch button[hidden] { display: none !important; }
.look-switch button.is-on {
  border-color: #111;
  color: #fff;
  background: #111;
}


.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size {
  min-width: 52px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--grey-2);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  background: #fff;
}
.size.is-on {
  border-color: #111;
  background: #f7f7f7;
}
.size-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--mute-2);
}

.pdp-notify { margin-top: 8px; }
.pdp-notify input[type="email"] {
  width: 100%;
  height: 48px;
  border: 1px solid var(--grey-2);
  border-radius: 4px;
  padding: 0 14px;
  margin-bottom: 10px;
  outline: none;
  background: #fff;
}
.pdp-notify input[type="email"]:focus { border-color: #111; }
.btn-atc {
  width: 100%;
  height: 48px;
  background: var(--grey-2);
  color: #111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 4px;
}
.btn-atc:hover { background: #dedede; }
.notify-done {
  display: none;
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
}
.notify-form.is-done .notify-row,
.notify-form.is-done input,
.notify-form.is-done .btn-atc { display: none; }
.notify-form.is-done .notify-done { display: block; }

/* —— FOOTER —— */
.footer-bar {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 16px;
}
.site-footer {
  padding: 48px var(--pad) 28px;
  text-align: center;
}
.footer-mark {
  width: min(280px, 78%);
  height: auto;
  margin: 0 auto 28px;
}
.about-label {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--mute-2);
}
.about-copy {
  margin: 0 auto 36px;
  max-width: 420px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.footer-notify {
  width: min(100%, 360px);
  margin: 0 auto 40px;
}
.footer-notify .notify-row {
  display: flex;
  gap: 8px;
}
.footer-notify input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 1px solid var(--grey-2);
  border-radius: 4px;
  padding: 0 12px;
  outline: none;
  background: #fff;
}
.footer-notify button {
  height: 44px;
  padding: 0 16px;
  background: var(--grey-2);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
}
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin: 0 calc(var(--pad) * -1);
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.footer-legal p {
  margin: 0;
  font-size: 12px;
  color: var(--mute-2);
}

@media (max-width: 879px) {
  .hero {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
  }
  .hero img {
    object-fit: cover;
    object-position: left center;
  }
  .home-hero {
    aspect-ratio: 16 / 10;
  }
  .home-hero img {
    object-fit: contain;
    object-position: center center;
  }
  .headline-block { padding: calc(var(--logo) - var(--header-h) + 22px) var(--pad) 22px; }
  .collection-block { padding: 28px var(--pad) 48px; }
}

@media (min-width: 880px) {
  :root { --pad: 36px; --header-h: 64px; --logo: 104px; }
  .brand-cluster { gap: 14px; padding-left: 16px; }
  .logo-tile { padding: 16px; }
  .brand-type img { height: 22px; max-width: 200px; }
  .site-nav { display: flex; gap: 18px; margin-left: 20px; }
  .menu-toggle { display: none; }
  .home-hero img {
    object-fit: contain;
    object-position: center center;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .home-grid, .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; }
  .headline-block { padding: calc(var(--logo) - var(--header-h) + 32px) var(--pad) 32px; }
  .collection-block { padding: 40px var(--pad) 72px; }
  .collection-page {
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 36px var(--pad) 88px;
  }
  .pdp {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start;
    padding: 28px var(--pad) 88px;
  }
  .pdp-gallery { margin-bottom: 0; }
  .pdp-info { padding-top: 8px; max-width: 460px; position: sticky; top: 16px; }
}

@media (min-width: 1100px) {
  .brand-type img { height: 24px; max-width: 220px; }
  .site-nav { gap: 20px; margin-left: 24px; }
}

@media (min-width: 1280px) {
  :root { --pad: 48px; --logo: 112px; }
  .brand-cluster { gap: 16px; padding-left: 20px; }
  .logo-tile { padding: 18px; }
  .brand-type img { height: 26px; max-width: 240px; }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .home-grid, .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

/* —— UNUSED: coming-soon lock (do not apply to catalog pages) ——
   Kept scoped under body.page-coming. Homepage no longer uses this class. */
html:has(body.page-coming),
body.page-coming {
  height: 100svh;
  min-height: 100svh;
}
body.page-coming {
  --coming-header-h: 56px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* —— PRE-ORDER draft additions —— */
.card-price {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.01em;
}
.card-fabric {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
  line-height: 1.35;
}
.pdp-fabric {
  margin: -10px 0 22px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.45;
}
.pdp-fabric span { display: block; }
.pdp-price {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pdp-split {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted);
}
.pdp-split a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pdp-split a:hover { opacity: 0.6; }
.pdp-not-live {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.pdp-preorder { margin-top: 8px; }
.btn-atc {
  background: #111;
  color: #fff;
}
.btn-atc:hover { background: #333; }
.drop-section { margin-bottom: 44px; }
.drop-section:last-child { margin-bottom: 0; }
.drop-section-title {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.collection-block-tight { padding-top: 0; }
@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .home-grid, .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}


/* Women collection hero: cover, prefer front of the plate */
.hero-cover img {
  object-fit: cover;
  object-position: left center;
}
@media (max-width: 879px) {
  .hero-cover img {
    object-fit: cover;
    object-position: left center;
  }
}


/* —— HOME NIGHT SKY —— */
#sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% 115%, #161b30 0%, transparent 62%),
    radial-gradient(ellipse 50% 40% at 80% 10%, #10142a 0%, transparent 55%),
    #07080f;
}
body.has-sky {
  background: #07080f;
  color: #f3efe6;
}
body.has-sky .site-header,
body.has-sky .announce,
body.has-sky .hero,
body.has-sky .collection-block,
body.has-sky .footer-bar,
body.has-sky .site-footer {
  position: relative;
  z-index: 1;
}
body.has-sky .site-header {
  background: transparent;
}
body.has-sky .logo-tile {
  background: transparent !important;
}
body.has-sky .logo-tile img,
body.has-sky .brand-type img,
body.has-sky .footer-mark {
  filter: invert(1);
}
body.has-sky .site-nav a,
body.has-sky .icon-btn {
  color: #f3efe6;
}
body.has-sky .icon-btn svg { stroke: #f3efe6; }
body.has-sky .announce {
  background: transparent;
  color: rgba(243,239,230,0.72);
}
body.has-sky .home-hero {
  background: transparent;
}
body.has-sky .home-hero img {
  mix-blend-mode: normal;
}
body.has-sky .row-title,
body.has-sky .card-title,
body.has-sky .card-price {
  color: #f3efe6;
}
body.has-sky .row-status,
body.has-sky .card-collection,
body.has-sky .card-fabric {
  color: rgba(243,239,230,0.55);
}
body.has-sky .view-all {
  background: rgba(255,255,255,0.1);
  color: #f3efe6;
}
body.has-sky .view-all:hover { background: rgba(255,255,255,0.16); }
body.has-sky .footer-bar {
  background: transparent;
  color: rgba(243,239,230,0.7);
}
body.has-sky .about-label,
body.has-sky .about-copy,
body.has-sky .footer-legal p {
  color: rgba(243,239,230,0.55);
}
body.has-sky .footer-legal {
  border-top-color: rgba(255,255,255,0.12);
}
body.has-sky .footer-notify input[type="email"] {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: #f3efe6;
}
body.has-sky .footer-notify button {
  background: #f3efe6;
  color: #111;
}

body.has-sky .collection-page,
body.has-sky .collection-main,
body.has-sky .pdp,
body.has-sky .headline-block,
body.has-sky .crumbs {
  position: relative;
  z-index: 1;
  color: #f3efe6;
}
body.has-sky .headline-block h1,
body.has-sky .pdp-info h1,
body.has-sky .pdp-sub,
body.has-sky [data-pdp-price],
body.has-sky .crumbs,
body.has-sky .crumbs a,
body.has-sky .filters h2,
body.has-sky .filter-group-head {
  color: #f3efe6;
}
body.has-sky .filter-reset,
body.has-sky .filter-opt,
body.has-sky .collection-bar,
body.has-sky .sort {
  color: rgba(243,239,230,0.7);
}
body.has-sky .pdp-gallery img { background: transparent; }
body.has-sky .pdp-gallery img.is-flat { background: #000; }
body.has-sky .btn-atc { background: #f3efe6; color: #111; }
html:has(body.has-sky) { background: #07080f; }

.logo-tile { perspective: 220px; }
.logo-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: logo-spin 7.5s linear infinite;
}
.logo-3d-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}
.logo-3d-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none !important;
}
.logo-3d-back { transform: rotateY(180deg); }
@keyframes logo-spin {
  to { transform: rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-3d { animation: none; }
}
.home-doors {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 28px var(--pad) 56px;
  position: relative;
  z-index: 1;
}
.home-doors a {
  color: #f3efe6;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* —— SKY ALL PAGES v3 —— */
html:has(body.has-sky),
body.has-sky {
  background: #07080f !important;
  color: #f3efe6;
}
body.has-sky .site-header,
body.has-sky .announce,
body.has-sky .hero,
body.has-sky .home-hero,
body.has-sky .headline-block,
body.has-sky .collection-block,
body.has-sky .collection-page,
body.has-sky .collection-main,
body.has-sky .filters,
body.has-sky .pdp,
body.has-sky .pdp-info,
body.has-sky .pdp-gallery,
body.has-sky .crumbs,
body.has-sky .footer-bar,
body.has-sky .site-footer {
  background: transparent !important;
  color: #f3efe6;
  position: relative;
  z-index: 1;
}
body.has-sky .hero { background: transparent !important; }
body.has-sky .logo-tile {
  background: transparent !important;
}
body.has-sky .logo-tile img,
body.has-sky .brand-type img,
body.has-sky .footer-mark {
  filter: invert(1);
}
body.has-sky .logo-3d-face img {
  filter: none !important;
}
body.has-sky .site-nav a,
body.has-sky .icon-btn,
body.has-sky .drawer-head span,
body.has-sky .drawer nav a {
  color: #f3efe6;
}
body.has-sky .icon-btn svg { stroke: #f3efe6; }
body.has-sky .announce { color: rgba(243,239,230,0.72); }
body.has-sky .card-collection,
body.has-sky .card-title,
body.has-sky .card-price,
body.has-sky .row-title,
body.has-sky .pdp-info h1,
body.has-sky .headline-block h1,
body.has-sky [data-pdp-price] {
  color: #f3efe6;
}
body.has-sky .card-fabric,
body.has-sky .row-status,
body.has-sky .pdp-sub,
body.has-sky .fit-copy,
body.has-sky .size-note,
body.has-sky .filter-reset,
body.has-sky .filter-opt,
body.has-sky .collection-bar,
body.has-sky .sort,
body.has-sky .crumbs,
body.has-sky .crumbs a {
  color: rgba(243,239,230,0.7);
}
body.has-sky .crumbs a:hover { color: #f3efe6; }
body.has-sky .view-all {
  background: rgba(255,255,255,0.1);
  color: #f3efe6;
}
body.has-sky .drawer,
body.has-sky .search-overlay {
  background: #0b0d16;
  color: #f3efe6;
  border-color: rgba(255,255,255,0.12);
}
body.has-sky .drawer nav a { border-bottom-color: rgba(255,255,255,0.12); }
body.has-sky .fit-toggle button,
body.has-sky .look-switch button,
body.has-sky .size,
body.has-sky .pdp-notify input[type="email"],
body.has-sky .footer-notify input[type="email"],
body.has-sky .search-overlay input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: #f3efe6;
}
body.has-sky .fit-toggle button.is-on,
body.has-sky .look-switch button.is-on,
body.has-sky .size.is-on {
  background: #f3efe6;
  color: #111;
  border-color: #f3efe6;
}
body.has-sky .btn-atc {
  background: #f3efe6;
  color: #111;
}
body.has-sky .btn-atc:hover { background: #ded8cc; }
body.has-sky .pdp-gallery img { background: transparent; }
body.has-sky .pdp-gallery img.is-flat,
body.has-sky .card-img.is-flat { background: #000; }
body.has-sky .footer-legal { border-top-color: rgba(255,255,255,0.12); }
body.has-sky .footer-legal p,
body.has-sky .about-label,
body.has-sky .about-copy {
  color: rgba(243,239,230,0.55);
}
body.has-sky .footer-notify button {
  background: #f3efe6;
  color: #111;
}

.home-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  align-items: end;
  justify-content: center;
  width: min(520px, 86vw);
  max-width: 520px;
  margin: 0 auto;
  padding: 8px var(--pad) 36px;
  position: relative;
  z-index: 1;
}
.home-door {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  color: #f3efe6;
}
.home-door img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(52svh, 420px);
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: normal;
}
.home-door span {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.has-sky .home-pair,
body.has-sky .home-door {
  background: transparent;
  color: #f3efe6;
}

.card-sold {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
}
body.has-sky .card-sold { color: rgba(243,239,230,0.72); }
.btn-atc:disabled,
.btn-atc:disabled:hover { opacity: 0.55; cursor: not-allowed; }

a.card[hidden] { display: none !important; }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.admin-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mute-2);
  opacity: 0.7;
}
.admin-link:hover { opacity: 1; }
body.has-sky .admin-link {
  color: rgba(243,239,230,0.38);
  opacity: 1;
}
body.has-sky .admin-link:hover { color: rgba(243,239,230,0.7); }
