/* ============================================
   by simonna . — DARK LUXURY GLOW THEME
   High-impact, animated, selling design
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --white: #ffffff;
  --off-white: #f0ebe3;
  --text: #d0d0d0;
  --text-muted: #777777;
  --rose: #C4909E;
  --rose-light: #d4a5b0;
  --rose-dark: #9e6b77;
  --rose-glow: rgba(196,144,158,0.35);
  --rose-pale: #f5e0e5;
  --gold: #C9A96E;
  --gold-light: #ddbf8a;
  --gold-glow: rgba(201,169,110,0.25);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', Helvetica, Arial, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; cursor: none; }
img { max-width: 100%; display: block; }
button { cursor: none; }

/* ========================================
   SCROLL PROGRESS
   ======================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 100001;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--rose));
  width: 0%; transition: width 0.08s linear;
  box-shadow: 0 0 20px var(--rose-glow), 0 0 60px rgba(196,144,158,0.15);
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--rose);
  border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transition: transform 0.15s ease, background 0.3s ease;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--rose-glow);
}

.cursor-ring {
  position: fixed; width: 42px; height: 42px;
  border: 1.5px solid rgba(196,144,158,0.5);
  border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo),
              border-color 0.3s ease, transform 0.08s linear;
  transform: translate(-50%, -50%);
}

.cursor-dot.hovering {
  transform: translate(-50%, -50%) scale(3);
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}
.cursor-ring.hovering {
  width: 64px; height: 64px;
  border-color: var(--gold);
}

/* ========================================
   PAGE LOADER
   ======================================== */
.page-loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 100000;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 1s ease, visibility 1s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  font-family: var(--font-display); font-size: 3.5rem; font-style: italic; font-weight: 400;
  color: var(--white); opacity: 0;
  animation: loaderFadeIn 1s ease 0.3s forwards;
  text-shadow: 0 0 40px var(--rose-glow);
}

.loader-line {
  width: 100px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  margin-top: 24px;
  transform: scaleX(0); animation: loaderLine 1.5s ease 0.6s forwards;
}

.loader-glow {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, var(--rose-glow) 0%, transparent 70%);
  opacity: 0; animation: loaderGlow 2s ease 0.2s forwards;
  filter: blur(60px);
}

@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderLine { to { transform: scaleX(1); } }
@keyframes loaderGlow { 0% { opacity: 0; transform: scale(0.5); } 100% { opacity: 0.6; transform: scale(1); } }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  padding: 18px 48px;
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-family: var(--font-display); font-size: 1.7rem;
  font-style: italic; font-weight: 400; color: var(--white);
  text-shadow: 0 0 30px var(--rose-glow);
}

.nav-links { display: flex; gap: 40px; list-style: none; }

.nav-links a {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted);
  position: relative; transition: color 0.4s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width 0.5s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 12px 30px; border: 1px solid var(--rose);
  color: var(--white); background: transparent;
  position: relative; overflow: hidden;
  transition: color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}
.nav-cta::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
  transition: left 0.5s var(--ease-out-expo); z-index: -1;
}
.nav-cta:hover::before { left: 0; }
.nav-cta:hover {
  color: var(--white);
  box-shadow: 0 0 30px var(--rose-glow);
  transform: translateY(-2px);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 5px; }
.nav-toggle span { width: 24px; height: 1px; background: var(--white); transition: all 0.3s ease; }

/* ========================================
   HERO - DARK & DRAMATIC
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 0 48px;
  background: var(--bg);
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(196,144,158,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 25% 70%, rgba(201,169,110,0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 20%, rgba(196,144,158,0.04) 0%, transparent 40%);
  animation: heroAmbient 10s ease-in-out infinite alternate;
}

@keyframes heroAmbient {
  0% { opacity: 0.6; transform: scale(1) rotate(0deg); }
  100% { opacity: 1; transform: scale(1.15) rotate(2deg); }
}

.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; width: 100%; max-width: 1400px;
  margin: 0 auto; gap: 60px;
  position: relative; z-index: 2;
}

/* --- Hero Text --- */
.hero-text { position: relative; z-index: 3; }

.hero-label {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  display: inline-flex; align-items: center; gap: 14px;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s var(--ease-out-expo);
}
.hero-label.animated { clip-path: inset(0); }

.hero-label::before {
  content: ''; width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8.5vw, 8rem);
  font-weight: 400; font-style: italic; line-height: 0.95;
  color: var(--white);
  margin-bottom: 30px;
}
.hero-title span {
  display: block;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s var(--ease-out-expo);
}
.hero-title span.animated { clip-path: inset(0); }

.hero-title .accent {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  color: var(--text-muted); max-width: 440px; line-height: 2;
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s ease, transform 1s var(--ease-out-expo);
}
.hero-subtitle.animated { opacity: 1; transform: translateY(0); }

.hero-cta-row {
  display: flex; gap: 20px; margin-top: 45px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s var(--ease-out-expo) 0.2s;
}
.hero-cta-row.animated { opacity: 1; transform: translateY(0); }

/* --- Hero Product Image --- */
.hero-product {
  position: relative; height: 80vh;
  display: flex; align-items: center; justify-content: center;
  perspective: 1000px;
}

/* Glowing backdrop for product */
.hero-product::before {
  content: ''; position: absolute;
  width: 80%; height: 80%; top: 10%; left: 10%;
  background: radial-gradient(ellipse at center,
    rgba(196,144,158,0.2) 0%,
    rgba(196,144,158,0.08) 30%,
    rgba(201,169,110,0.04) 50%,
    transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: productGlow 5s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes productGlow {
  0% { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 1; }
}

/* Decorative rings */
.hero-ring-deco {
  position: absolute; width: 120%; height: 120%; top: -10%; left: -10%;
  z-index: 1; pointer-events: none;
}
.hero-ring-deco circle {
  fill: none; stroke-width: 0.3;
  stroke-dasharray: 10 15;
}
.hero-ring-deco .ring1 { stroke: rgba(196,144,158,0.2); animation: spinRing 45s linear infinite; }
.hero-ring-deco .ring2 { stroke: rgba(201,169,110,0.15); animation: spinRing 60s linear infinite reverse; }
.hero-ring-deco .ring3 { stroke: rgba(196,144,158,0.1); animation: spinRing 38s linear infinite; }

@keyframes spinRing { from { transform-origin: center; transform: rotate(0deg); } to { transform-origin: center; transform: rotate(360deg); } }

/* Product image */
.hero-product-img {
  position: relative; z-index: 2;
  width: 80%; max-width: 500px;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(ellipse at center,
    rgba(255,255,255,0.06) 0%,
    rgba(196,144,158,0.03) 40%,
    transparent 70%);
  opacity: 0; transform: translateY(50px) scale(0.9) rotateY(-5deg);
  transition: opacity 1.2s ease, transform 1.2s var(--ease-out-expo);
  animation-play-state: paused;
}

.hero-product-img.animated {
  opacity: 1; transform: translateY(0) scale(1) rotateY(0deg);
  animation: productFloat 6s ease-in-out infinite;
  animation-play-state: running;
}

.hero-product-img img {
  width: 100%; height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0) rotateY(0deg) rotateX(0deg); }
  25% { transform: translateY(-12px) rotateY(2deg) rotateX(1deg); }
  50% { transform: translateY(-18px) rotateY(0deg) rotateX(-1deg); }
  75% { transform: translateY(-8px) rotateY(-2deg) rotateX(0.5deg); }
}

/* Floating badges */
.hero-badges { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-badge {
  position: absolute;
  font-family: var(--font-body); font-size: 0.55rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 10px 20px; border-radius: 30px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  opacity: 0; transform: scale(0.5) translateY(20px);
  transition: all 1s var(--ease-out-expo);
}
.hero-badge.animated { opacity: 1; transform: scale(1) translateY(0); }

.hero-badge:nth-child(1) {
  top: 12%; right: 0%;
  background: rgba(196,144,158,0.2); color: var(--rose-light);
  border: 1px solid rgba(196,144,158,0.3);
  animation: badgeFloat1 5s ease-in-out infinite;
  animation-play-state: paused;
}
.hero-badge:nth-child(2) {
  bottom: 22%; right: -5%;
  background: rgba(201,169,110,0.15); color: var(--gold-light);
  border: 1px solid rgba(201,169,110,0.25);
  animation: badgeFloat2 6s ease-in-out infinite 0.5s;
  animation-play-state: paused;
}
.hero-badge:nth-child(3) {
  top: 40%; left: -8%;
  background: var(--glass); color: var(--text-muted);
  border: 1px solid var(--glass-border);
  animation: badgeFloat3 5.5s ease-in-out infinite 1s;
  animation-play-state: paused;
}
.hero-badge.animated { animation-play-state: running; }

@keyframes badgeFloat1 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-14px) rotate(-2deg)} }
@keyframes badgeFloat2 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-12px) rotate(3deg)} }
@keyframes badgeFloat3 { 0%,100%{transform:translateY(0) rotate(-3deg)} 50%{transform:translateY(-16px) rotate(1deg)} }

/* Hero particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--rose-light);
  opacity: 0;
  animation: sparkle var(--dur, 3s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) translateY(0); }
  50% { opacity: 0.5; transform: scale(1.5) translateY(-40px); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; transition: opacity 1s ease 2.5s;
}
.hero-scroll.animated { opacity: 0.6; }
.hero-scroll span {
  font-family: var(--font-body); font-size: 0.55rem; font-weight: 300;
  letter-spacing: 5px; text-transform: uppercase; color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.4); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee {
  padding: 28px 0; overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-elevated);
}
.marquee-track {
  display: flex; animation: marqueeScroll 20s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 400;
  letter-spacing: 6px; text-transform: uppercase; color: var(--text-muted);
  white-space: nowrap; padding: 0 28px;
}
.marquee-track .dot { color: var(--rose); text-shadow: 0 0 10px var(--rose-glow); }

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

/* ========================================
   SECTION COMMON
   ======================================== */
.section-label {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  text-shadow: 0 0 20px var(--rose-glow);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400; font-style: italic;
  color: var(--white);
  line-height: 1.05; margin-bottom: 60px;
}
.section-title em {
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-style: italic;
}

/* Divider */
.section-divider {
  width: 100%; height: 1px; position: relative; overflow: visible;
  background: transparent; margin: 0;
}
.section-divider::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), var(--gold), var(--rose), transparent);
  opacity: 0.3;
  transform: scaleX(0); transition: transform 1.5s var(--ease-out-expo);
}
.section-divider.revealed::after { transform: scaleX(1); }

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0; transform: translateY(60px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

.reveal-left { opacity:0; transform:translateX(-80px); transition:opacity 1s ease, transform 1s var(--ease-out-expo); }
.reveal-left.revealed { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(80px); transition:opacity 1s ease, transform 1s var(--ease-out-expo); }
.reveal-right.revealed { opacity:1; transform:translateX(0); }
.reveal-scale { opacity:0; transform:scale(0.8); transition:opacity 1s ease, transform 1s var(--ease-out-expo); }
.reveal-scale.revealed { opacity:1; transform:scale(1); }

/* Clip reveal */
.clip-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s var(--ease-out-expo);
}
.clip-reveal.revealed { clip-path: inset(0); }

/* ========================================
   BENEFITS BAR
   ======================================== */
.benefits-bar {
  padding: 60px 48px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--glass-border);
}
.benefits-grid {
  display: flex; justify-content: center; gap: 50px;
  max-width: 1200px; margin: 0 auto; flex-wrap: wrap;
}
.benefit-item {
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out-expo);
}
.benefit-item.revealed { opacity: 1; transform: translateY(0); }

.benefit-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s var(--ease-out-expo);
}
.benefit-item:hover .benefit-icon {
  transform: scale(1.2) rotate(8deg);
  border-color: var(--rose);
  box-shadow: 0 0 30px var(--rose-glow);
  background: rgba(196,144,158,0.1);
}
.benefit-icon svg { width: 20px; height: 20px; stroke: var(--rose); fill: none; stroke-width: 1.5; }
.benefit-text {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted);
  transition: color 0.3s ease;
}
.benefit-item:hover .benefit-text { color: var(--white); }

/* ========================================
   COLLECTIONS
   ======================================== */
.collections { padding: 140px 48px; max-width: 1400px; margin: 0 auto; }

.collections-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.collection-card {
  position: relative; overflow: hidden;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  display: flex; flex-direction: column;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.collection-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 60px var(--rose-glow);
  border-color: rgba(196,144,158,0.2);
}

/* Shimmer sweep */
.collection-card::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 200%; height: 100%; z-index: 10; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transition: left 0.8s ease;
}
.collection-card:hover::before { left: 100%; }

.card-badge {
  position: absolute; top: 20px; left: 20px; z-index: 15;
  font-family: var(--font-body); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 20px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  box-shadow: 0 4px 20px var(--rose-glow);
  animation: pulseBadge 2.5s ease-in-out infinite;
}
@keyframes pulseBadge { 0%,100%{transform:scale(1);box-shadow:0 4px 20px var(--rose-glow)} 50%{transform:scale(1.08);box-shadow:0 8px 30px var(--rose-glow)} }

.collection-card-image {
  position: relative; flex: 1; overflow: hidden; min-height: 400px;
  background: radial-gradient(ellipse at center, rgba(196,144,158,0.06) 0%, var(--bg-card) 70%);
}
.collection-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out-expo), filter 0.6s ease;
}
.collection-card:hover .collection-card-image img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.collection-card-content { padding: 40px; }

.collection-card-name {
  font-family: var(--font-display); font-size: 2.4rem;
  font-style: italic; font-weight: 400; color: var(--white); margin-bottom: 8px;
}
.collection-card-sub {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
}
.collection-card-price {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 400;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.collection-card-shades {
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 300; color: var(--text-muted); line-height: 1.8;
}

.card-cta {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--rose);
  transition: gap 0.4s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.card-cta:hover { gap: 18px; color: var(--white); text-shadow: 0 0 20px var(--rose-glow); }
.card-cta svg { width: 16px; height: 16px; transition: transform 0.4s ease; }
.card-cta:hover svg { transform: translateX(6px); }

/* ========================================
   SHADE SHOWCASE
   ======================================== */
.shade-showcase { padding: 120px 0; overflow: hidden; }
.shade-showcase .section-label,
.shade-showcase .section-title { padding: 0 48px; }

.shade-scroll {
  display: flex; gap: 28px; padding: 40px 48px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.shade-scroll::-webkit-scrollbar { display: none; }

.shade-card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  position: relative;
  transform-style: preserve-3d;
}
.shade-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 40px var(--rose-glow);
  border-color: rgba(196,144,158,0.25);
}

/* Shimmer on hover */
.shade-card::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transition: left 0.7s ease; z-index: 2; pointer-events: none;
}
.shade-card:hover::after { left: 100%; }

.shade-card-image {
  height: 360px; overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
}
.shade-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
}
.shade-card:hover .shade-card-image img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.1);
}

.shade-card-info { padding: 28px; }
.shade-card-name {
  font-family: var(--font-display); font-size: 1.7rem;
  font-style: italic; font-weight: 400; color: var(--white); margin-bottom: 4px;
}
.shade-card-flavor {
  font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 300; color: var(--text-muted); margin-bottom: 14px;
}
.shade-card-price {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
  color: var(--rose); margin-bottom: 16px;
}
.shade-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.shade-tag {
  font-family: var(--font-body); font-size: 0.55rem; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(196,144,158,0.2);
  border-radius: 20px; color: var(--rose-light);
  background: rgba(196,144,158,0.05);
  transition: all 0.3s ease;
}
.shade-tag:hover {
  background: rgba(196,144,158,0.15);
  border-color: var(--rose);
  box-shadow: 0 0 15px rgba(196,144,158,0.15);
}

.shade-card-cta {
  display: block; text-align: center;
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 0;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(196,144,158,0.2);
}
.shade-card-cta:hover {
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  transform: scale(1.03);
  box-shadow: 0 8px 30px var(--rose-glow);
}

/* ========================================
   FULL IMAGE SECTIONS
   ======================================== */
.full-image-section {
  position: relative; height: 85vh; overflow: hidden;
}
.full-image-section img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.full-image-section:hover img { transform: scale(1.05); }

.full-image-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.4) 100%);
}
.full-image-text { text-align: center; max-width: 700px; padding: 0 24px; }
.full-image-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-style: italic; font-weight: 400; color: var(--white);
  line-height: 1.2;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 140px 48px; max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.testimonials-slider {
  position: relative; min-height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-card {
  position: absolute; max-width: 700px;
  opacity: 0; transform: translateY(30px) scale(0.92);
  transition: all 1s var(--ease-out-expo);
  pointer-events: none;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 50px 40px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.testimonial-card.active {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}

.testimonial-stars {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 24px;
}
.testimonial-stars svg { width: 18px; height: 18px; fill: var(--gold); stroke: none; }

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic; font-weight: 400; line-height: 1.7;
  color: var(--white); margin-bottom: 28px;
}
.testimonial-author {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--rose);
}

.testimonials-dots {
  display: flex; justify-content: center; gap: 12px; margin-top: 40px;
}
.testimonials-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid rgba(196,144,158,0.4); background: transparent;
  transition: all 0.4s ease; padding: 0;
}
.testimonials-dots button.active {
  background: var(--rose); transform: scale(1.3);
  box-shadow: 0 0 15px var(--rose-glow);
  border-color: var(--rose);
}

/* ========================================
   EDITORIAL
   ======================================== */
.editorial-section { padding: 120px 48px; max-width: 1400px; margin: 0 auto; }

.editorial-grid { display: grid; gap: 16px; }
.editorial-grid.top { grid-template-columns: 1fr 1fr; }
.editorial-grid.bottom { grid-template-columns: 0.9fr 1.1fr; margin-top: 16px; }

.editorial-item {
  position: relative; overflow: hidden; border-radius: 12px;
  min-height: 520px;
}
.editorial-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo), filter 0.8s ease;
}
.editorial-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.15) saturate(1.2);
}

.editorial-item::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
}
.editorial-item:hover::before { opacity: 1; }

.editorial-item::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid transparent; border-radius: 12px;
  transition: border-color 0.4s ease; pointer-events: none; z-index: 2;
}
.editorial-item:hover::after { border-color: rgba(196,144,158,0.3); }

/* ========================================
   COMBO CTA
   ======================================== */
.combo-cta {
  padding: 140px 48px; text-align: center;
  position: relative; overflow: hidden;
  background: var(--bg-elevated);
}
.combo-cta::before {
  content: ''; position: absolute; inset: -50%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(196,144,158,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(201,169,110,0.06) 0%, transparent 50%);
  animation: comboGradient 12s ease-in-out infinite alternate;
}
@keyframes comboGradient { 0%{transform:rotate(0) scale(1)} 100%{transform:rotate(3deg) scale(1.1)} }

.combo-content { position: relative; z-index: 2; }
.combo-cta .section-title { margin-bottom: 20px; }

.combo-subtitle {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  color: var(--text-muted); max-width: 520px; margin: 0 auto 50px; line-height: 1.9;
}

.combo-image {
  max-width: 800px; margin: 0 auto 60px;
  border-radius: 16px; overflow: hidden;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(196,144,158,0.06) 0%, transparent 70%);
}
.combo-image img {
  width: 100%; height: auto; display: block;
  border-radius: 16px;
  transition: transform 0.8s var(--ease-out-expo);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.combo-image:hover img { transform: scale(1.04); }

.combo-prices {
  display: flex; justify-content: center; gap: 50px; margin-bottom: 50px;
  flex-wrap: wrap;
}
.combo-price-item {
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px 36px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.combo-price-item:hover {
  border-color: rgba(196,144,158,0.3);
  box-shadow: 0 0 30px rgba(196,144,158,0.1);
}
.combo-price-item:last-child {
  border-color: var(--rose);
  background: rgba(196,144,158,0.08);
}
.combo-price-label {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 8px;
}
.combo-price-value {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   PHILOSOPHY
   ======================================== */
.philosophy {
  padding: 180px 48px; max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 80px; align-items: center;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-style: italic; font-weight: 400; line-height: 1.35;
  color: var(--white); position: relative; padding-left: 30px;
}
.philosophy-quote::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 2px; height: 0;
  background: linear-gradient(to bottom, var(--rose), var(--gold), transparent);
  transition: height 1.5s var(--ease-out-expo);
}
.philosophy-quote.revealed::before { height: 100%; }

.philosophy-text p {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  color: var(--text-muted); line-height: 2; margin-bottom: 20px;
}
.philosophy-text strong { color: var(--rose-light); font-weight: 500; }

/* ========================================
   STATS
   ======================================== */
.stats {
  padding: 120px 48px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,144,158,0.04) 0%, transparent 60%);
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 60px; text-align: center; position: relative; z-index: 2;
}
.stat-item { position: relative; }

.stat-icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 50%;
  transition: all 0.4s ease;
}
.stat-item:hover .stat-icon {
  box-shadow: 0 0 30px var(--rose-glow);
  border-color: var(--rose);
}
.stat-icon svg { stroke: var(--rose); fill: none; stroke-width: 1.5; width: 24px; height: 24px; }

.stat-number {
  font-family: var(--font-display); font-size: 5rem; font-weight: 400;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 12px;
  text-shadow: none;
}
.stat-label {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted);
}

/* ========================================
   INSTAGRAM
   ======================================== */
.instagram-section { padding: 120px 48px; max-width: 1400px; margin: 0 auto; }
.instagram-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 50px;
}
.instagram-follow {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--rose);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.4s ease;
}
.instagram-follow:hover { gap: 16px; text-shadow: 0 0 15px var(--rose-glow); }

.instagram-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.instagram-item {
  position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 8px;
}
.instagram-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
}
.instagram-item:hover img {
  transform: scale(1.12);
  filter: brightness(0.8);
}
.instagram-item::after {
  content: '✦'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  background: rgba(196,144,158,0);
  transition: all 0.5s ease; pointer-events: none;
  opacity: 0;
}
.instagram-item:hover::after {
  background: rgba(196,144,158,0.25);
  opacity: 1;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
  padding: 140px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,144,158,0.05) 0%, transparent 60%);
}
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-style: italic; font-weight: 400; color: var(--white); margin-bottom: 16px;
  position: relative; z-index: 2;
}
.newsletter p {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  color: var(--text-muted); margin-bottom: 40px;
  position: relative; z-index: 2;
}
.newsletter-form {
  display: flex; align-items: center; justify-content: center; gap: 0;
  max-width: 500px; margin: 0 auto;
  position: relative; z-index: 2;
}
.newsletter-form input {
  flex: 1; border: none;
  border-bottom: 1px solid rgba(196,144,158,0.3);
  padding: 16px 0; font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 300; color: var(--white); background: transparent;
  outline: none; letter-spacing: 1px;
  transition: border-color 0.3s ease;
}
.newsletter-form input:focus { border-color: var(--rose); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  background: none; border: none;
  border-bottom: 1px solid rgba(196,144,158,0.3);
  padding: 16px 24px; color: var(--rose);
  transition: all 0.3s ease;
}
.newsletter-form button:hover { color: var(--white); transform: translateX(4px); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 80px 48px 40px;
  border-top: 1px solid var(--glass-border);
  background: var(--bg);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; max-width: 1400px; margin: 0 auto 60px;
}
.footer-brand {
  font-family: var(--font-display); font-size: 2rem;
  font-style: italic; font-weight: 400; color: var(--white); margin-bottom: 16px;
  text-shadow: 0 0 30px var(--rose-glow);
}
.footer-desc {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.9; max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul a {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 300;
  color: var(--text-muted); transition: color 0.3s ease;
}
.footer-col ul a:hover { color: var(--rose); }

.footer-bottom {
  max-width: 1400px; margin: 0 auto; padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 300;
  color: var(--text-muted); letter-spacing: 2px;
}
.footer-legal { display: flex; gap: 30px; }
.footer-legal a {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 300;
  color: var(--text-muted); letter-spacing: 2px; transition: color 0.3s ease;
}
.footer-legal a:hover { color: var(--rose); }

/* ========================================
   GLOBAL BUTTONS
   ======================================== */
.btn-filled {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 18px 40px; border: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  position: relative; overflow: hidden;
  border-radius: 4px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 30px var(--rose-glow);
}
.btn-filled:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--rose-glow), 0 0 60px rgba(196,144,158,0.15);
}
.btn-filled::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}
.btn-filled:hover::after { left: 100%; }

.btn-rose {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 18px 40px;
  border: 1px solid rgba(196,144,158,0.4);
  color: var(--rose-light); background: transparent;
  position: relative; overflow: hidden;
  border-radius: 4px;
  transition: all 0.4s ease;
}
.btn-rose::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(196,144,158,0.15), rgba(196,144,158,0.05));
  transition: left 0.5s var(--ease-out-expo); z-index: -1;
}
.btn-rose:hover::before { left: 0; }
.btn-rose:hover {
  color: var(--white);
  border-color: var(--rose);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(196,144,158,0.15);
}

.magnetic-btn { transition: transform 0.3s var(--ease-out-expo); }

/* --- Floating BG --- */
.floating-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden;
}
@keyframes floatCircle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* --- Grain overlay --- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 99990; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { order: 2; }
  .hero-product { order: 1; height: 50vh; }
  .hero-subtitle { margin: 0 auto; }
  .hero-cta-row { justify-content: center; }
  .hero-badges { display: none; }
  .philosophy { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .benefits-grid { gap: 24px; }
  .editorial-grid.top, .editorial-grid.bottom { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(30px);
    padding: 30px 24px; gap: 20px;
    border-bottom: 1px solid var(--glass-border);
  }
  .hero { padding: 0 24px; min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-title { font-size: clamp(3rem, 12vw, 4.5rem); }
  .hero-product { height: 40vh; }
  .hero-product-img { width: 90%; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .collections { padding: 80px 24px; }
  .shade-scroll { padding: 20px 24px; }
  .shade-card { flex: 0 0 280px; }
  .philosophy { padding: 80px 24px; gap: 40px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .combo-prices { gap: 16px; }
  .editorial-item { min-height: 300px; }
  .benefits-grid { flex-direction: column; align-items: center; gap: 16px; }
  .editorial-section { padding: 60px 24px; }
  .combo-cta { padding: 80px 24px; }
  .testimonials { padding: 80px 24px; }
  .instagram-section { padding: 60px 24px; }
  .newsletter { padding: 80px 24px; }
  .section-title { font-size: clamp(2.2rem, 8vw, 3.5rem); margin-bottom: 40px; }
  .instagram-header { flex-direction: column; gap: 20px; text-align: center; }
  .combo-price-item { padding: 18px 24px; }
  .stat-number { font-size: 3.5rem; }
  .benefits-bar { padding: 40px 24px; }
  .footer { padding: 60px 24px 30px; }
  .full-image-section { height: 50vh; }
}
