/* =============================================
   LUMIÈRE BEAUTY — Premium Skincare CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #9d7a45;
  --rose: #e8b4b8;
  --rose-dark: #c4878e;
  --cream: #fdf8f3;
  --pearl: #f5efe8;
  --dark: #1a1210;
  --deep: #0d0908;
  --charcoal: #2c2420;
  --text-dark: #3a2e2a;
  --text-mid: #6b5a54;
  --text-light: #9c8c86;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(201, 169, 110, 0.25);
  --shadow-gold: 0 20px 60px rgba(201, 169, 110, 0.2);
  --shadow-soft: 0 10px 40px rgba(26, 18, 16, 0.08);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--rose)); border-radius: 10px; }

/* ---- SELECTION ---- */
::selection { background: rgba(201, 169, 110, 0.2); color: var(--dark); }

/* ============================================
   CURSOR
   ============================================ */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: multiply;
}
.cursor-follower {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s var(--transition);
  opacity: 0.6;
}
.cursor.expanded { width: 20px; height: 20px; }
.cursor-follower.expanded { width: 60px; height: 60px; opacity: 0.3; }

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: all 0.5s var(--transition);
}
nav.scrolled {
  background: rgba(253, 248, 243, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(201, 169, 110, 0.15);
  height: 68px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo span.sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--transition);
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-icon {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.1rem;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s;
  position: relative;
}
.nav-icon:hover { color: var(--gold); background: rgba(201,169,110,0.1); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.55rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5%;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--pearl) 50%, #f0e8df 100%);
}
#hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,180,184,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  z-index: 2;
  padding-right: 3rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-mid);
  max-width: 420px;
  margin: 1.5rem 0 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s var(--transition);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201, 169, 110, 0.5); }
.btn-primary:hover::after { opacity: 1; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-secondary svg { transition: transform 0.3s; }
.btn-secondary:hover { color: var(--gold-dark); }
.btn-secondary:hover svg { transform: translateX(5px); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}
.stat-item span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}
.stat-item p {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 5px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 90%;
  max-width: 500px;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: 30px 30px 100px 30px;
  object-fit: cover;
  box-shadow: var(--shadow-gold);
  display: block;
}
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  animation: float 4s ease-in-out infinite;
}
.floating-card.card-1 {
  bottom: 15%;
  left: -12%;
  animation-delay: 0s;
}
.floating-card.card-2 {
  top: 12%;
  right: -10%;
  animation-delay: 2s;
}
.card-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 4px; }
.card-text { font-size: 0.75rem; font-weight: 500; color: var(--text-dark); }
.card-sub { font-size: 0.65rem; color: var(--text-light); }
.card-icon { font-size: 1.4rem; margin-bottom: 4px; }
.card-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); }
.card-value { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text-dark); }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

/* ============================================
   MARQUEE BANNER
   ============================================ */
.marquee-section {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.marquee-track span::before { content: '✦'; opacity: 0.7; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS SHARED
   ============================================ */
section { padding: 6rem 5%; }
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* ============================================
   BRAND FEATURES
   ============================================ */
#features {
  background: var(--pearl);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.05), rgba(232,180,184,0.05));
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(201, 169, 110, 0.15);
  border-color: rgba(201, 169, 110, 0.25);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(232,180,184,0.12));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   PRODUCTS
   ============================================ */
#products { background: var(--cream); }
.products-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.6rem 1.8rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50px;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 20px rgba(201, 169, 110, 0.35);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: all 0.5s var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 70px rgba(201, 169, 110, 0.15);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--pearl);
  height: 300px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
  display: block;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}
.badge-new { background: var(--gold); color: white; }
.badge-best { background: var(--rose-dark); color: white; }
.badge-sale { background: #d4463b; color: white; }
.product-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(to top, rgba(253,248,243,0.98) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s var(--transition);
}
.product-card:hover .product-actions { transform: translateY(0); }
.btn-add-cart {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-add-cart:hover { box-shadow: 0 8px 25px rgba(201, 169, 110, 0.5); }
.btn-wishlist {
  width: 100%;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-mid);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-wishlist:hover { color: var(--rose-dark); border-color: var(--rose-dark); }
.product-info { padding: 1.5rem; }
.product-category {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.stars { color: var(--gold); font-size: 0.75rem; }
.rating-count { font-size: 0.7rem; color: var(--text-light); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  display: flex;
  flex-direction: column;
}
.price-current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.price-original {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.btn-quick-view {
  width: 40px; height: 40px;
  background: var(--pearl);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}
.btn-quick-view:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* ============================================
   RITUAL SECTION (Full-width editorial)
   ============================================ */
#ritual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  min-height: 600px;
  background: var(--dark);
  overflow: hidden;
}
.ritual-img {
  position: relative;
  overflow: hidden;
}
.ritual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.8s var(--transition);
  display: block;
}
.ritual-img:hover img { transform: scale(1.05); }
.ritual-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.ritual-content::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
}
.ritual-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ritual-eyebrow::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}
.ritual-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.ritual-title em { font-style: italic; color: var(--gold); }
.ritual-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 380px;
}
.ritual-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.step:hover, .step.active {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.35);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.4);
  min-width: 35px;
  line-height: 1;
}
.step.active .step-num { color: var(--gold); }
.step-info h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.step-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   INGREDIENTS
   ============================================ */
#ingredients { background: var(--pearl); }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.ingredient-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: all 0.4s var(--transition);
  cursor: pointer;
}
.ingredient-card:hover {
  box-shadow: 0 20px 50px rgba(201, 169, 110, 0.15);
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.25);
}
.ingredient-emoji { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }
.ingredient-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.ingredient-benefit {
  font-size: 0.68rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials { background: var(--dark); }
#testimonials .section-title { color: var(--white); }
#testimonials .section-eyebrow { color: var(--gold); }
#testimonials .section-eyebrow::before, 
#testimonials .section-eyebrow::after { background: var(--gold); }
#testimonials .section-desc { color: rgba(255,255,255,0.5); }
.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}
.testimonials-track {
  display: flex;
  transition: transform 0.6s var(--transition);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1.5rem);
  margin-right: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s;
}
.testimonial-card:hover {
  background: rgba(201, 169, 110, 0.06);
  border-color: rgba(201, 169, 110, 0.25);
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1.2rem; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.author-tag {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  align-items: center;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.25);
  background: transparent;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.slider-btn:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 6px; height: 6px;
  background: rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { width: 22px; background: var(--gold); border-radius: 3px; }

/* ============================================
   SKIN QUIZ STRIP
   ============================================ */
#quiz-strip {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, #e8c882 100%);
  padding: 4rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#quiz-strip::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
#quiz-strip::after {
  content: '';
  position: absolute;
  bottom: -60%; right: 5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
#quiz-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: white;
  margin-bottom: 0.8rem;
  position: relative; z-index: 1;
}
#quiz-strip p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.btn-quiz {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--gold-dark);
  border: none;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  position: relative; z-index: 1;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.btn-quiz:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }

/* ============================================
   NEWSLETTER
   ============================================ */
#newsletter { background: var(--pearl); }
.newsletter-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.newsletter-form input {
  flex: 1;
  padding: 1.1rem 1.8rem;
  border: none;
  background: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form button {
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover { opacity: 0.9; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.5);
  padding: 5rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo { color: white; margin-bottom: 1.2rem; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 0.8rem;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-payments { display: flex; gap: 0.5rem; }
.payment-icon {
  background: rgba(255,255,255,0.07);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.07);
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 420px;
  background: var(--cream);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.5s var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.cart-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--dark);
}
.cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-mid);
  padding: 6px;
  transition: color 0.3s;
}
.cart-close:hover { color: var(--dark); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.cart-empty { text-align: center; padding: 4rem 0; }
.cart-empty p { font-size: 1rem; color: var(--text-light); }
.cart-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
}
.cart-total span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold-dark);
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.cart-item-img {
  width: 70px; height: 70px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--pearl);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 500; color: var(--dark); margin-bottom: 3px; }
.cart-item-price { font-size: 0.85rem; color: var(--gold-dark); margin-bottom: 8px; }
.qty-control { display: flex; align-items: center; gap: 0.6rem; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.25);
  background: none;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all 0.3s;
}
.qty-btn:hover { background: var(--gold); color: white; border-color: var(--gold); }
.qty-num { font-size: 0.85rem; font-weight: 500; min-width: 20px; text-align: center; }

/* ============================================
   QUIZ MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,8,7,0.7);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(8px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.quiz-modal {
  background: var(--cream);
  border-radius: 30px;
  padding: 3rem;
  max-width: 550px;
  width: 90%;
  position: relative;
  animation: slideUp 0.4s var(--transition);
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.quiz-modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--pearl);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all 0.3s;
}
.quiz-modal-close:hover { background: var(--gold); color: white; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.quiz-option {
  padding: 1rem;
  border: 1.5px solid rgba(201, 169, 110, 0.2);
  border-radius: 16px;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  color: var(--text-dark);
}
.quiz-option:hover, .quiz-option.selected {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  color: var(--gold-dark);
}
.quiz-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.q-dot {
  height: 3px; flex: 1;
  background: rgba(201, 169, 110, 0.2);
  border-radius: 2px;
  transition: background 0.3s;
}
.q-dot.done { background: var(--gold); }
.quiz-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
.quiz-result {
  text-align: center;
}
.result-type {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}
.result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.result-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 2rem; }

/* ============================================
   ANIMATIONS (Scroll-triggered)
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.8s var(--transition);
}
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  #ritual { grid-template-columns: 1fr; }
  .ritual-img { height: 400px; }
}
@media (max-width: 768px) {
  #hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  .hero-content { padding-right: 0; }
  .hero-subtitle { margin: 1.5rem auto 2rem; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 3rem; }
  .floating-card { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card { flex: 0 0 calc(100% - 2rem); }
  .cart-drawer { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ritual-content { padding: 3rem 5%; }
  .cursor, .cursor-follower { display: none; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 4rem 5%; }
}
