/* === Design Tokens === */
:root {
  --color-bg: #0f0f0f;
  --color-text: #efefef;
  --color-text-muted: #aaa;
  --color-text-light: #ffffff;
  --color-border: #2a2a2a;
  --color-border-hover: #555;
  --color-accent: #d6f2eb;

  --font-sans: 'Space Grotesk', sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  --space-page: 44px;
  --space-page-sm: 20px;

  --transition-base: 0.2s ease;
  --transition-slow: 0.5s ease;
  --header-height: 56px;
}

/* === Base === */
html {
  background-color: #0f0f0f;
  color-scheme: dark;
  scrollbar-gutter: stable;
}


body {
  background-color: var(--color-bg);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  border: none;
  padding: 0;
  margin: 0;
  padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  transition: background-color var(--transition-slow);
}

/* === Header & Navigation === */
.header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: #0f0f0f;
  box-sizing: border-box;
  transition: background var(--transition-base);
}

@media screen and (min-width: 769px) {
  .header-shell {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

.header-shell:hover,
.header-shell:focus-within {
  background: rgba(15, 15, 15, 0.97);
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  padding: 0 var(--space-page);
}

.title {
  margin: 0;
  text-decoration: none;
  display: block;
  transition: opacity var(--transition-base);
}

.title:hover {
  opacity: 0.45;
}

.logo-img {
  height: 20px;
  width: auto;
  display: block;
}

.nav {
  position: absolute;
  right: var(--space-page);
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  opacity: 0.75;
  transition: opacity var(--transition-base);
}

.cart-btn:hover {
  opacity: 1;
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-right: 4px;
  opacity: 0.75;
  transition: opacity var(--transition-base);
}

.instagram-link:hover {
  opacity: 1;
}

.instagram-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
  transition: opacity var(--transition-base);
}

.menu-toggle:hover::before {
  opacity: 0.45;
}

.navbar {
  display: flex;
  position: fixed;
  top: var(--header-height);
  right: 0;
  flex-direction: column;
  list-style: none;
  background: var(--color-bg);
  padding: 6px 0;
  margin: 0;
  min-width: 160px;
  z-index: 1001;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}

.navbar.open {
  transform: translateX(0);
  visibility: visible;
}

.navbar li {
  padding: 0;
}

.nav__link {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  font-weight: 400;
  transition: font-weight var(--transition-base);
}

.nav__link:hover {
  font-weight: 700;
}

.nav__link[aria-current="page"] {
  border-left: 2px solid var(--color-accent);
  padding-left: 18px;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

/* === Back Button === */
.back-button {
  margin-left: var(--space-page);
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  display: inline-block;
  transition: color var(--transition-base);
}

.back-button:hover {
  opacity: 0.45;
}

/* === Category / Section Label === */
#shop {
  scroll-margin-top: 72px;
}

.category {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  font-size: 24px;
  margin-left: var(--space-page);
  margin-top: 28px;
  margin-bottom: 0;
}

/* === Shop Gallery === */
.gallery-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 28px var(--space-page);
}

@keyframes growIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  width: 100%;
  clip-path: polygon(0.1px 0%, calc(100% - 0.1px) 0%, 100% 0.1px, 100% calc(100% - 0.1px), calc(100% - 0.1px) 100%, 0.1px 100%, 0% calc(100% - 0.1px), 0% 0.1px);
  transition: transform 0.3s ease, clip-path 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  will-change: transform;
  animation: growIn 0.5s ease-out forwards;
  opacity: 0;
}


.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0% calc(100% - 12px), 0% 12px);
  box-shadow: 0 12px 40px rgba(214, 242, 235, 0.7);
}

.product-image {
  width: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-text);
}

.product-title {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  font-size: 24px;
  margin: 0 0 0.5rem;
}

.product-info .product-price {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-family: var(--font-mono);
}

/* === Product Detail Page === */
.product-page {
  display: flex;
  margin: var(--space-page);
  gap: 60px;
  margin-top: 28px;
}

.product-gallery {
  flex: 1;
  max-width: 800px;
}

.gallery-main {
  position: relative;
  width: 100%;
  height: 800px;
  margin-bottom: 20px;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-image.active {
  opacity: 1;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.thumbnail.active {
  opacity: 1;
  border-color: var(--color-border);
}

.thumbnail:hover {
  opacity: 0.75;
}

.product-details {
  flex: 1;
  max-width: 500px;
}

/* === Size Selector === */
.size-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  margin-top: 32px;
}

.size-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

.size-select {
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 10px 36px 10px 14px;
  border: 1px solid var(--color-border-hover);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  width: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23111111'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s ease;
}

.size-select:focus {
  outline: none;
  border-color: var(--color-text);
}

@media screen and (max-width: 768px) {
  .size-selector {
    align-items: center;
  }
}

.add-to-cart-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-bottom: 24px;
}

.add-to-cart-btn:hover {
  background: var(--color-accent);
  color: #111111;
}

.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-details .product-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 48px;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.product-details .product-price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 30px;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 700;
}

.product-description {
  font-size: 22px;
  line-height: 1.6;
  color: var(--color-text);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

.product-log {
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  border-left: 1px solid var(--color-border-hover);
  padding-left: 14px;
}

.log-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

/* === About Page === */
.about-hero {
  min-height: 80vh;
  min-height: 80svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--space-page) 80px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 0%, rgba(214,242,235,0.7) 60%, rgba(214,242,235,0.92) 100%);
}

.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.7;
  margin: 0 0 28px;
}

.about-display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(64px, 11vw, 150px);
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: #ffffff;
  margin: 0;
}

.about-display em {
  font-style: italic;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px var(--space-page);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  position: relative;
  z-index: 1;
  background: rgba(214, 242, 235, 0.88);
}

.about-manifesto {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #111111;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-manifesto p {
  margin: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 20px;
  align-content: start;
  margin: 0;
  padding: 0;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-stat dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111111;
  opacity: 0.65;
}

.about-stat dd {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: #111111;
  margin: 0;
}

.about-quote {
  padding: 100px var(--space-page);
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  position: relative;
  z-index: 1;
  background: rgba(214, 242, 235, 0.88);
}

.about-quote blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #111111;
  text-align: center;
  margin: 0;
  max-width: 900px;
}

.about-quote blockquote em {
  font-style: italic;
}

body.about-page { background: transparent; }

.about-image-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  z-index: -1;
  width: 100vw;
  height: 100vh;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.3;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Lookbook Page === */
body.lookbook-page {
  background-color: var(--color-bg);
  animation: backgroundTransition 20s linear infinite;
}

@keyframes backgroundTransition {
  0%   { background-color: #0f0f0f; }
  50%  { background-color: #1a1a1a; }
  100% { background-color: #141414; }
}

body.lookbook-page .header-shell {
  animation: lookbookHeaderTransition 20s linear infinite;
}

body.lookbook-page .header-shell:hover,
body.lookbook-page .header-shell:focus-within {
  animation: lookbookHeaderTransitionOpaque 20s linear infinite;
}

@keyframes lookbookHeaderTransition {
  0%   { background: rgba(15, 15, 15, 0.7); }
  50%  { background: rgba(26, 26, 26, 0.7); }
  100% { background: rgba(20, 20, 20, 0.7); }
}

@keyframes lookbookHeaderTransitionOpaque {
  0%   { background: rgba(15, 15, 15, 0.97); }
  50%  { background: rgba(26, 26, 26, 0.97); }
  100% { background: rgba(20, 20, 20, 0.97); }
}

.lookbook-container {
  margin-top: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lookbook-gallery {
  display: flex;
  gap: 0;
  width: max-content;
  pointer-events: none;
}

.lookbook-gallery--left-slow {
  animation: scrollLeft 22s linear infinite;
}

.lookbook-gallery--right {
  animation: scrollRight 18s linear infinite;
}

.lookbook-gallery--left-fast {
  animation: scrollLeft 14s linear infinite;
}

.lookbook-image {
  width: 400px;
  height: 540px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* === Responsive: Tablet (≤1024px) === */
@media screen and (max-width: 1024px) {
  .product-page {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .product-gallery {
    max-width: 100%;
    width: 100%;
  }

  .gallery-main {
    height: 600px;
  }

  .product-details {
    max-width: 100%;
    text-align: center;
    width: 100%;
  }

  .gallery-thumbnails {
    margin-top: 20px;
  }

  .about-container {
    max-width: 100%;
    margin-right: var(--space-page);
  }
}

/* === Responsive: Mobile (≤768px) === */
@media screen and (max-width: 768px) {
  .hero {
    min-height: 100svh;
    height: 100svh;
    padding: 0 var(--space-page-sm);
  }

  .hero-headline {
    font-size: clamp(36px, 11vw, 64px);
    margin: 0 0 28px;
  }

  #shop {
    padding: 0 0 40px;
  }

  .about-image-container {
    transform: translate(-50%, -20%);
    height: 70vh;
    height: 70svh;
  }

  .about-hero {
    min-height: 70vh;
    min-height: 70svh;
    padding: 0 var(--space-page-sm) 60px;
  }

  .about-eyebrow {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px var(--space-page-sm);
  }

  .about-quote {
    padding: 80px var(--space-page-sm);
  }

  .logo-img {
    height: 14px;
  }

  header {
    justify-content: flex-start;
    padding: 0 var(--space-page-sm);
  }

  .nav {
    position: static;
    margin-left: auto;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .category {
    margin-left: var(--space-page-sm);
  }

  .gallery-container {
    flex-direction: column;
    white-space: normal;
    overflow-x: visible;
    align-items: stretch;
    margin-left: 0;
    padding: 20px var(--space-page-sm) 0;
    scroll-snap-type: none;
    gap: 16px;
  }

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

  .product-card {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }

  .product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .product-page {
    margin: var(--space-page-sm);
    gap: 30px;
  }

  .gallery-main {
    height: 400px;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }

  .product-details .product-title {
    font-size: 32px;
  }

  .product-details .product-price,
  .product-description {
    font-size: 20px;
  }

  .back-button {
    margin-left: var(--space-page-sm);
  }

  .lookbook-container {
    margin: var(--space-page-sm);
    margin-top: 20px;
  }

  .lookbook-image {
    width: 300px;
    height: 450px;
  }
}

/* === Responsive: Small Mobile (≤480px) === */
@media screen and (max-width: 480px) {
  .gallery-main {
    height: 300px;
  }

  .thumbnail {
    width: 50px;
    height: 50px;
  }

  .product-details .product-title {
    font-size: 28px;
  }

  .product-details .product-price,
  .product-description {
    font-size: 18px;
  }

  .product-card {
    width: 100%;
  }

  .lookbook-image {
    width: 250px;
    height: 375px;
  }
}


/* === Scroll Reveal === */
.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.will-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* === View Transitions === */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 0.3s ease both vt-fade-out;
}

::view-transition-new(root) {
  animation: 0.4s ease both vt-slide-in;
}

@keyframes vt-fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes vt-slide-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === Grain Texture === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 80vh;
  min-height: 80svh;
  height: 80vh;
  height: 80svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 0 var(--space-page) 80px;
  overflow: hidden;
  clip-path: inset(0);
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .hero-video {
    inset: auto;
    top: 50%;
    left: 50%;
    width: 100vh;
    height: 100vw;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}


.hero-headline,
.hero-cta {
  position: relative;
  z-index: 1;
}

/* === Coming Soon: blur unreleased products === */
img[src*="Grid_Link_1"],
img[src*="Grid_Link_2"],
img[src*="Spire_"] {
  filter: blur(10px);
}

.hero-headline {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 110px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: #ffffff;
  margin: 0 0 48px;
}

.hero-cta {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #111111;
  text-decoration: none;
  padding: 14px 40px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0% calc(100% - 12px), 0% 12px);
  overflow: hidden;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.hero-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(214,242,235,0.6) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 24px rgba(214,242,235,0.8), 0 0 60px rgba(214,242,235,0.3);
}

.hero-cta:hover::after {
  transform: translateX(200%);
}

/* === Footer === */
.site-footer {
  margin-top: 120px;
  padding: 60px var(--space-page) 48px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  height: 14px;
  width: auto;
  opacity: 0.7;
  filter: invert(85%) sepia(30%) saturate(300%) hue-rotate(115deg) brightness(105%);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: -0.01em;
  color: var(--color-text);
  opacity: 0.55;
  margin: 0;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.3;
  margin: 0;
}

/* === Custom Cart Drawer === */
.ac-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity var(--transition-base);
}

.ac-toggle:hover {
  opacity: 1;
}

.ac-toggle--active {
  color: var(--color-accent);
  opacity: 1;
  filter: drop-shadow(0 0 6px var(--color-accent));
}

.ac-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9991;
  background: rgba(0, 0, 0, 0.5);
}

.ac-overlay.is-open {
  display: block;
}

.ac-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9992;
  width: 360px;
  max-width: 100vw;
  background: #111111;
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

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

.ac-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.ac-head-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
}

.ac-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.ac-close:hover {
  opacity: 1;
}

.ac-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.ac-empty {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 40px;
}

.ac-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.ac-row-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-border);
}

.ac-row-img--placeholder {
  background: var(--color-border);
}

.ac-row-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}

.ac-row-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ac-row-size {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.ac-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.ac-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
}

.ac-qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
}

.ac-qty-btn:hover {
  color: var(--color-accent);
}

.ac-qty-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text);
  min-width: 20px;
  text-align: center;
}

.ac-row-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.ac-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

.ac-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text);
}

.ac-checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.ac-checkout-btn:hover {
  background: var(--color-accent);
  color: #111111;
}

.ac-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* === Product Badge === */
.product-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border: 1px solid var(--color-accent);
  background: rgba(214, 242, 235, 0.3);
  border-radius: 2px;
}

.product-badge--edition {
  border-color: #444;
  background: #2a2a2a;
  margin-left: 6px;
}

.product-badge--oos {
  border-color: #444;
  background: transparent;
  color: var(--color-text-muted);
  margin-left: 6px;
}

/* === Shop card: coming-soon overlay === */
.product-link {
  position: relative;
  display: block;
}

.product-drop-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #000;
  text-shadow: 0 0 4px #fff, 0 0 12px #fff, 0 0 28px rgba(255,255,255,0.9), 0 0 50px rgba(255,255,255,0.7);
  pointer-events: none;
  z-index: 1;
}

/* === Product page: drop date + OOS === */
.product-drop-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 20px;
}

.add-to-cart-btn--oos {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  cursor: not-allowed;
  opacity: 0.6;
}

.add-to-cart-btn--oos:hover {
  background: transparent;
  color: var(--color-text-muted);
}
