/* =========================================
   GEODOR FASHION — Main Stylesheet
   Aesthetic: Luxury Editorial / Dark Mode
   ========================================= */

:root {
  --black: #0a0a0a;
  --white: #f5f0eb;
  --cream: #e8e0d5;
  --gold: #c9a84c;
  --gold-light: #e5c87a;
  --charcoal: #1a1a1a;
  --mid: #2e2e2e;
  --muted: #6b6b6b;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.15);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 2px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); outline: none; }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .12s ease, width .3s, height .3s, border-color .3s;
}
body:hover .cursor { opacity: 1; }

/* ---- CONTAINER ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ---- TYPOGRAPHY ---- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-tag {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag.center, .section-title.center { text-align: center; }
.section-header { margin-bottom: 60px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform var(--transition);
  z-index: -1;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--black); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
}
.btn--ghost:hover { background: rgba(255,255,255,.06); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--black); }
.btn.full-width { width: 100%; text-align: center; }
.btn.small { padding: 10px 20px; font-size: .75rem; }

/* ---- IMAGE PLACEHOLDERS ---- */
.img-placeholder {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px dashed rgba(201,168,76,.3);
  overflow: hidden;
  min-height: 200px;
}
.img-placeholder::before {
  content: attr(data-label);
  position: absolute;
  top: 8px; left: 8px;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,.7);
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 2;
  font-family: var(--font-body);
}
.placeholder-inner {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
}
.placeholder-icon { font-size: 2.5rem; margin-bottom: 12px; opacity: .4; }
.placeholder-inner p { font-size: .9rem; font-weight: 500; color: var(--white); opacity: .5; }
.placeholder-inner span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); opacity: .6; }
.img-placeholder.small { min-height: 60px; width: 60px; border-radius: 50%; }
.img-placeholder.small .placeholder-inner { padding: 0; }
.img-placeholder.small .placeholder-icon { font-size: 1.5rem; margin: 0; }

/* Real <img> tags inside placeholders — fill container, show top of image (preserves faces) */
.img-placeholder .placeholder-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* To replace a placeholder with a real image:
   .my-placeholder { background-image: url('images/my-photo.jpg'); background-size: cover; background-position: center; }
   Then remove .img-placeholder class and the data-label / .placeholder-inner */

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-decoration: none;
}
.nav__logo-wordmark {
  font-family: var(--font-accent);
  font-size: 2rem;
  letter-spacing: .22em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-geo {
  color: var(--white);
  position: relative;
}
.logo-geo::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1.1em;
  background: var(--gold);
  opacity: .55;
  margin: 0 7px;
  vertical-align: middle;
}
.logo-dor {
  color: var(--gold);
  letter-spacing: .28em;
}
.logo-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .6rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding-left: 2px;
  line-height: 1;
}
.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.btn-search, .btn-cart {
  color: rgba(255,255,255,.7);
  transition: color .3s;
  display: flex; align-items: center;
  position: relative;
}
.btn-search:hover, .btn-cart:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: -6px; right: -8px;
  width: 16px; height: 16px;
  background: var(--gold); color: var(--black);
  border-radius: 50%; font-size: .6rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: var(--transition);
}
.cart-count.show { opacity: 1; transform: scale(1); }
.btn-menu {
  display: none; flex-direction: column; gap: 5px;
  width: 24px; padding: 2px 0;
}
.btn-menu span {
  display: block; height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.btn-menu.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.btn-menu.open span:nth-child(2) { opacity: 0; }
.btn-menu.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.77,0,.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin-bottom: 32px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300;
  letter-spacing: -.02em;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* Search Overlay */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,.97);
  z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-close {
  position: absolute; top: 32px; right: 48px;
  font-size: 1.5rem; color: var(--muted);
  transition: color .3s;
}
.search-close:hover { color: var(--white); }
.search-inner { text-align: center; width: 100%; max-width: 700px; padding: 0 40px; }
.search-label { font-family: var(--font-display); font-size: 1rem; color: var(--muted); margin-bottom: 24px; letter-spacing: .1em; text-transform: uppercase; }
.search-input {
  width: 100%; background: none;
  border: none; border-bottom: 1px solid var(--border-light);
  font-family: var(--font-display); font-size: 3rem; font-weight: 300;
  color: var(--white); padding: 16px 0; text-align: center;
}
.search-input::placeholder { color: var(--muted); }

/* =========================================
   HERO — Split Editorial Layout
   ========================================= */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* ---- Right image panel ---- */
.hero__canvas { position: absolute; inset: 0; }

.hero__panel-right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 60%;
  overflow: hidden;
  z-index: 1;
}
.hero__panel-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  /* keep the warm leather & gold — just pull brightness down */
  filter: brightness(.52) saturate(1.1);
  transform: scale(1.04);
}

/* Diagonal gradient that bleeds panel into the dark left */
.hero__canvas::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    var(--black)          0%,
    var(--black)          30%,
    rgba(10,10,10,.92)    44%,
    rgba(10,10,10,.45)    58%,
    rgba(10,10,10,.12)   100%
  );
  z-index: 2;
}

/* Soft gold ambient glow at the seam */
.hero__glow {
  position: absolute;
  top: 50%; left: 42%;
  transform: translate(-50%, -50%);
  width: 70vw; height: 100vh;
  background: radial-gradient(ellipse at 55% 50%,
    rgba(201,168,76,.11) 0%,
    transparent 60%);
  z-index: 2;
  pointer-events: none;
}

/* Thin vertical gold accent line at the seam */
.hero__vline {
  position: absolute;
  left: 41%;
  top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(201,168,76,.3) 20%,
    rgba(201,168,76,.3) 80%,
    transparent);
  z-index: 3;
}

/* ---- Content ---- */
.hero__content {
  position: relative; z-index: 10;
  padding: 0 80px;
  max-width: 760px;
}
.hero__eyebrow {
  font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 18px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-accent);
  font-size: clamp(5rem, 13vw, 15rem);
  line-height: .88;
  letter-spacing: .02em;
  margin-bottom: 28px;
  display: block;
}
.hero__title span { display: block; }
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 300;
}
.hero__sub {
  font-size: 1rem; color: rgba(255,255,255,.6);
  margin-bottom: 0; max-width: 360px;
  line-height: 1.8;
}
/* Thin gold rule between sub and CTAs */
.hero__accent-line {
  width: 52px; height: 1px;
  background: var(--gold);
  opacity: .7;
  margin: 32px 0;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 40px; right: 80px;
  writing-mode: vertical-rl;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 12px;
  z-index: 10;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:.4; height:60px; } 50% { opacity:1; height:80px; } }

/* Reveal Animations */
.reveal {
  opacity: 0; transform: translateY(30px);
  animation: revealUp .9s cubic-bezier(.22,1,.36,1) forwards;
}
.hero__eyebrow.reveal     { animation-delay: .2s; }
.hero__title.reveal       { animation-delay: .4s; }
.hero__sub.reveal         { animation-delay: .65s; }
.hero__accent-line.reveal { animation-delay: .8s; }
.hero__ctas.reveal        { animation-delay: .95s; }
@keyframes revealUp { to { opacity:1; transform:translateY(0); } }
.reveal-up { opacity:0; transform:translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal-up.visible { opacity:1; transform:translateY(0); }

/* =========================================
   MARQUEE STRIP
   ========================================= */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-accent);
  font-size: 1rem; letter-spacing: .12em;
  color: var(--black);
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================
   COLLECTIONS
   ========================================= */
.collections { padding: 120px 0 80px; }
.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.collection-card { position: relative; overflow: hidden; }
.collection-card.large { grid-row: 1 / 3; }
.collection-img {
  width: 100%;
  transition: transform .8s var(--transition);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.collection-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.collection-card.large .collection-img { aspect-ratio: 2/3; height: 100%; }
.collection-card:hover .collection-img { transform: scale(1.04); }
.collection-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(10,10,10,.9));
}
.collection-tag {
  display: inline-block;
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  background: var(--gold); color: var(--black);
  padding: 3px 10px; margin-bottom: 8px;
}
.collection-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400;
  margin-bottom: 6px;
}
.collection-info p { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.collection-link {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); transition: letter-spacing .3s;
}
.collection-link:hover { letter-spacing: .2em; }

/* =========================================
   STYLES / SHOP
   ========================================= */
.styles { padding: 100px 0; background: var(--charcoal); }
.filter-tabs { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-tab {
  padding: 10px 24px;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted); transition: var(--transition);
}
.filter-tab:hover, .filter-tab.active { border-color: var(--gold); color: var(--gold); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  cursor: pointer; position: relative;
  transition: transform .4s ease;
}
.product-card:hover { transform: translateY(-6px); }
.product-img {
  aspect-ratio: 3/4;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}
.product-img .img-placeholder { height: 100%; }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px;
}
.badge-new { background: var(--gold); color: var(--black); }
.badge-sale { background: #c0392b; color: #fff; }
.badge-sold { background: var(--muted); color: var(--white); }
.product-quick {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,.9);
  padding: 14px;
  text-align: center;
  transform: translateY(100%);
  transition: transform .4s ease;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
}
.product-card:hover .product-quick { transform: translateY(0); }
.product-info { }
.product-category { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.product-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; margin-bottom: 6px; }
.product-price { font-size: .9rem; }
.product-price .price-old { color: var(--muted); text-decoration: line-through; margin-right: 8px; font-size: .8rem; }
.product-price .price-new { color: var(--gold); }
.load-more-wrap { text-align: center; margin-top: 60px; }

/* =========================================
   LOOKBOOK
   ========================================= */
.lookbook { padding: 100px 0; overflow: hidden; }
.lookbook__header { margin-bottom: 48px; }
.lookbook__scroll { overflow-x: auto; cursor: grab; padding-bottom: 24px; }
.lookbook__scroll:active { cursor: grabbing; }
.lookbook__scroll::-webkit-scrollbar { height: 2px; }
.lookbook__scroll::-webkit-scrollbar-track { background: var(--mid); }
.lookbook__scroll::-webkit-scrollbar-thumb { background: var(--gold); }
.lookbook__track {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 0 40px;
  width: max-content;
}

/* ---- Lookbook Item ---- */
.lookbook-item { flex-shrink: 0; width: 300px; }

/* ---- Image Frame — flexible container ---- */
.lookbook-img {
  position: relative;
  width: 300px;
  height: 400px;         /* standard slot height */
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--charcoal);
}
.lookbook-item.tall .lookbook-img {
  height: 520px;         /* tall slot height */
}

/* ---- The actual <img> — always fills the frame ---- */
.lookbook-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* crops to fill — never distorts */
  object-position: center top; /* show top of image — preserves faces */
  display: block;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}

/* object-position overrides via data-focus attribute */
.lookbook-img[data-focus="top"] img    { object-position: center top; }
.lookbook-img[data-focus="bottom"] img { object-position: center bottom; }
.lookbook-img[data-focus="center"] img { object-position: center center; }

/* Subtle zoom on hover */
.lookbook-item:hover .lookbook-img img { transform: scale(1.04); }

/* ---- Hover overlay ---- */
.lb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,.85) 0%,
    rgba(10,10,10,.2)  50%,
    transparent        100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 2;
}
.lookbook-item:hover .lb-overlay { opacity: 1; }
.lb-look-num {
  font-family: var(--font-accent);
  font-size: 3rem;
  line-height: 1;
  color: rgba(255,255,255,.15);
  margin-bottom: auto;
  align-self: flex-end;
}
.lb-shop-link {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
  cursor: pointer;
}

/* ---- Placeholder state (shown when lb-no-image class present) ---- */
/* When you add a real image, remove .lb-no-image from the .lookbook-img div.
   The placeholder disappears and the real image shows automatically. */
.lookbook-img.lb-no-image img {
  display: none;           /* hide broken img tag while placeholder is shown */
}
.lookbook-img.lb-no-image .lb-overlay {
  display: none;           /* hide overlay — nothing to reveal yet */
}
.lb-placeholder-state {
  display: none;           /* hidden by default — only shown in lb-no-image state */
  position: absolute; inset: 0;
  flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 20px;
  border: 1px dashed rgba(201,168,76,.25);
  z-index: 1;
}
.lookbook-img.lb-no-image .lb-placeholder-state {
  display: flex;           /* show placeholder when no image yet */
}
.lb-placeholder-state .placeholder-icon { font-size: 2rem; opacity: .3; margin-bottom: 10px; }
.lb-placeholder-state p  { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.lb-placeholder-state span { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); opacity: .55; }

/* ---- Caption ---- */
.lookbook-caption {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 8px;
}
.lb-num { color: var(--gold); font-weight: 500; }

/* =========================================
   ABOUT / ATELIER
   ========================================= */
.about { padding: 120px 0; background: var(--charcoal); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__img-wrap { position: relative; }
.about__img { aspect-ratio: 3/4; }
.about__stat-card {
  position: absolute; bottom: -32px; right: -32px;
  background: var(--gold); padding: 28px 36px;
}
.stat-number { font-family: var(--font-accent); font-size: 3.5rem; color: var(--black); line-height: 1; }
.stat-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(10,10,10,.7); }
.about__content { }
.about__lead { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; margin: 20px 0 16px; line-height: 1.5; }
.about__body { color: rgba(255,255,255,.65); margin-bottom: 16px; }
.about__values { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.value-item strong { display: block; font-size: .9rem; font-weight: 500; }
.value-item span { font-size: .8rem; color: var(--muted); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.testimonial-card {
  background: var(--charcoal); border: 1px solid var(--border);
  padding: 36px; transition: border-color .4s;
}
.testimonial-card:hover, .testimonial-card.featured { border-color: var(--gold); }
.testimonial-card.featured { background: linear-gradient(135deg, var(--charcoal), #1e1a10); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 300;
  font-style: italic; line-height: 1.6; margin-bottom: 24px; color: rgba(255,255,255,.85);
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: .85rem; }
.testimonial-author span { font-size: .72rem; color: var(--muted); }

/* =========================================
   NEWSLETTER
   ========================================= */
.newsletter {
  padding: 100px 40px;
  background: linear-gradient(135deg, #0f0d08 0%, #1a1408 50%, #0f0d08 100%);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  text-align: center;
}
.newsletter__inner { max-width: 560px; margin: 0 auto; }
.newsletter h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.5rem); font-weight: 300; margin-bottom: 12px; }
.newsletter p { color: var(--muted); margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto 16px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-light);
  border-right: none; color: var(--white); font-size: .9rem;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-success { color: var(--gold); font-size: .85rem; letter-spacing: .1em; }

/* =========================================
   CONTACT
   ========================================= */
.contact { padding: 120px 0; background: var(--charcoal); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-items { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; }
.contact-item strong { display: block; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-item a { color: var(--white); transition: color .3s; font-size: .9rem; }
.contact-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 20px; margin-top: 40px; }
.social-links a {
  width: 44px; height: 44px;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 500; letter-spacing: .05em;
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.form-group { margin-bottom: 16px; }
.form-input {
  width: 100%; padding: 14px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--white); font-size: .9rem;
  transition: border-color .3s;
  appearance: none;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--muted); }
.form-input option { background: var(--charcoal); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { color: var(--gold); font-size: .85rem; margin-top: 12px; letter-spacing: .05em; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: #070707; padding: 80px 0 32px; border-top: 1px solid var(--border); }
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 60px; }
.footer-logo { display: flex; flex-direction: column; gap: 3px; margin-bottom: 16px; }
.footer-logo .nav__logo-wordmark { font-size: 2.4rem; }
.footer-logo .logo-sub { font-size: .62rem; }
.footer__brand p { color: var(--muted); font-size: .85rem; line-height: 1.8; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .82rem; color: var(--muted); transition: color .3s; }
.footer-col a:hover { color: var(--white); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 16px;
}
.footer__bottom p { font-size: .78rem; color: var(--muted); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: .72rem; color: var(--muted); transition: color .3s; }
.footer__legal a:hover { color: var(--white); }
.payment-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.payment-badges span {
  padding: 4px 10px; border: 1px solid var(--border);
  font-size: .65rem; letter-spacing: .08em;
  color: var(--muted); font-weight: 500;
}

/* =========================================
   CART SIDEBAR
   ========================================= */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1200;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 95vw;
  background: var(--charcoal);
  z-index: 1201;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.77,0,.175,1);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.cart-close { color: var(--muted); font-size: 1.2rem; transition: color .3s; }
.cart-close:hover { color: var(--white); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty-icon { font-size: 3rem; color: var(--mid); margin-bottom: 16px; }
.cart-empty p { color: var(--muted); margin-bottom: 24px; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 72px; height: 90px; flex-shrink: 0; background: var(--mid); }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-display); font-size: 1rem; font-weight: 400; margin-bottom: 4px; }
.cart-item-meta { font-size: .72rem; color: var(--muted); margin-bottom: 8px; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-size: .9rem; color: var(--gold); }
.cart-item-remove { font-size: .7rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; transition: color .3s; }
.cart-item-remove:hover { color: #c0392b; }
.cart-footer { padding: 20px 28px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 500; }
.cart-note { font-size: .72rem; color: var(--muted); text-align: center; }

/* =========================================
   PRODUCT MODAL
   ========================================= */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 1300;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  width: 95vw; max-width: 1100px;
  max-height: 90vh;
  background: var(--charcoal);
  z-index: 1301;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity .4s, transform .4s;
}
.product-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  color: var(--muted); font-size: 1.2rem; z-index: 10;
  transition: color .3s;
}
.modal-close:hover { color: var(--white); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.modal-images { background: var(--mid); }
.modal-main-img { height: 500px; }
.modal-thumbs { display: flex; gap: 8px; padding: 12px; }
.modal-thumb { width: 64px; height: 80px; background: var(--charcoal); cursor: pointer; border: 1px solid transparent; transition: border-color .3s; }
.modal-thumb:hover { border-color: var(--gold); }
.modal-info { padding: 48px 40px; display: flex; flex-direction: column; gap: 20px; overflow-y: auto; }
.modal-tag { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.modal-info h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; line-height: 1.1; }
.modal-price { font-size: 1.5rem; color: var(--gold); }
.modal-desc { font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.modal-option label { display: block; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.size-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  font-size: .78rem; color: var(--white);
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.size-btn:hover, .size-btn.active { border-color: var(--gold); color: var(--gold); }
.color-swatches { display: flex; gap: 10px; }
.color-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer; transition: border-color .3s;
}
.color-swatch.active, .color-swatch:hover { border-color: var(--white); }
.modal-qty { }
.modal-qty label { display: block; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.qty-controls { display: flex; align-items: center; gap: 16px; }
.qty-controls button {
  width: 36px; height: 36px; border: 1px solid var(--border);
  color: var(--white); font-size: 1.2rem; transition: var(--transition);
}
.qty-controls button:hover { border-color: var(--gold); color: var(--gold); }
.qty-controls span { font-size: 1rem; min-width: 24px; text-align: center; }
.modal-meta { display: flex; flex-direction: column; gap: 6px; }
.meta-item { font-size: .75rem; color: var(--muted); }

/* =========================================
   CHECKOUT MODAL
   ========================================= */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 1400;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.checkout-overlay.open { opacity: 1; pointer-events: all; }
.checkout-modal {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 1401;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.77,0,.175,1);
}
.checkout-modal.open { transform: translateY(0); }
.checkout-grid { display: grid; grid-template-columns: 1fr 420px; min-height: 100vh; }
.checkout-left { padding: 48px; border-right: 1px solid var(--border); }
.checkout-brand { font-family: var(--font-accent); font-size: 2rem; letter-spacing: .1em; margin-bottom: 40px; }
.checkout-steps { display: flex; gap: 24px; margin-bottom: 48px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.step { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-bottom: 4px; border-bottom: 2px solid transparent; transition: color .3s, border-color .3s; }
.step.active { color: var(--gold); border-bottom-color: var(--gold); }
.checkout-step h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; margin-bottom: 28px; }
.checkout-step.hidden { display: none; }
.shipping-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.shipping-option {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border: 1px solid var(--border); cursor: pointer;
  transition: border-color .3s;
}
.shipping-option:hover { border-color: var(--gold); }
.shipping-option input { accent-color: var(--gold); }
.shipping-option div { flex: 1; }
.shipping-option strong { display: block; font-size: .88rem; }
.shipping-option span { font-size: .75rem; color: var(--muted); }
.ship-price { font-size: .9rem; color: var(--gold); }
.payment-methods { display: flex; gap: 12px; margin-bottom: 24px; }
.pay-method {
  flex: 1; padding: 12px;
  border: 1px solid var(--border); color: var(--muted);
  font-size: .8rem; transition: var(--transition);
}
.pay-method.active, .pay-method:hover { border-color: var(--gold); color: var(--white); }
.card-input-wrap { position: relative; }
.card-type { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: .75rem; color: var(--gold); }
.secure-badge { font-size: .72rem; color: var(--muted); margin-top: 12px; text-align: center; }
.alt-pay-info { text-align: center; padding: 32px; border: 1px solid var(--border); }
.alt-pay-info p { color: var(--muted); margin-bottom: 16px; }
.alt-pay-logo { font-size: 1.4rem; font-weight: 600; color: var(--white); }
.coupon-row { display: flex; gap: 12px; }
.coupon-row input { flex: 1; }
.promo-msg { font-size: .8rem; margin-top: -4px; margin-bottom: 12px; }
.promo-msg.success { color: var(--gold); }
.promo-msg.error { color: #e74c3c; }
.checkout-nav { display: flex; gap: 12px; margin-top: 16px; justify-content: space-between; }
.review-section { background: var(--charcoal); padding: 20px; margin-bottom: 16px; border: 1px solid var(--border); }
.review-section h4 { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.review-section p { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.terms-check { display: flex; gap: 12px; align-items: flex-start; margin: 20px 0; }
.terms-check label { font-size: .82rem; color: var(--muted); }
.terms-check a { color: var(--gold); }
.place-order-btn { margin-top: 8px; }
.checkout-right { padding: 48px 32px; background: var(--charcoal); }
.checkout-right h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; margin-bottom: 24px; }
.checkout-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.checkout-item-img { width: 56px; height: 70px; background: var(--mid); flex-shrink: 0; }
.checkout-item-name { font-size: .88rem; font-weight: 500; margin-bottom: 4px; }
.checkout-item-meta { font-size: .75rem; color: var(--muted); }
.checkout-item-price { font-size: .9rem; color: var(--gold); margin-top: auto; }
.checkout-totals { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.total-row { display: flex; justify-content: space-between; font-size: .85rem; }
.total-row.grand { font-size: 1.1rem; font-weight: 600; padding-top: 16px; border-top: 1px solid var(--border); color: var(--gold); }
.order-success { text-align: center; padding: 60px 20px; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); color: var(--black); font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.order-success h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; margin-bottom: 16px; }
.order-success p { color: rgba(255,255,255,.7); margin-bottom: 8px; }
.order-number { font-size: .85rem; color: var(--gold); letter-spacing: .1em; margin-bottom: 32px !important; }

/* =========================================
   TOAST
   ========================================= */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--gold); color: var(--black);
  padding: 14px 28px; font-size: .85rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  z-index: 2000; transition: transform .4s cubic-bezier(.22,1,.36,1);
  white-space: nowrap; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-right { display: none; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .btn-menu { display: flex; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card.large { grid-column: 1 / -1; grid-row: auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__stat-card { right: 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-main-img { height: 300px; }
  .hero__content { padding: 0 24px 80px; }
  .hero__scroll { display: none; }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .collections-grid { grid-template-columns: 1fr; }
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--border-light); margin-bottom: 8px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .checkout-left { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 4.5rem; }
}
