/* ============================================================
   ZEKO SELLS — Shopify Theme Prototype
   Luxury / Streetwear Hybrid
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea { font: inherit; }

/* === VARIABLES === */
:root {
  --bg:          #080808;
  --bg-alt:      #111111;
  --bg-card:     #0e0e0e;
  --cream:       #f0ebe0;
  --cream-dim:   #9a9590;
  --gold:        #c9a84c;
  --gold-light:  #e8d49a;
  --gold-dim:    rgba(201,168,76,0.15);
  --border:      rgba(240,235,224,0.07);
  --border-gold: rgba(201,168,76,0.25);

  --font-display:   'Cormorant Garamond', serif;
  --font-editorial: 'Cormorant Garamond', serif;
  --font-body:      'DM Sans', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t:    0.35s var(--ease);
  --t-fast: 0.18s ease;

  --header-h: 72px;
  --max-w: 1440px;
  --gutter: clamp(16px, 4vw, 64px);
}

/* === BASE === */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
::selection { background: var(--gold-dim); color: var(--cream); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-gold); border-radius: 2px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--cream);
}
.editorial { font-family: var(--font-editorial); font-weight: 300; }
.label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
}

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(60px, 8vw, 120px) 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  transition: background var(--t), border-color var(--t-fast);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: var(--t);
  transform-origin: left;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(-1px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(1px); }

.logo {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--cream);
}
.logo-sep { width: 1px; height: 12px; background: var(--border-gold); }
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 400;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  transition: color var(--t-fast);
  border-radius: 4px;
}
.icon-btn:hover { color: var(--cream); }
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-count {
  position: absolute;
  top: 6px; right: 6px;
  width: 14px; height: 14px;
  background: var(--gold);
  color: #080808;
  font-size: 0.5rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* Desktop Nav (hidden mobile) */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
.desktop-nav a {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 400;
  transition: color var(--t-fast);
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.desktop-nav a:hover { color: var(--cream); }
.desktop-nav a:hover::after { width: 100%; }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 190;
  padding: calc(var(--header-h) + 40px) var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(-100%);
  transition: transform var(--t);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  transition: color var(--t-fast);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.mobile-nav a:hover { color: var(--cream); }
.mobile-nav-footer {
  margin-top: auto;
  display: flex;
  gap: 24px;
}
.mobile-nav-footer a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: none;
  padding: 0;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.cart-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  font-size: 1.2rem;
  transition: color var(--t-fast);
  border-radius: 4px;
}
.cart-close:hover { color: var(--cream); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--cream-dim);
  text-align: center;
  padding: 40px;
}
.cart-empty svg { width: 48px; height: 48px; opacity: 0.3; }
.cart-empty p { font-size: 0.85rem; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
}
.cart-item-img {
  width: 80px; height: 96px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--bg-card);
}
.cart-item-info { flex: 1; }
.cart-item-title {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.3;
}
.cart-item-variant {
  font-size: 0.7rem;
  color: var(--cream-dim);
  margin-bottom: 12px;
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.qty-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--cream-dim);
  transition: background var(--t-fast), color var(--t-fast);
}
.qty-btn:hover { background: var(--border); color: var(--cream); }
.qty-num {
  width: 32px;
  text-align: center;
  font-size: 0.75rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 6px 0;
  color: var(--cream);
}
.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold);
}
.cart-item-remove {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 8px;
  display: block;
  transition: color var(--t-fast);
  width: fit-content;
}
.cart-item-remove:hover { color: var(--cream); }

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-subtotal span:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.cart-subtotal span:last-child {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.cart-note {
  font-size: 0.65rem;
  color: var(--cream-dim);
  text-align: center;
  letter-spacing: 0.05em;
}
.btn-continue {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-align: center;
  transition: color var(--t-fast);
}
.btn-continue:hover { color: var(--cream); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-body);
  transition: var(--t);
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #080808;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240,235,224,0.3);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(240,235,224,0.05);
}
.btn-ghost {
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--cream); border-color: rgba(240,235,224,0.2); }
.btn-full { width: 100%; }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg img { transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.2) 0%,
    rgba(8,8,8,0.1) 40%,
    rgba(8,8,8,0.7) 80%,
    rgba(8,8,8,0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease) 0.2s both;
}
.hero-tag-line { width: 32px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.92;
  max-width: 14ch;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 0.35s both;
}
.hero-h1 em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.72em;
  color: var(--gold-light);
  display: block;
}
.hero-sub {
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  color: rgba(240,235,224,0.6);
  max-width: 44ch;
  font-weight: 300;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease) 0.5s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease) 0.65s both;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 32px; right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s both;
}
.hero-scroll-cue span {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   FEATURED COLLECTIONS
   ============================================================ */
.featured-collections { padding: 8px 0; }
.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.1) 60%);
  transition: background var(--t);
}
.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.2) 60%);
}
.collection-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.collection-card-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}
.collection-card-count {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.collection-card-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t), transform var(--t);
}
.collection-card-cta .cta-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.collection-card:hover .collection-card-cta { opacity: 1; transform: translateY(0); }
.collection-card:hover .cta-line { width: 24px; }

/* ============================================================
   PRODUCT CARDS & GRID
   ============================================================ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(32px, 4vw, 56px);
  gap: 16px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.section-header a {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t-fast);
}
.section-header a:hover { gap: 14px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
}
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
}
.product-card-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-card);
}
.product-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-card-media img { transform: scale(1.05); }

.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #080808;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 8px;
  font-weight: 500;
  z-index: 1;
}
.product-card-badge.new { background: var(--cream); }

.quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--border-gold);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform var(--t);
}
.product-card:hover .quick-add { transform: translateY(0); }
.quick-add-btn {
  width: 100%;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  transition: color var(--t-fast);
}
.quick-add-btn:hover { color: var(--gold-light); }

.product-card-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card-brand {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.product-card-title {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
}
.product-card-price {
  font-size: 0.82rem;
  color: var(--gold);
  margin-top: 4px;
}
.product-card-price s { color: var(--cream-dim); margin-right: 6px; }

/* ============================================================
   ELECTRONICS WIDE BANNER
   ============================================================ */
.electronics-banner {
  position: relative;
  display: block;
  overflow: hidden;
  height: clamp(270px, 33vw, 480px);
  margin-top: 6px;
  cursor: pointer;
}
.electronics-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.8s var(--ease);
}
.electronics-banner:hover img { transform: scale(1.04); }
.electronics-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.4) 50%,
    rgba(8,8,8,0.2) 100%
  );
  transition: background var(--t);
}
.electronics-banner:hover .electronics-banner-overlay {
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.5) 50%,
    rgba(8,8,8,0.25) 100%
  );
}
.electronics-banner-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 64px);
}
.electronics-banner-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.electronics-banner .collection-card-cta {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--t), transform var(--t);
}
.electronics-banner:hover .collection-card-cta {
  opacity: 1;
  transform: translateX(0);
}
.electronics-banner:hover .cta-line { width: 32px; }

/* ============================================================
   BRAND STORY
   ============================================================ */
.brand-story {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.brand-story-bg {
  position: absolute;
  inset: 0;
}
.brand-story-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.6);
}
.brand-story-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.95) 0%,
    rgba(8,8,8,0.6) 60%,
    rgba(8,8,8,0.3) 100%
  );
}
.brand-story-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.brand-story-quote {
  font-family: var(--font-editorial);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--cream);
}
.brand-story-quote em { color: var(--gold-light); font-style: normal; }
.brand-story-body {
  font-size: 0.9rem;
  color: rgba(240,235,224,0.6);
  line-height: 1.8;
  max-width: 48ch;
}

/* ============================================================
   EMAIL SIGNUP
   ============================================================ */
.email-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.email-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.email-inner h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.email-sub { color: var(--cream-dim); font-size: 0.85rem; }
.email-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 440px;
}
.email-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 14px 18px;
  font-size: 0.8rem;
  border-radius: 2px;
  transition: border-color var(--t-fast);
  outline: none;
}
.email-input::placeholder { color: var(--cream-dim); }
.email-input:focus { border-color: var(--border-gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 6px; }
.footer-logo-main { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.1em; }
.footer-desc { font-size: 0.8rem; color: var(--cream-dim); line-height: 1.7; max-width: 28ch; }
.footer-socials { display: flex; gap: 12px; margin-top: 4px; }
.footer-socials a {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  color: var(--cream-dim);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer-socials a:hover { border-color: var(--border-gold); color: var(--gold); }
.footer-socials svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.8rem;
  color: var(--cream-dim);
  transition: color var(--t-fast);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.65rem; color: var(--cream-dim); letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.65rem; color: var(--cream-dim); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--cream); }

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-hero {
  height: 40vh;
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  margin-top: var(--header-h);
  overflow: hidden;
}
.collection-hero-bg {
  position: absolute;
  inset: 0;
}
.collection-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.collection-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 60%);
}
.collection-hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.collection-hero h1 { font-size: clamp(3rem, 7vw, 6rem); }

.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.filter-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar-inner::-webkit-scrollbar { display: none; }
.filter-group {
  display: flex;
  align-items: stretch;
  border-right: 1px solid var(--border);
}
.filter-group:last-child { border-right: none; margin-left: auto; }
.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 48px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  transition: color var(--t-fast), background var(--t-fast);
}
.filter-btn:last-child { border-right: none; }
.filter-btn:hover { color: var(--cream); background: rgba(240,235,224,0.03); }
.filter-btn.active { color: var(--gold); }
.filter-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.collection-grid-section { padding: 32px 0 80px; }
.collection-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.collection-count { font-size: 0.65rem; color: var(--cream-dim); letter-spacing: 0.1em; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page {
  margin-top: var(--header-h);
}
.product-layout {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: start;
}

/* Stacked image column */
.product-images {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 24px;
}
.product-images img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Sticky info panel */
.product-info-panel {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
  padding: 48px 56px 80px 48px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.product-info-panel::-webkit-scrollbar { width: 4px; }
.product-info-panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* Product info */
.product-info { display: flex; flex-direction: column; gap: 28px; }
.product-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.65rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
}
.product-breadcrumb a:hover { color: var(--gold); }
.product-breadcrumb span { opacity: 0.4; }

.product-title-group { display: flex; flex-direction: column; gap: 8px; }
.product-brand {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-title { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1; }
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--cream-dim);
}
.stars { color: var(--gold); letter-spacing: 1px; }

.product-price-group { display: flex; align-items: center; gap: 12px; }
.product-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.product-price-original {
  font-size: 1rem;
  color: var(--cream-dim);
  text-decoration: line-through;
}
.product-save {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  padding: 4px 8px;
  border-radius: 2px;
}

.product-divider { height: 1px; background: var(--border); }

/* Variant selector */
.variant-group { display: flex; flex-direction: column; gap: 12px; }
.variant-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.variant-label a { color: var(--gold); }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-opt {
  min-width: 48px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
  border-radius: 2px;
}
.variant-opt:hover { border-color: rgba(240,235,224,0.3); color: var(--cream); }
.variant-opt.selected { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.variant-opt.unavailable { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Scent swatches */
.scent-options { display: flex; gap: 10px; flex-wrap: wrap; }
.scent-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: opacity var(--t-fast);
}
.scent-swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color var(--t-fast);
}
.scent-opt.selected .scent-swatch { border-color: var(--gold); }
.scent-name { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); }

/* ATC section */
.atc-group { display: flex; flex-direction: column; gap: 12px; }
.qty-row { display: flex; gap: 10px; align-items: center; }
.qty-lg {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.qty-lg-btn {
  width: 44px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--cream-dim);
  transition: background var(--t-fast), color var(--t-fast);
}
.qty-lg-btn:hover { background: rgba(240,235,224,0.05); color: var(--cream); }
.qty-lg-num {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--cream);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.btn-atc {
  flex: 1;
  height: 52px;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold);
  color: #080808;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: var(--t);
  font-family: var(--font-body);
  font-weight: 500;
}
.btn-atc:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-wishlist {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  border-radius: 2px;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.btn-wishlist:hover { border-color: var(--border-gold); color: var(--gold); }
.btn-wishlist svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Accordion */
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--t-fast);
}
.accordion-trigger:hover { color: var(--cream); }
.accordion-icon { font-size: 1.2rem; transition: transform var(--t); }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(240,235,224,0.6);
  line-height: 1.8;
}
.accordion-item.open .accordion-body { display: block; }

/* Related products */
.related-section {
  background: #f5f2ee;
}
.related-inner {
  padding: 64px 56px 80px;
}
.related-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: #111008;
  letter-spacing: -0.01em;
}
.related-view-all {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111008;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid #c9a84c;
  transition: opacity 0.2s ease;
}
.related-view-all:hover { opacity: 0.6; }
.related-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .menu-toggle { display: none; }
  .header-inner { grid-template-columns: 200px auto 200px; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-info-panel {
    position: static;
    height: auto;
    overflow-y: visible;
    padding: 32px 24px 64px;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .collections-grid { grid-template-columns: 1fr; gap: 4px; }
  .collection-card { aspect-ratio: 4/5; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .email-form { flex-direction: column; }
  .btn { padding: 12px 24px; }

  .hero-h1 { font-size: clamp(3rem, 14vw, 5rem); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}
