/* =====================================================================
   BOSS LADY BRAND INC. — Stylesheet
   Empower. Elevate. Execute.
   Palette: deep black, gold, brand pink, cream
   ===================================================================== */

:root {
  --black: #0A0A0A;
  --black-2: #141414;
  --black-3: #1c1c1c;
  --gold: #D4AF37;
  --gold-light: #E6C97A;
  --gold-deep: #A88227;
  --pink: #FFB6C1;
  --pink-2: #F2B6BD;
  --pink-bright: #FF6B9D;
  --cream: #F5EBDC;
  --white: #FFFFFF;
  --gray: #777;
  --gray-light: #B5B5B5;
  --bg: #fafaf7;
  --text: #1a1a1a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 12px 40px rgba(0,0,0,.08);
  --shadow-card: 0 18px 60px rgba(0,0,0,.10);
  --shadow-card-hover: 0 28px 80px rgba(0,0,0,.18);
  --easing: cubic-bezier(.2,.8,.2,1);
  --font-head: "Playfair Display", "Times New Roman", serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* =================== LOADER =================== */
.loader {
  position: fixed; inset: 0; background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .6s var(--easing), visibility .6s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: 110px; height: 110px;
  animation: ld-bob 2s ease-in-out infinite;
}
.loader-logo .ld-crown,
.loader-logo .ld-letter {
  filter: drop-shadow(0 0 18px rgba(212,175,55,.6));
}
.loader-logo .ld-jewel {
  animation: ld-jewel 1.6s ease-in-out infinite;
}
.loader-logo .ld-jewel:nth-child(2) { animation-delay: .2s; }
.loader-logo .ld-jewel:nth-child(3) { animation-delay: .4s; }
@keyframes ld-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes ld-jewel { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .5; } }
.loader-bar {
  margin-top: 30px;
  width: 240px; height: 2px; background: rgba(255,255,255,.1); overflow: hidden;
}
.loader-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), transparent);
  width: 40%;
  animation: ld-bar 1.4s ease-in-out infinite;
}
@keyframes ld-bar { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }
.loader-tag {
  margin-top: 18px; color: var(--gold); letter-spacing: .35em; font-size: 11px; font-weight: 500;
}

/* =================== SCROLL PROGRESS =================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-deep));
  z-index: 9000;
  box-shadow: 0 0 12px var(--gold);
  transition: width .1s linear;
}

/* =================== CUSTOM CURSOR =================== */
.cursor, .cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s var(--easing), width .25s var(--easing), height .25s var(--easing), background .2s;
  mix-blend-mode: difference;
}
.cursor {
  width: 38px; height: 38px; border: 1px solid var(--gold); border-radius: 50%;
}
.cursor-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.cursor.is-hover { width: 70px; height: 70px; background: rgba(212,175,55,.15); border-color: transparent; }
@media (hover: none), (max-width: 900px) { .cursor, .cursor-dot { display: none; } body { cursor: auto; } }
@media (hover: hover) and (min-width: 901px) { body { cursor: none; } a, button, [data-tilt], input, label { cursor: none; } }

/* =================== NAV =================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(10,10,10,0);
  backdrop-filter: blur(0);
  transition: background .35s var(--easing), padding .35s var(--easing), backdrop-filter .35s;
  color: var(--white);
}
.nav.is-scrolled {
  background: rgba(10,10,10,.86);
  backdrop-filter: blur(14px);
  padding: 10px 40px;
  border-bottom: 1px solid rgba(212,175,55,.18);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700;
  letter-spacing: .12em;
  transition: transform .3s var(--easing);
}
.nav-logo:hover { transform: scale(1.04); }
.nav-logo svg { transition: transform .8s var(--easing); }
.nav-logo:hover svg { transform: rotate(8deg) scale(1.1); }
.nav-wordmark { font-size: 14px; line-height: 1; }
.nav-wordmark em { display: block; font-style: italic; font-size: 9px; letter-spacing: .25em; color: var(--gold-light); font-weight: 400; margin-top: 3px; }
.nav-links {
  display: flex; gap: 36px;
  font-size: 12px; letter-spacing: .25em; font-weight: 500;
}
.nav-links a {
  position: relative; padding: 8px 0; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .35s var(--easing);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center; color: inherit;
  border-radius: 50%; transition: background .25s, color .25s, transform .2s;
  position: relative;
}
.icon-btn:hover { background: rgba(212,175,55,.18); color: var(--gold-light); transform: scale(1.08); }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--gold); color: var(--black);
  font-size: 9px; font-weight: 700; width: 16px; height: 16px;
  border-radius: 50%; display: grid; place-items: center;
  opacity: 0; transform: scale(.6); transition: opacity .25s, transform .25s var(--easing);
}
.cart-count.is-active { opacity: 1; transform: scale(1); }
.nav-hamburger {
  display: none; width: 40px; height: 40px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-hamburger span { width: 22px; height: 2px; background: currentColor; transition: transform .35s, opacity .25s; }

/* =================== HERO =================== */
.hero {
  position: relative; min-height: 100vh; padding: 140px 8% 80px;
  background: var(--black); color: var(--white); overflow: hidden;
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 60px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55;
  animation: orb-float 18s ease-in-out infinite;
}
.hero-orb-1 { width: 540px; height: 540px; top: -120px; left: -100px; background: radial-gradient(circle, var(--gold) 0%, transparent 60%); }
.hero-orb-2 { width: 480px; height: 480px; bottom: -160px; right: -120px; background: radial-gradient(circle, var(--pink-bright) 0%, transparent 60%); animation-delay: -6s; }
.hero-orb-3 { width: 380px; height: 380px; top: 40%; left: 45%; background: radial-gradient(circle, var(--pink) 0%, transparent 65%); opacity: .25; animation-delay: -12s; }
@keyframes orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(.95); }
}
.hero-grain {
  position: absolute; inset: 0; opacity: .07; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .35em; color: var(--gold-light);
  text-transform: uppercase; margin-bottom: 28px;
  opacity: 0; animation: fade-up .8s var(--easing) .4s forwards;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); display: inline-block; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .5; } }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(70px, 11vw, 180px);
  line-height: .85; font-weight: 900;
  letter-spacing: -.02em; margin-bottom: 24px;
}
.hero-title .word { display: block; }
.hero-title .word-script {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-left: 30px;
  opacity: 0; animation: fade-up .9s var(--easing) 1.1s forwards;
}
.hero-title .word:first-child span {
  display: inline-block;
  opacity: 0; transform: translateY(70px);
  animation: letter-rise .85s var(--easing) forwards;
}
.hero-title .word:first-child span:nth-child(1) { animation-delay: .5s; }
.hero-title .word:first-child span:nth-child(2) { animation-delay: .6s; }
.hero-title .word:first-child span:nth-child(3) { animation-delay: .7s; }
.hero-title .word:first-child span:nth-child(4) { animation-delay: .8s; }
@keyframes letter-rise { to { opacity: 1; transform: translateY(0); } }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }
.hero-sub {
  font-size: clamp(15px, 1.2vw, 18px); color: var(--gray-light);
  max-width: 480px; margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  animation: fade-up .8s var(--easing) 1.3s forwards;
}
.hero-cta {
  display: flex; gap: 14px; margin-bottom: 56px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fade-up .8s var(--easing) 1.5s forwards;
}
.hero-press {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  font-size: 10px; letter-spacing: .35em; color: var(--gray);
  opacity: 0; animation: fade-up .8s var(--easing) 1.7s forwards;
}
.hero-press > span { color: var(--gold-light); }
.hero-press ul { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.hero-press li { font-weight: 600; color: var(--gray-light); transition: color .25s; }
.hero-press li:hover { color: var(--white); }

.hero-product { position: relative; z-index: 2; justify-self: center; opacity: 0; animation: fade-up 1s var(--easing) 1.4s forwards; }
.hero-product-glow {
  position: absolute; inset: -40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.5), transparent 60%);
  filter: blur(40px); animation: glow-pulse 3.5s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.hero-product-img {
  position: relative;
  max-width: 460px; width: 100%;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.2);
  animation: prod-float 6s ease-in-out infinite;
}
@keyframes prod-float { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(2deg); } }
.hero-badge {
  position: absolute; top: -22px; right: -22px;
  width: 130px; height: 130px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--gold);
  color: var(--black); font-weight: 800; font-size: 11px;
  text-align: center; letter-spacing: .15em; line-height: 1.3;
  animation: badge-spin 14s linear infinite;
}
.hero-badge span { display: block; }
@keyframes badge-spin { to { transform: rotate(360deg); } }

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--gold-light); font-size: 10px; letter-spacing: .4em;
  z-index: 3;
}
.hero-scroll span {
  display: block; width: 1px; height: 12px; background: var(--gold);
  animation: scroll-fall 1.6s ease-in-out infinite;
}
.hero-scroll span:nth-child(2) { animation-delay: .15s; opacity: .65; }
.hero-scroll span:nth-child(3) { animation-delay: .3s; opacity: .35; }
@keyframes scroll-fall {
  0% { transform: translateY(-8px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; font-size: 12px; letter-spacing: .25em; font-weight: 700;
  text-transform: uppercase; border-radius: 999px;
  transition: transform .25s var(--easing), background .25s, color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: var(--black);
  box-shadow: 0 12px 30px rgba(212,175,55,.45);
}
.btn-gold:hover { box-shadow: 0 18px 40px rgba(212,175,55,.6); }
.btn-gold::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4), transparent 70%);
  transform: translateX(-120%); transition: transform .8s var(--easing);
}
.btn-gold:hover::before { transform: translateX(120%); }
.btn-outline {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}
.btn-outline:hover { color: var(--gold-light); box-shadow: inset 0 0 0 1px var(--gold-light); }
.btn-outline-dark {
  background: transparent; color: var(--black);
  box-shadow: inset 0 0 0 1.5px var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--gold-light); }
.btn-gold-sm { padding: 10px 16px; font-size: 11px; background: var(--gold); color: var(--black); border-radius: 999px; font-weight: 700; }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .4; pointer-events: none; }

/* =================== MARQUEE =================== */
.marquee {
  background: var(--black); color: var(--gold); padding: 18px 0;
  overflow: hidden; border-top: 1px solid rgba(212,175,55,.18); border-bottom: 1px solid rgba(212,175,55,.18);
}
.marquee-track {
  display: flex; gap: 36px; align-items: center; white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 56px); font-weight: 700; font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mq-dot { color: var(--gold) !important; -webkit-text-fill-color: var(--gold); font-size: 30px !important; }
@keyframes scroll-left { to { transform: translateX(-50%); } }

/* =================== CATEGORY TILES =================== */
.cats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 60px 40px; background: var(--bg);
}
.cat {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg);
  overflow: hidden; display: block;
  transition: transform .35s var(--easing), box-shadow .35s;
  will-change: transform;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.cat-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--easing);
}
.cat:hover .cat-bg { transform: scale(1.08); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.6) 80%, rgba(0,0,0,.85));
  transition: background .35s;
}
.cat:hover .cat-overlay { background: linear-gradient(to bottom, rgba(212,175,55,.05) 0%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.9)); }
.cat-meta {
  position: absolute; left: 24px; right: 24px; bottom: 22px;
  color: var(--white); display: flex; justify-content: space-between; align-items: flex-end;
}
.cat-meta h3 { font-family: var(--font-head); font-size: 26px; font-weight: 700; }
.cat-meta span { font-size: 11px; letter-spacing: .25em; color: var(--gold-light); transition: transform .3s; }
.cat:hover .cat-meta span { transform: translateX(8px); }

/* =================== SECTION HEAD =================== */
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .35em; color: var(--gold-deep);
  text-transform: uppercase; margin-bottom: 18px; font-weight: 600;
}
.gold-eyebrow { color: var(--gold-light); }
.section-head h2 {
  font-family: var(--font-head); font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05; font-weight: 700; margin-bottom: 18px;
}
.section-head h2 em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head.light h2 { color: var(--white); }
.section-head .lede { color: var(--gray); font-size: 16px; }

/* =================== SHOP / PRODUCT GRID =================== */
.shop { padding: 100px 40px; }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 1280px; margin: 0 auto;
}
.product {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; position: relative; cursor: pointer;
  transition: transform .35s var(--easing), box-shadow .35s;
  transform-style: preserve-3d;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.product-media {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: linear-gradient(135deg, #f5f1ea, #e8e1d1);
}
.product-media-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--easing);
}
.product:hover .product-media-bg { transform: scale(1.07); }
.product-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--black); color: var(--gold-light);
  padding: 6px 10px; border-radius: 999px;
  font-size: 9px; letter-spacing: .25em; font-weight: 700;
  z-index: 2;
}
.product-tag.pink { background: var(--pink-bright); color: var(--white); }
.product-fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: grid; place-items: center;
  transition: transform .25s, background .25s;
  z-index: 2;
}
.product-fav:hover { transform: scale(1.12); background: var(--white); }
.product-fav svg { transition: fill .25s, stroke .25s; }
.product-fav.is-fav svg { fill: var(--pink-bright); stroke: var(--pink-bright); }
.product-quick {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: var(--black); color: var(--white);
  text-align: center; padding: 12px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: .25em; font-weight: 700;
  transform: translateY(120%); opacity: 0;
  transition: transform .4s var(--easing), opacity .4s;
}
.product:hover .product-quick { transform: translateY(0); opacity: 1; }
.product-info { padding: 20px 22px 22px; }
.product-info-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.product-name { font-family: var(--font-head); font-size: 19px; font-weight: 600; line-height: 1.2; }
.product-price { font-weight: 700; color: var(--black); font-size: 16px; white-space: nowrap; }
.product-price s { color: var(--gray); font-weight: 400; font-size: 13px; margin-right: 6px; }
.product-cat { font-size: 11px; letter-spacing: .2em; color: var(--gray); text-transform: uppercase; margin-top: 4px; }
.product-swatches { display: flex; gap: 6px; margin-top: 14px; }
.swatch {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.1); cursor: pointer;
  transition: transform .25s, border .25s;
}
.swatch:hover { transform: scale(1.15); }
.swatch.is-active { border-color: var(--gold); transform: scale(1.15); box-shadow: 0 0 0 2px rgba(212,175,55,.25); }
.swatch.black { background: #0a0a0a; }
.swatch.white { background: #fafafa; }
.swatch.pink { background: var(--pink); }
.swatch.cream { background: var(--cream); }
.swatch.gold { background: var(--gold); }
.swatch.green { background: #1f5444; }
.swatch.emerald { background: #1f5444; }
.swatch.mocha { background: #4a2e1f; }
.swatch.purple { background: #5b2a8e; }
.swatch.unicorn { background: #5b2a8e; }
.swatch.wine { background: #5a1e2b; }
.swatch.gray { background: #888; }
.shop-cta { text-align: center; margin-top: 56px; }

/* =================== STATS =================== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 70px 40px;
  background: var(--black); color: var(--white);
  position: relative; overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,.1), transparent 60%);
  pointer-events: none;
}
.stat {
  text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block; font-family: var(--font-head); font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat-label {
  display: block; margin-top: 14px;
  font-size: 11px; letter-spacing: .3em; color: var(--gray-light);
  text-transform: uppercase;
}

/* =================== STORY =================== */
.story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  padding: 120px 40px; max-width: 1320px; margin: 0 auto;
  align-items: center;
}
.story-img { position: relative; }
.story-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.story-img-frame {
  position: absolute; inset: 30px -30px -30px 30px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg); z-index: -1;
  background: linear-gradient(135deg, transparent 50%, rgba(212,175,55,.08));
}
.story-body h2 { font-family: var(--font-head); font-size: clamp(34px, 4vw, 56px); line-height: 1.1; margin-bottom: 24px; }
.story-body h2 em { font-style: italic; font-weight: 400; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.story-body p { margin-bottom: 16px; color: #444; font-size: 16px; line-height: 1.7; }
.story-points { list-style: none; margin: 28px 0 32px; }
.story-points li { display: flex; gap: 12px; padding: 10px 0; align-items: center; font-size: 15px; color: #333; }
.story-points .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: var(--black); display: grid; place-items: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }

/* =================== COLLECTION =================== */
.collection { padding: 120px 40px; background: var(--black); color: var(--white); }
.collection-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1400px; margin: 0 auto;
}
.coll-item {
  position: relative; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--black-2), var(--black-3));
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(212,175,55,.12);
  transition: transform .35s var(--easing), border-color .35s, box-shadow .35s;
}
.coll-item:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(212,175,55,.18); }
.coll-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: lighten; opacity: .92; transition: transform .8s var(--easing); }
.coll-item:hover img { transform: scale(1.05); }
.coll-item-meta {
  position: absolute; left: 16px; right: 16px; bottom: 14px;
  display: flex; justify-content: space-between; align-items: end;
  font-size: 12px;
}
.coll-item-meta strong { display: block; font-family: var(--font-head); font-size: 18px; color: var(--gold-light); font-weight: 600; }
.coll-item-meta small { font-size: 10px; letter-spacing: .25em; color: var(--gray-light); }
.coll-item-price { color: var(--white); font-weight: 700; }

/* =================== LOOKBOOK =================== */
.lookbook { padding: 120px 40px; background: var(--cream); }
.lookbook-masonry {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  grid-auto-rows: 180px;
  max-width: 1400px; margin: 0 auto;
}
.lb-cell { overflow: hidden; border-radius: var(--radius); position: relative; box-shadow: var(--shadow-soft); }
.lb-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--easing), filter .5s; }
.lb-cell:hover img { transform: scale(1.08); filter: brightness(1.1) saturate(1.1); }
.lb-cell::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.25));
  opacity: 0; transition: opacity .35s;
}
.lb-cell:hover::after { opacity: 1; }
.lb-tall { grid-row: span 2; }
.lb-wide { grid-column: span 2; }

/* =================== DROP / COUNTDOWN =================== */
.drop {
  position: relative; padding: 100px 40px; text-align: center;
  background: var(--black); color: var(--white); overflow: hidden;
}
.drop::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,107,157,.12) 0%, transparent 50%),
              radial-gradient(ellipse at 30% 40%, rgba(212,175,55,.18) 0%, transparent 55%);
}
.drop-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.drop h2 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 64px); margin: 12px 0 36px; line-height: 1.1; }
.drop h2 em { font-style: italic; font-weight: 400; color: var(--gold-light); }
.countdown {
  display: flex; gap: 24px; justify-content: center; margin: 40px 0;
  flex-wrap: wrap;
}
.countdown > div {
  min-width: 110px; padding: 24px 18px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(212,175,55,.25);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.countdown > div::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(212,175,55,.08));
  pointer-events: none;
}
.countdown span {
  display: block; font-family: var(--font-head); font-size: clamp(38px, 5vw, 60px);
  font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.countdown label {
  display: block; margin-top: 8px;
  font-size: 10px; letter-spacing: .3em; color: var(--gray-light);
}
.drop-sub { color: var(--gray-light); margin: 16px 0 30px; font-size: 14px; }

/* =================== TESTIMONIALS =================== */
.testimonials { padding: 100px 0; background: var(--bg); overflow: hidden; }
.testimonials .section-head { padding: 0 40px; }
.t-track {
  display: flex; gap: 22px; padding: 0 40px;
  animation: t-scroll 50s linear infinite;
  width: max-content;
}
.testimonials:hover .t-track { animation-play-state: paused; }
.t-card {
  flex: 0 0 360px; padding: 28px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft);
  position: relative;
}
.t-card::before {
  content: "\201C"; position: absolute; top: 6px; left: 22px;
  font-family: var(--font-head); font-size: 72px; color: var(--gold-light); opacity: .35;
  line-height: 1;
}
.t-stars { color: var(--gold); margin-bottom: 12px; font-size: 14px; letter-spacing: 3px; }
.t-card p { color: #333; line-height: 1.55; margin-bottom: 18px; font-size: 15px; }
.t-user { display: flex; gap: 12px; align-items: center; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: grid; place-items: center; color: var(--black); font-weight: 700;
}
.t-name strong { display: block; font-size: 14px; }
.t-name small { font-size: 11px; color: var(--gray); letter-spacing: .15em; }
@keyframes t-scroll { to { transform: translateX(-50%); } }

/* =================== NEWSLETTER =================== */
.newsletter {
  position: relative; padding: 120px 40px; text-align: center;
  background: var(--black); color: var(--white); overflow: hidden;
}
.news-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,107,157,.2), transparent 55%);
  filter: blur(20px);
}
.news-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.news-inner h2 { font-family: var(--font-head); font-size: clamp(38px, 5vw, 64px); margin: 12px 0 14px; line-height: 1.1; }
.news-inner h2 em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.news-inner > p { color: var(--gray-light); margin-bottom: 30px; font-size: 16px; }
.news-form {
  display: flex; gap: 8px; max-width: 540px; margin: 0 auto;
  background: rgba(255,255,255,.06); border: 1px solid rgba(212,175,55,.3);
  border-radius: 999px; padding: 6px;
  transition: border-color .25s, box-shadow .25s;
}
.news-form:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,.18); }
.news-form input {
  flex: 1; background: transparent; border: 0; outline: none;
  padding: 14px 18px; color: var(--white); font-family: inherit; font-size: 14px;
}
.news-form input::placeholder { color: var(--gray); }
.news-fine { color: var(--gray); font-size: 11px; margin-top: 14px; }

/* =================== FOOTER =================== */
.footer {
  background: #050505; color: var(--gray-light);
  padding: 80px 40px 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr; gap: 48px;
  max-width: 1400px; margin: 0 auto 56px;
}
.foot-brand h3 { font-family: var(--font-head); color: var(--white); font-size: 22px; margin: 14px 0 4px; letter-spacing: .12em; }
.foot-brand h3 span { display: block; font-size: 11px; font-style: italic; color: var(--gold-light); letter-spacing: .25em; font-weight: 400; }
.foot-brand > p { font-size: 11px; letter-spacing: .3em; color: var(--gold-light); margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(212,175,55,.3); color: var(--gold-light);
  transition: background .3s, color .3s, transform .25s;
}
.socials a:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }
.foot-col h4 { font-family: var(--font-head); color: var(--white); margin-bottom: 18px; font-size: 16px; font-weight: 600; }
.foot-col a { display: block; padding: 5px 0; font-size: 13px; color: var(--gray-light); transition: color .2s, padding-left .25s; }
.foot-col a:hover { color: var(--gold-light); padding-left: 6px; }
.foot-news p { font-size: 13px; margin-bottom: 14px; color: var(--gray-light); }
.foot-form { display: flex; background: rgba(255,255,255,.05); border-radius: 999px; padding: 4px; gap: 4px; margin-bottom: 18px; border: 1px solid rgba(212,175,55,.18); }
.foot-form input { flex: 1; background: transparent; border: 0; outline: none; padding: 8px 14px; color: var(--white); font-size: 13px; font-family: inherit; }
.foot-form input::placeholder { color: var(--gray); }
.pay-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-icons span {
  font-size: 9px; padding: 4px 8px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px; color: var(--gray-light); font-weight: 600;
}
.foot-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  font-size: 11px; color: var(--gray); max-width: 1400px; margin: 0 auto;
}
.foot-bottom a { color: var(--gray); transition: color .2s; }
.foot-bottom a:hover { color: var(--gold-light); }
.foot-tag { color: var(--gold-light); letter-spacing: .35em; font-size: 10px; }

/* =================== CART DRAWER =================== */
.cart-drawer {
  position: fixed; top: 0; right: 0; width: 420px; max-width: 92vw; height: 100%;
  background: var(--white); z-index: 9100;
  transform: translateX(100%); transition: transform .5s var(--easing);
  display: flex; flex-direction: column;
  box-shadow: -30px 0 80px rgba(0,0,0,.25);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid #eee; }
.cart-head h3 { font-family: var(--font-head); font-size: 22px; }
.cart-body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray); }
.cart-empty svg { color: var(--gray-light); margin-bottom: 14px; }
.cart-empty p { font-size: 15px; color: #333; font-weight: 600; }
.cart-empty-sub { font-size: 13px; color: var(--gray); font-weight: 400 !important; margin-bottom: 20px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
.cart-item-img { width: 70px; height: 70px; border-radius: 8px; background: #f5f5f5; flex-shrink: 0; overflow: hidden; }
.cart-item-img img, .cart-item-img > div { width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-info strong { font-family: var(--font-head); font-size: 15px; }
.cart-item-info small { font-size: 11px; color: var(--gray); }
.cart-item-bot { display: flex; justify-content: space-between; align-items: center; }
.cart-qty { display: flex; align-items: center; gap: 8px; border: 1px solid #eee; border-radius: 999px; padding: 2px 8px; }
.cart-qty button { padding: 2px 6px; font-size: 14px; color: #333; }
.cart-item-price { font-weight: 700; font-size: 14px; }
.cart-item-remove { color: var(--gray); font-size: 11px; margin-top: 6px; text-decoration: underline; }
.cart-foot { padding: 22px 24px; border-top: 1px solid #eee; background: var(--bg); }
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 14px; font-size: 16px; }
.cart-fine { font-size: 11px; color: var(--gray); text-align: center; margin-top: 12px; }
.cart-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
  z-index: 9000;
}
.cart-backdrop.is-open { opacity: 1; visibility: visible; }

/* =================== FLOATING CTA =================== */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 700;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--black);
  padding: 14px 22px; border-radius: 999px;
  font-size: 11px; letter-spacing: .25em; font-weight: 700;
  box-shadow: 0 14px 40px rgba(212,175,55,.45);
  transform: translateY(80px) scale(.85); opacity: 0;
  transition: transform .5s var(--easing), opacity .4s, box-shadow .25s;
}
.float-cta.is-visible { transform: translateY(0) scale(1); opacity: 1; }
.float-cta:hover { box-shadow: 0 18px 50px rgba(212,175,55,.65); transform: translateY(-4px) scale(1.04); }

/* =================== TOAST =================== */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--black); color: var(--gold-light);
  padding: 14px 24px; border-radius: 999px;
  border: 1px solid var(--gold);
  font-size: 13px; letter-spacing: .1em; font-weight: 500;
  opacity: 0; transition: opacity .35s, transform .35s var(--easing);
  z-index: 9500; pointer-events: none;
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =================== REVEAL ANIMATION =================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--easing), transform .9s var(--easing); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =================== CONFETTI =================== */
.confetti {
  position: fixed; top: 50%; left: 50%; width: 8px; height: 14px;
  pointer-events: none; z-index: 9700;
  animation: confetti-fly 1.2s ease-out forwards;
}
@keyframes confetti-fly {
  0% { transform: translate(-50%, -50%) rotate(0); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) rotate(var(--tr)); opacity: 0; }
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
  .nav { padding: 16px 24px; }
  .nav.is-scrolled { padding: 8px 24px; }
  .nav-links { gap: 22px; font-size: 11px; }
  .hero { padding: 130px 6% 80px; grid-template-columns: 1.2fr .8fr; gap: 40px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot-col:nth-child(4) { display: none; }
  .foot-news { grid-column: 1 / -1; }
  .lookbook-masonry { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 130px 24px 80px; text-align: center; min-height: auto; }
  .hero-content { text-align: center; }
  .hero-press { justify-content: center; }
  .hero-press ul { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-product { order: -1; max-width: 320px; margin: 0 auto 30px; }
  .hero-product-img { max-width: 320px; }
  .hero-badge { width: 100px; height: 100px; font-size: 9px; top: -10px; right: -10px; }
  .cats { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; }
  .shop, .story, .collection, .lookbook, .drop, .newsletter, .testimonials { padding-left: 20px; padding-right: 20px; }
  .shop, .story, .collection, .lookbook, .drop, .newsletter, .testimonials { padding-top: 70px; padding-bottom: 70px; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .story-img-frame { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .lb-wide { grid-column: span 2; }
  .stats { grid-template-columns: 1fr 1fr; padding: 50px 20px; gap: 30px 0; }
  .stat { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand, .foot-news { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .countdown > div { min-width: 80px; padding: 18px 12px; }
  .float-cta { padding: 12px 18px; font-size: 10px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 70px; }
  .hero-title .word-script { margin-left: 12px; }
  .section-head h2 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   MULTI-PAGE ADDITIONS
   ===================================================================== */

/* Active nav link */
.nav-links a.is-active { color: var(--gold-light); }
.nav-links a.is-active::after { width: 100%; background: var(--gold); }

/* Mobile nav drawer */
.nav-links.is-open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(10,10,10,.98); padding: 24px;
  gap: 18px; border-top: 1px solid rgba(212,175,55,.18);
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* For pages where nav should always be solid (not just on scroll) */
body[data-page]:not([data-page="home"]) .nav { background: rgba(10,10,10,.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(212,175,55,.15); }

/* Page hero (shared by shop/about/lookbook/contact) */
.page-hero {
  background: var(--black); color: var(--white);
  padding: 160px 40px 80px;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212,175,55,.18), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(255,107,157,.15), transparent 55%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(48px, 7vw, 96px);
  line-height: 1; margin: 14px 0 16px; font-weight: 700;
}
.page-hero h1 em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p.lede { color: var(--gray-light); font-size: 17px; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex; gap: 10px; font-size: 11px; letter-spacing: .3em;
  color: var(--gold-light); margin-bottom: 22px;
}
.breadcrumb a { color: var(--gray-light); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold); }

/* ============= SHOP PAGE ============= */
.shop-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 50px; max-width: 1400px; margin: 0 auto;
  padding: 70px 40px 100px;
}
.shop-sidebar {
  position: sticky; top: 100px; align-self: start;
  font-size: 14px;
}
.shop-sidebar h3 {
  font-family: var(--font-head); font-size: 13px; letter-spacing: .3em;
  text-transform: uppercase; margin-bottom: 16px; color: var(--gray);
}
.shop-filters { list-style: none; margin-bottom: 36px; }
.shop-filters li { padding: 8px 0; }
.shop-filters a {
  display: block; padding: 8px 14px; border-radius: 8px;
  transition: background .25s, color .25s, padding-left .25s;
  font-weight: 500; font-size: 14px;
}
.shop-filters a:hover, .shop-filters a.is-active {
  background: var(--black); color: var(--gold-light);
  padding-left: 18px;
}
.shop-filters a.is-active::before {
  content: "›"; margin-right: 8px; color: var(--gold);
}
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 30px; flex-wrap: wrap; gap: 14px;
}
.shop-toolbar .count { font-size: 13px; color: var(--gray); }
.shop-toolbar select {
  border: 1px solid #ddd; padding: 10px 14px; border-radius: 8px;
  font-family: inherit; font-size: 13px; background: var(--white);
  cursor: pointer;
}
.shop-products {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.shop-products .product { transition: transform .35s var(--easing), box-shadow .35s; }

/* ============= PRODUCT DETAIL PAGE ============= */
.pd {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 70px; max-width: 1300px; margin: 0 auto;
  padding: 130px 40px 60px;
}
.pd-gallery { position: sticky; top: 110px; align-self: start; }
.pd-main-img {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-card);
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--easing); }
.pd-main-img:hover img { transform: scale(1.04); }
.pd-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.pd-thumb {
  flex: 0 0 80px; aspect-ratio: 1;
  border-radius: 10px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  transition: border .25s;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.is-active { border-color: var(--gold); }

.pd-info { padding-top: 10px; }
.pd-cat { font-size: 11px; letter-spacing: .3em; color: var(--gold-deep); text-transform: uppercase; margin-bottom: 12px; font-weight: 600; }
.pd-name { font-family: var(--font-head); font-size: clamp(34px, 4vw, 48px); line-height: 1.05; margin-bottom: 14px; font-weight: 700; }
.pd-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.pd-rating .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.pd-rating small { color: var(--gray); font-size: 13px; }
.pd-price { font-size: 28px; font-weight: 700; margin-bottom: 20px; }
.pd-price s { color: var(--gray); font-weight: 400; font-size: 18px; margin-right: 10px; }
.pd-price .save { font-size: 12px; color: var(--pink-bright); margin-left: 12px; letter-spacing: .15em; font-weight: 600; }
.pd-desc { color: #444; font-size: 15px; line-height: 1.7; margin-bottom: 24px; }

.pd-option { margin-bottom: 24px; }
.pd-option-head { display: flex; justify-content: space-between; margin-bottom: 10px; }
.pd-option-head strong { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; }
.pd-option-head a { font-size: 12px; color: var(--gray); text-decoration: underline; }
.pd-sizes, .pd-colors { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-size {
  min-width: 52px; height: 44px; padding: 0 14px;
  border-radius: 10px; border: 1.5px solid #ddd;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: border .2s, background .2s, color .2s;
}
.pd-size:hover { border-color: var(--black); }
.pd-size.is-active { background: var(--black); color: var(--white); border-color: var(--black); }
.pd-color {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #ddd; cursor: pointer;
  transition: transform .2s, border .2s;
}
.pd-color:hover { transform: scale(1.08); }
.pd-color.is-active { border-color: var(--gold); transform: scale(1.08); box-shadow: 0 0 0 3px rgba(212,175,55,.2); }
.pd-color.emerald { background: #1f5444; }
.pd-color.black { background: #0a0a0a; }
.pd-color.white { background: #fafafa; }
.pd-color.pink { background: var(--pink); }
.pd-color.cream { background: var(--cream); }
.pd-color.gold { background: var(--gold); }
.pd-color.gray { background: #888; }
.pd-color.wine { background: #5a1e2b; }
.pd-color.mocha { background: #4a2e1f; }
.pd-color.purple { background: #5b2a8e; }
.pd-color.unicorn { background: #5b2a8e; }
.pd-color.green { background: #1f5444; }

/* Graceful image fallback (when ADD TO PRODUCTS hasn't been synced for a product yet) */
.product-media-bg, .pd-main-img, .cart-row-img {
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(212,175,55,.06) 18px 19px),
    radial-gradient(ellipse at 50% 40%, rgba(212,175,55,.18) 0%, transparent 60%);
}
img.bl-missing {
  opacity: 0; visibility: hidden;
}
.bl-photo-pending::after {
  content: "PHOTO COMING SOON";
  position: absolute; inset: auto 0 50% 0;
  text-align: center; font-size: 10px; letter-spacing: .3em;
  color: var(--gold-deep); font-weight: 700;
  pointer-events: none;
}

.pd-qty {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid #ddd; border-radius: 999px;
  padding: 4px 14px;
  margin-right: 14px;
  font-weight: 600; font-size: 16px;
}
.pd-qty button { padding: 8px 4px; font-size: 16px; color: #333; }
.pd-qty span { min-width: 28px; text-align: center; }

.pd-cta-row { display: flex; gap: 12px; align-items: center; margin: 30px 0; flex-wrap: wrap; }
.pd-add { flex: 1; min-width: 240px; }
.pd-fav-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg); display: grid; place-items: center;
  border: 1.5px solid #ddd; transition: all .25s;
}
.pd-fav-btn:hover { border-color: var(--pink-bright); transform: scale(1.05); }
.pd-fav-btn.is-fav svg { fill: var(--pink-bright); stroke: var(--pink-bright); }

.pd-perks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 24px 0;
}
.pd-perk {
  display: flex; gap: 10px; padding: 12px 14px;
  background: var(--bg); border-radius: 10px;
  font-size: 12px; color: #444; align-items: center;
}
.pd-perk svg { color: var(--gold-deep); flex-shrink: 0; }
.pd-perk strong { display: block; font-size: 12px; }
.pd-perk small { color: var(--gray); font-size: 11px; }

.pd-details {
  border-top: 1px solid #eee; padding-top: 24px;
}
.pd-details details {
  border-bottom: 1px solid #eee; padding: 12px 0;
}
.pd-details summary { font-weight: 600; cursor: pointer; padding: 8px 0; font-size: 14px; list-style: none; display: flex; justify-content: space-between; }
.pd-details summary::after { content: "+"; font-size: 18px; color: var(--gray); }
.pd-details details[open] summary::after { content: "−"; }
.pd-details details > div { padding: 10px 0; color: #555; font-size: 14px; line-height: 1.7; }

.related {
  padding: 80px 40px;
  background: var(--bg);
}
.related h2 { text-align: center; font-family: var(--font-head); font-size: 36px; margin-bottom: 30px; }
.related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1300px; margin: 0 auto;
}

/* ============= CART PAGE ============= */
.cart-page {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  max-width: 1200px; margin: 0 auto;
  padding: 130px 40px 100px;
}
.cart-list { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-soft); }
.cart-list h2 { font-family: var(--font-head); font-size: 28px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #eee; }
.cart-row {
  display: grid; grid-template-columns: 110px 1fr auto auto;
  gap: 18px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid #f0f0f0;
}
.cart-row:last-child { border-bottom: none; }
.cart-row-img {
  width: 110px; aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  background: var(--cream);
}
.cart-row-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-info h4 { font-family: var(--font-head); font-size: 18px; margin-bottom: 4px; }
.cart-row-info small { color: var(--gray); font-size: 12px; }
.cart-row-info .vt { font-size: 12px; color: #555; margin-top: 6px; }
.cart-row-info a.rm { font-size: 11px; color: var(--gray); text-decoration: underline; margin-top: 8px; display: inline-block; }
.cart-row .pd-qty { padding: 2px 10px; font-size: 14px; }
.cart-row-price { font-weight: 700; font-size: 16px; text-align: right; }

.cart-empty-page {
  text-align: center; padding: 80px 30px;
}
.cart-empty-page svg { color: var(--gray-light); margin-bottom: 20px; }
.cart-empty-page h3 { font-family: var(--font-head); font-size: 28px; margin-bottom: 10px; }
.cart-empty-page p { color: var(--gray); margin-bottom: 24px; }

.cart-summary {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-soft); position: sticky; top: 110px;
  align-self: start;
}
.cart-summary h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 18px; }
.cart-summary .line {
  display: flex; justify-content: space-between;
  padding: 10px 0; font-size: 14px; color: #555;
}
.cart-summary .line.total { font-size: 18px; font-weight: 700; color: var(--black); padding-top: 16px; border-top: 1px solid #eee; margin-top: 8px; }
.cart-promo {
  display: flex; gap: 6px; margin: 16px 0;
}
.cart-promo input { flex: 1; padding: 10px 14px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; font-size: 13px; }
.cart-promo button { padding: 10px 16px; background: var(--black); color: var(--white); border-radius: 8px; font-size: 12px; letter-spacing: .15em; font-weight: 600; }
.cart-checkout-btn { width: 100%; margin-top: 14px; justify-content: center; }
.cart-trust {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 18px; flex-wrap: wrap;
}
.cart-trust span {
  font-size: 9px; padding: 4px 8px; border: 1px solid #ddd;
  border-radius: 4px; color: var(--gray); font-weight: 600;
}

/* ============= ABOUT PAGE ============= */
.about-section {
  max-width: 900px; margin: 0 auto;
  padding: 80px 40px;
}
.about-section h2 {
  font-family: var(--font-head); font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 24px; line-height: 1.1;
}
.about-section h2 em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-section p { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 18px; }
.about-section blockquote {
  font-family: var(--font-head); font-style: italic;
  font-size: 24px; line-height: 1.4; color: var(--black);
  border-left: 3px solid var(--gold); padding: 14px 0 14px 26px;
  margin: 30px 0;
}
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 50px 0;
}
.about-value {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-soft);
  text-align: center;
}
.about-value .v-num {
  font-family: var(--font-head); font-size: 32px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.about-value h4 { font-family: var(--font-head); font-size: 20px; margin-bottom: 8px; }
.about-value p { font-size: 14px; color: var(--gray); }

/* ============= LOOKBOOK PAGE ============= */
.lookbook-page {
  padding: 70px 40px 100px;
  background: var(--cream);
}

/* ============= CONTACT PAGE ============= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  max-width: 1100px; margin: 0 auto;
  padding: 70px 40px 100px;
}
.contact-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-soft);
}
.contact-form label {
  display: block; font-size: 12px; letter-spacing: .2em;
  color: var(--gray); margin: 16px 0 6px; text-transform: uppercase;
  font-weight: 600;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 16px;
  border: 1px solid #ddd; border-radius: 8px;
  font-family: inherit; font-size: 14px;
  transition: border .25s, box-shadow .25s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-info ul {
  list-style: none; padding: 0;
}
.contact-info li {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid #eee; font-size: 14px;
}
.contact-info li svg { color: var(--gold-deep); flex-shrink: 0; }
.contact-info strong { display: block; font-size: 16px; margin-bottom: 4px; font-family: var(--font-head); }
.faq-section { max-width: 800px; margin: 0 auto; padding: 60px 40px 100px; }
.faq-section h2 { font-family: var(--font-head); font-size: 36px; text-align: center; margin-bottom: 30px; }
.faq-section details {
  background: var(--white); border-radius: var(--radius); padding: 18px 22px;
  margin-bottom: 10px; box-shadow: var(--shadow-soft);
}
.faq-section summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.faq-section summary::after { content: "+"; font-size: 22px; color: var(--gold); }
.faq-section details[open] summary::after { content: "−"; }
.faq-section details > div { padding-top: 14px; color: #555; line-height: 1.7; font-size: 14px; }

/* ============= 404 ============= */
.page-404 {
  min-height: 100vh; display: grid; place-items: center;
  background: var(--black); color: var(--white); text-align: center;
  padding: 80px 40px;
}
.page-404 h1 {
  font-family: var(--font-head); font-size: clamp(80px, 16vw, 200px);
  line-height: 1; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-404 h2 { font-family: var(--font-head); font-size: 28px; margin-bottom: 14px; }
.page-404 p { color: var(--gray-light); margin-bottom: 30px; max-width: 500px; }

/* ============= RESPONSIVE ADDITIONS ============= */
@media (max-width: 1100px) {
  .shop-layout { grid-template-columns: 200px 1fr; gap: 30px; padding: 50px 24px 70px; }
  .shop-products { grid-template-columns: repeat(2, 1fr); }
  .pd { grid-template-columns: 1fr 1fr; gap: 40px; padding: 110px 24px 50px; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .cart-page { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-grid { gap: 40px; }
}
@media (max-width: 800px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .shop-filters { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
  .shop-filters li { flex-shrink: 0; }
  .shop-products { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pd { grid-template-columns: 1fr; padding: 100px 16px 50px; }
  .pd-gallery { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cart-page { padding: 100px 16px 60px; gap: 24px; }
  .cart-row { grid-template-columns: 80px 1fr; gap: 12px; }
  .cart-row > .pd-qty, .cart-row > .cart-row-price { grid-column: 2; }
  .cart-row-img { width: 80px; }
  .contact-grid { grid-template-columns: 1fr; padding: 50px 20px 70px; }
  .about-values { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 20px 60px; }
}

  .section-head h2 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
