/* ===========================
   LUMÉ EYEWEAR — STYLES
   =========================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #080808;
  --dark-1:     #0e0e0e;
  --dark-2:     #161616;
  --dark-3:     #1d1d1d;
  --border:     #2a2a2a;
  --text:       #ede8e0;
  --text-muted: #78726a;
  --text-dim:   #4a4540;
  --gold:       #c8a84b;
  --gold-hover: #dfbe6a;
  --gold-dim:   rgba(200, 168, 75, 0.12);
  --gold-border:rgba(200, 168, 75, 0.25);
  --radius:     4px;
  --radius-lg:  10px;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.18s ease;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.popup-open { overflow: hidden; }
body.cart-open  { overflow: hidden; }
body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
.font-serif { font-family: 'Playfair Display', Georgia, serif; }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.1; }
h1 { font-size: clamp(3rem, 8vw, 8rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === LAYOUT === */
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 7rem 0; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .eyebrow { margin-bottom: 1rem; display: block; }
.section-header h2 { color: var(--text); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition-fast);
  cursor: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid var(--gold-border);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold-dim); }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }

.btn-dark {
  background: var(--dark-3);
  color: var(--text);
}
.btn-dark:hover { background: var(--border); }

.btn-full { width: 100%; }

/* === CUSTOM CURSOR === */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.1s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,168,75,0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, opacity 0.25s, border-color 0.25s;
}
.cursor-ring.hovered {
  width: 54px; height: 54px;
  border-color: var(--gold);
  background: rgba(200,168,75,0.06);
}
.cursor-ring.clicked { transform: translate(-50%,-50%) scale(0.85); }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 1.8rem 0;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 1rem 0;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  cursor: none;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1.2rem; }

.nav-icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}
.nav-icon-btn:hover { color: var(--text); background: var(--dark-3); }
.nav-icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.cart-badge {
  position: absolute; top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: var(--gold); color: var(--black);
  border-radius: 50%; font-size: 0.55rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}
.cart-badge.visible { opacity: 1; transform: scale(1); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  width: 38px; height: 38px; justify-content: center;
}
.nav-hamburger span {
  display: block; height: 1.5px; background: var(--text);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.nav-hamburger span:nth-child(2) { width: 70%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === MOBILE NAV === */
.mobile-nav {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 800;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
  opacity: 0; pointer-events: none; transform: translateY(-20px);
  transition: opacity 0.4s, transform 0.4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; transform: none; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

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

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 60%, rgba(200,168,75,0.06) 0%, transparent 70%);
  will-change: transform;
}

.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  padding-top: 8rem;
}

.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeSlideUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}

.hero-title {
  margin-top: 1.2rem;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  opacity: 0; transform: translateY(60px);
  animation: wordUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 0.35s; }
.hero-title .word:nth-child(2) { animation-delay: 0.48s; margin: 0 0.25em; }
.hero-title .word:nth-child(3) { animation-delay: 0.61s; }
.hero-title .word.italic { font-style: italic; animation-delay: 0.74s; color: var(--gold); }

.hero-line-2 { margin-top: -0.15em; }

.hero-sub {
  margin-top: 2rem;
  font-size: 1.05rem; color: var(--text-muted); max-width: 440px;
  opacity: 0; animation: fadeSlideUp 0.8s 0.9s forwards;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeSlideUp 0.8s 1.05s forwards;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim);
  opacity: 0; animation: fadeIn 1s 1.6s forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s 1.6s infinite;
}

.hero-deco {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 340px; height: 340px; opacity: 0.035;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: fadeIn 1.5s 1s forwards;
}
.hero-deco::before {
  content: '';
  position: absolute; inset: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.hero-deco::after {
  content: '';
  position: absolute; inset: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

/* === MARQUEE === */
.marquee-strip {
  background: var(--gold);
  overflow: hidden; white-space: nowrap; padding: 0.75rem 0;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black);
  padding: 0 2.5rem;
}
.marquee-track .sep { opacity: 0.4; padding: 0; }

/* === SHOP SECTION === */
.shop-section { padding: 7rem 0; }

.filters {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  cursor: none;
}
.filter-btn:hover { border-color: var(--text-muted); color: var(--text); }
.filter-btn.active {
  background: var(--gold); border-color: var(--gold); color: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* === PRODUCT CARD === */
.product-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: none;
  transition: border-color var(--transition-fast), transform 0.3s;
  opacity: 0; transform: translateY(30px);
}
.product-card.visible { opacity: 1; transform: none; transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--transition-fast); }
.product-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }

.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--dark-3);
}

.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
}
.placeholder-icon { font-size: 2.5rem; opacity: 0.15; }
.placeholder-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); }

.product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.product-card:hover .product-img { transform: scale(1.08); }

.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 100px;
  background: var(--gold); color: var(--black);
}
.product-badge.dupe { background: var(--dark-3); color: var(--text-muted); border: 1px solid var(--border); }

.product-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-quick-view {
  padding: 0.7rem 1.8rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--text); color: var(--black);
  border-radius: var(--radius);
  transform: translateY(8px);
  transition: background 0.2s, transform 0.3s;
  cursor: none;
}
.product-card:hover .btn-quick-view { transform: none; }
.btn-quick-view:hover { background: var(--gold); }

.product-info { padding: 1.2rem 1.3rem 1.4rem; }
.product-category {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem;
  color: var(--text);
}
.product-pricing {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price { font-size: 1rem; font-weight: 600; color: var(--text); }
.product-compare {
  font-size: 0.78rem; color: var(--text-dim); text-decoration: line-through;
}
.btn-add-card {
  margin-top: 1rem; width: 100%;
  padding: 0.65rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--dark-3); color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  cursor: none;
}
.btn-add-card:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* === FEATURE STRIP === */
.feature-strip {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; text-align: center;
}
.feature-item { padding: 1rem; }
.feature-icon {
  width: 48px; height: 48px; margin: 0 auto 1rem;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-title {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.4rem;
}
.feature-text { font-size: 0.85rem; color: var(--text-muted); }

/* === ABOUT SECTION === */
.about-section { padding: 7rem 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-visual {
  position: relative; aspect-ratio: 3/4;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--dark-2); border: 1px solid var(--border);
}
.about-visual-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
}
.about-big-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700; font-style: italic;
  color: var(--dark-3); line-height: 1;
  user-select: none;
}
.about-accent-line {
  width: 60px; height: 1px; background: var(--gold);
}
.about-visual-label {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
}

.about-eyebrow { margin-bottom: 1rem; }
.about-title { margin-bottom: 1.5rem; }
.about-body { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.about-body + .about-body { margin-bottom: 2rem; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
}
.stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* === TESTIMONIALS === */
.testimonials-section { padding: 5rem 0; background: var(--dark-1); }
.testimonials-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }

/* === FOOTER === */
.footer {
  background: var(--dark-1);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; letter-spacing: 0.12em;
  margin-bottom: 1rem; color: var(--text);
}
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.8rem; }
.footer-social {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.75rem;
  transition: all var(--transition-fast);
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }

.footer-heading {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color var(--transition-fast); }
.footer-bottom a:hover { color: var(--gold); }

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

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

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.cart-count-label { font-size: 0.72rem; color: var(--text-muted); }
.cart-close-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--text-muted);
  transition: all var(--transition-fast); cursor: none;
  font-size: 1.4rem; line-height: 1;
}
.cart-close-btn:hover { background: var(--dark-3); color: var(--text); }

.cart-items-list { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-items-list::-webkit-scrollbar { width: 4px; }
.cart-items-list::-webkit-scrollbar-track { background: transparent; }
.cart-items-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.cart-empty {
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  color: var(--text-dim); text-align: center; padding: 2rem;
}
.cart-empty svg { width: 48px; height: 48px; stroke: var(--border); fill: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }
.cart-empty p { font-size: 0.85rem; }

.cart-item {
  display: flex; gap: 1rem; padding: 1rem;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 70px; height: 70px; flex-shrink: 0;
  border-radius: var(--radius); background: var(--dark-3);
  border: 1px solid var(--border);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-color { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.cart-item-price { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; }
.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-muted);
  transition: all var(--transition-fast); cursor: none;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-value { font-size: 0.85rem; min-width: 20px; text-align: center; }
.cart-item-remove {
  font-size: 0.7rem; color: var(--text-dim); cursor: none;
  transition: color var(--transition-fast);
  background: none; border: none; padding: 0 0.2rem;
  text-decoration: underline;
}
.cart-item-remove:hover { color: #e05555; }

.cart-drawer-footer {
  padding: 1.5rem 1.8rem;
  border-top: 1px solid var(--border);
}
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.cart-subtotal-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.cart-subtotal-amount { font-size: 1.1rem; font-weight: 600; }
.cart-shipping-note { font-size: 0.72rem; color: var(--text-dim); margin-bottom: 1.2rem; }
.btn-checkout { margin-top: 0.8rem; }

/* === PRODUCT MODAL === */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.product-modal {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 900px; width: 100%; max-height: 90vh;
  overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  transform: scale(0.96) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.open .product-modal { transform: none; }
.product-modal::-webkit-scrollbar { width: 4px; }
.product-modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.modal-gallery { position: relative; background: var(--dark-3); }
.modal-main-img {
  aspect-ratio: 1; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  border-bottom: 1px solid var(--border);
}
.modal-main-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-thumbs {
  display: flex; gap: 0.5rem; padding: 0.8rem;
  overflow-x: auto;
}
.modal-thumb {
  width: 56px; height: 56px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--dark-2); cursor: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: border-color var(--transition-fast);
}
.modal-thumb.active { border-color: var(--gold); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

.modal-info { padding: 2.5rem; display: flex; flex-direction: column; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--dark-2); color: var(--text-muted);
  font-size: 1.2rem; cursor: none;
  transition: all var(--transition-fast); z-index: 2;
}
.modal-close:hover { background: var(--border); color: var(--text); }

.modal-category { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.modal-name { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 600; margin-bottom: 0.5rem; }
.modal-dupe-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: 100px; font-size: 0.62rem; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 1rem;
}
.modal-price { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.3rem; }
.modal-compare { font-size: 0.82rem; color: var(--text-dim); text-decoration: line-through; margin-bottom: 1.2rem; }
.modal-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }

.modal-option-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); margin-bottom: 0.6rem; display: flex; justify-content: space-between; }
.color-options { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.color-option {
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  border: 1px solid var(--border);
  border-radius: 100px; color: var(--text-muted);
  transition: all var(--transition-fast); cursor: none;
}
.color-option.active { border-color: var(--gold); color: var(--gold); }
.color-option:hover { border-color: var(--text-muted); color: var(--text); }

.modal-cta { display: flex; gap: 0.8rem; margin-top: auto; }
.modal-cta .btn { flex: 1; }

.modal-guarantee {
  margin-top: 1rem;
  font-size: 0.68rem; color: var(--text-dim);
  display: flex; align-items: center; gap: 0.5rem;
}

/* === EMAIL POPUP === */
.popup-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }

.popup-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 480px; width: 100%;
  padding: 3rem 2.5rem;
  position: relative; text-align: center;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.popup-overlay.open .popup-card { transform: none; }

.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 1.5rem; color: var(--text-dim);
  transition: color var(--transition-fast); cursor: none;
}
.popup-close:hover { color: var(--text); }

.popup-eyebrow { margin-bottom: 0.8rem; display: block; }
.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--text); line-height: 1.15; margin-bottom: 0.8rem;
}
.popup-title em { font-style: italic; color: var(--gold); }
.popup-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2rem; }

.popup-form { display: flex; flex-direction: column; gap: 0.8rem; }
.popup-input {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.9rem 1.2rem;
  color: var(--text); font-size: 0.9rem; outline: none;
  transition: border-color var(--transition-fast);
}
.popup-input:focus { border-color: var(--gold); }
.popup-input::placeholder { color: var(--text-dim); }

.popup-note { font-size: 0.7rem; color: var(--text-dim); margin-top: 0.8rem; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === TOAST === */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px);
  z-index: 1300;
  background: var(--dark-3); border: 1px solid var(--gold-border);
  padding: 0.8rem 1.6rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.5rem;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* === ANIMATIONS === */
@keyframes wordUp {
  to { opacity: 1; transform: none; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .testimonials-track { grid-template-columns: 1fr 1fr; }
  .hero-deco { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-content { padding-top: 6rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .product-modal { grid-template-columns: 1fr; }
  .modal-gallery { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.2rem; }
  .section-pad { padding: 5rem 0; }
  .modal-info { padding: 1.5rem; }
  .modal-cta { flex-direction: column; }
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}
