/* ==========================================================================
   SOUL MATTERS - REFINED ULTRA-LUXURY WHITE & CHAMPAGNE GOLD STYLESHEET
   Compact, Proportionate & Beautiful High-End Boutique Aesthetics
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Alabaster, Pearl & Soft Cashmere Palette */
  --bg-page: #FBFBFA;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F6F4EE;
  --bg-card: #FFFFFF;
  --bg-soft-gold: #FAF6ED;

  /* Champagne Gold Accents */
  --gold-100: #F7EEDB;
  --gold-200: #EED8B0;
  --gold-300: #D8B75B;
  --gold-400: #B88E38;
  --gold-500: #997324;
  --gold-600: #7A5716;

  --gold-gradient: linear-gradient(135deg, #B88E38 0%, #D4AF37 50%, #946E20 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(216, 183, 91, 0.12) 0%, rgba(184, 142, 56, 0.04) 100%);

  /* High-Contrast Deep Charcoal Typography */
  --text-title: #141418;
  --text-body: #383842;
  --text-sub: #636372;
  --text-muted: #8E8E9E;
  --text-gold: #8A641A;

  /* Borders & Dividers */
  --border-gold: rgba(184, 142, 56, 0.24);
  --border-gold-strong: rgba(184, 142, 56, 0.55);
  --border-subtle: rgba(0, 0, 0, 0.07);

  /* Delicate Soft Shadows (No harsh dark shadows) */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 28px -6px rgba(140, 115, 60, 0.1);
  --shadow-card: 0 8px 24px -4px rgba(120, 100, 70, 0.08);
  --shadow-hover: 0 16px 36px -6px rgba(140, 115, 60, 0.18);
  --shadow-gold: 0 8px 20px rgba(184, 142, 56, 0.25);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-serif: 'Cinzel', serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background: var(--bg-page);
  position: relative;
  line-height: 1.6;
}

/* Luxury Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #F4EFE6;
}
::-webkit-scrollbar-thumb {
  background: #D8B75B;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B88E38;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--text-title);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   TOP NOTIFICATION BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #FAF4E8 0%, #F5E9D0 50%, #FAF4E8 100%);
  border-bottom: 1px solid rgba(184, 142, 56, 0.2);
  padding: 0.4rem 1rem;
  font-size: 0.74rem;
  text-align: center;
  letter-spacing: 0.06em;
  color: var(--gold-600);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
}

.top-bar .code-badge {
  background: #FFFFFF;
  border: 1px dashed var(--gold-400);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  color: var(--gold-600);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.brand-emblem-badge {
  height: 56px;
  width: auto;
  min-width: 140px;
  padding: 4px 14px;
  border-radius: 10px;
  background: #000000;
  border: 1.5px solid rgba(184, 142, 56, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-logo:hover .brand-emblem-badge {
  transform: scale(1.03);
  border-color: var(--gold-500);
  box-shadow: 0 6px 22px rgba(184, 142, 56, 0.35);
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--gold-500);
}

.nav-link:hover::after {
  width: 100%;
}

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

.nav-icon-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  color: var(--text-title);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
}

.nav-icon-btn:hover {
  border-color: var(--gold-400);
  background: var(--bg-soft-gold);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-luxury-call {
  background: #FFFFFF;
  border: 1px solid var(--border-gold-strong);
  color: var(--text-title);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.btn-luxury-call:hover {
  background: var(--bg-soft-gold);
  border-color: var(--gold-500);
  color: var(--gold-600);
  transform: translateY(-2px);
}

.btn-luxury-wa {
  background: linear-gradient(135deg, #0e8550 0%, #1db954 100%);
  color: #fff;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 3px 12px rgba(29, 185, 84, 0.25);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-luxury-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(29, 185, 84, 0.35);
  color: #fff;
}

.sound-toggle-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.38rem 0.75rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.sound-toggle-btn:hover {
  background: var(--bg-soft-gold);
}

.sound-waves {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 11px;
}

.sound-wave-bar {
  width: 2px;
  background: var(--gold-500);
  border-radius: 1px;
  height: 3px;
  transition: height 0.2s ease;
}

.sound-waves.playing .sound-wave-bar:nth-child(1) { animation: wave 0.8s ease-in-out infinite; }
.sound-waves.playing .sound-wave-bar:nth-child(2) { animation: wave 1.1s ease-in-out infinite 0.2s; }
.sound-waves.playing .sound-wave-bar:nth-child(3) { animation: wave 0.9s ease-in-out infinite 0.4s; }

@keyframes wave {
  0%, 100% { height: 2px; }
  50% { height: 11px; }
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-title);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (PROPORTIONATE, ATTRACTIVE, BALANCED)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(90vh - 70px);
  display: flex;
  align-items: center;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 70% 55% at 75% 45%, rgba(245, 235, 215, 0.45) 0%, rgba(255, 255, 255, 0) 65%),
    radial-gradient(circle 500px at 15% 30%, rgba(252, 248, 240, 0.9) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, #FFFDFB 0%, #FAF6EE 45%, #F5EDE0 100%);
}

#three-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-silk-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.silk-left {
  top: 10%;
  left: -5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(246, 238, 222, 0.75) 0%, rgba(255, 255, 255, 0) 70%);
}

.silk-right {
  top: -5%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(235, 210, 160, 0.25) 0%, rgba(250, 243, 230, 0.08) 50%, transparent 70%);
}

.hero-sunbeam-caustic {
  position: absolute;
  top: -60px;
  right: 22%;
  width: 360px;
  height: 120%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7) 0%, rgba(245, 230, 195, 0.14) 40%, transparent 70%);
  transform: rotate(-12deg);
  filter: blur(35px);
  pointer-events: none;
  z-index: 2;
}

.hero-sparkle-star {
  position: absolute;
  color: var(--gold-400);
  pointer-events: none;
  z-index: 3;
  opacity: 0.65;
  animation: starTwinkle 3.2s ease-in-out infinite alternate;
  text-shadow: 0 0 10px rgba(216, 183, 91, 0.5);
  font-family: serif;
}

.star-1 { top: 16%; left: 47%; font-size: 1.15rem; animation-delay: 0s; }
.star-2 { top: 32%; right: 9%; font-size: 0.85rem; animation-delay: 1.3s; }
.star-3 { bottom: 20%; left: 6%; font-size: 1rem; animation-delay: 2.1s; }

@keyframes starTwinkle {
  0% { opacity: 0.25; transform: scale(0.85) rotate(0deg); }
  100% { opacity: 0.9; transform: scale(1.2) rotate(15deg); }
}

.hero-glow-radial {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(216, 183, 91, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 580px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 700;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(184, 142, 56, 0.1);
}

.hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-title);
}

.hero-title .tagline-hindi {
  font-family: var(--font-accent);
  font-size: 0.56em;
  font-weight: 600;
  display: block;
  color: var(--gold-500);
  margin-top: 0.3rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

.hero-description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 1.8rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.btn-luxury-primary {
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-luxury-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(184, 142, 56, 0.35);
}

.btn-luxury-outline {
  background: #FFFFFF;
  color: var(--text-title);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid var(--border-gold-strong);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
}

.btn-luxury-outline:hover {
  background: var(--bg-soft-gold);
  border-color: var(--gold-500);
  color: var(--gold-600);
  transform: translateY(-2px);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 142, 56, 0.2);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-sub);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

/* Hero Bottle Showcase - Refined Proportions */
.hero-stage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-boutique-arch {
  position: absolute;
  top: -15px;
  width: 350px;
  height: 410px;
  border-radius: 175px 175px 24px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 245, 235, 0.88) 55%, rgba(244, 235, 218, 0.55) 100%);
  border: 1px solid rgba(184, 142, 56, 0.28);
  box-shadow: 
    0 0 0 4px rgba(255, 255, 255, 0.85),
    0 0 0 5px rgba(184, 142, 56, 0.14),
    0 22px 45px rgba(184, 142, 56, 0.1),
    inset 0 2px 25px rgba(255, 255, 255, 0.95);
  z-index: 1;
  pointer-events: none;
}

.hero-bottle-frame {
  position: relative;
  width: 100%;
  max-width: 330px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  background: radial-gradient(circle at 50% 55%, #FFFFFF 0%, rgba(250, 245, 235, 0.55) 70%, transparent 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 142, 56, 0.2);
  box-shadow: 0 10px 30px rgba(184, 142, 56, 0.08);
  z-index: 2;
}

.pedestal-ring {
  position: absolute;
  bottom: 25px;
  width: 220px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(216, 183, 91, 0.35) 0%, rgba(216, 183, 91, 0.08) 55%, rgba(255,255,255,0) 80%);
  border: 1px solid rgba(184, 142, 56, 0.3);
  box-shadow: 0 0 25px rgba(216, 183, 91, 0.25);
  transform: rotateX(65deg);
}

.hero-bottle-img-wrap {
  position: relative;
  z-index: 10;
  cursor: grab;
}

.hero-bottle-img {
  max-height: 310px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(120, 100, 70, 0.22));
  transition: all var(--transition-fast);
  user-select: none;
}

/* Floating Scent Badge */
.floating-scent-badge {
  position: absolute;
  top: 15px;
  right: -10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-gold-strong);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 15;
  max-width: 165px;
}

.floating-scent-badge .badge-title {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 800;
}

.floating-scent-badge .badge-text {
  font-size: 0.78rem;
  color: var(--text-title);
  font-weight: 700;
  margin-top: 2px;
}

/* Switcher tabs under bottle */
.hero-bottle-switcher {
  display: flex;
  gap: 0.4rem;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  padding: 0.3rem;
  border-radius: var(--radius-full);
  margin-top: 1rem;
  z-index: 20;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.switcher-btn {
  background: transparent;
  border: none;
  color: var(--text-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.switcher-btn.active, .switcher-btn:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(184, 142, 56, 0.3);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.8rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--text-title);
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.65;
}

/* ==========================================================================
   PERFUMES COLLECTION
   ========================================================================== */
.section-collection {
  padding: 5rem 0;
  position: relative;
  background: #FAF8F4;
}

.collection-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.8rem;
}

.filter-chip {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  color: var(--text-body);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-chip.active, .filter-chip:hover {
  background: var(--gold-gradient);
  border-color: var(--gold-500);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(184, 142, 56, 0.25);
}

.fragrance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.6rem;
}

.fragrance-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.fragrance-card:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.badge-tag {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--gold-100);
  color: var(--gold-600);
  border: 1px solid var(--border-gold);
}

.card-gender {
  font-size: 0.68rem;
  color: var(--text-sub);
  text-transform: uppercase;
  font-weight: 600;
}

.card-img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: radial-gradient(circle at center, #FBF8F2 0%, #FFFFFF 70%);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}

.card-bottle-img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(120, 100, 70, 0.2));
  transition: transform 0.3s ease;
}

.fragrance-card:hover .card-bottle-img {
  transform: scale(1.06);
}

.card-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-hindi-title {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold-500);
  font-weight: 700;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-title);
  margin-bottom: 0.15rem;
}

.card-tagline {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-600);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.card-notes-preview {
  background: var(--bg-soft-gold);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xs);
  padding: 0.55rem 0.75rem;
  font-size: 0.72rem;
  color: var(--text-body);
  line-height: 1.45;
  margin-bottom: 0.8rem;
}

.notes-label {
  color: var(--gold-500);
  font-weight: 800;
}

.card-inspired {
  font-size: 0.72rem;
  color: var(--text-sub);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-bottom-row {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-top: 1px solid rgba(184, 142, 56, 0.18);
  margin-bottom: 0.35rem;
}

.card-volume-badge {
  font-size: 0.72rem;
  color: var(--gold-600);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-avail-badge {
  font-size: 0.66rem;
  color: #0e8550;
  background: rgba(14, 133, 80, 0.08);
  border: 1px solid rgba(14, 133, 80, 0.2);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-actions-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.5rem;
}

.btn-card-wa {
  background: linear-gradient(135deg, #0e8550 0%, #25d366 100%);
  color: #FFFFFF !important;
  text-decoration: none;
  padding: 0.58rem 0.5rem;
  border-radius: var(--radius-xs);
  font-size: 0.74rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.22);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-card-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
  color: #FFFFFF !important;
}

.btn-card-call {
  background: #FFFFFF;
  border: 1px solid var(--border-gold-strong);
  color: var(--text-title) !important;
  text-decoration: none;
  padding: 0.58rem 0.5rem;
  border-radius: var(--radius-xs);
  font-size: 0.74rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-card-call:hover {
  background: var(--bg-soft-gold);
  border-color: var(--gold-500);
  color: var(--gold-600) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   OFFICIAL BROCHURE & SCENT GUIDES GALLERY
   ========================================================================== */
.section-brochures {
  padding: 5rem 0;
  position: relative;
  background: #FFFFFF;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.brochure-showcase-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.8rem;
  align-items: center;
  background: var(--bg-soft-gold);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}

.brochure-preview-box {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 12px 25px rgba(140, 110, 70, 0.15);
  background: #fff;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.brochure-preview-box:hover {
  transform: scale(1.02);
}

.brochure-preview-img {
  width: 100%;
  height: auto;
  display: block;
}

.brochure-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-600);
  border: 1px solid var(--border-gold);
}

.brochure-tabs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}

.brochure-tab-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.brochure-tab-btn.active, .brochure-tab-btn:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: var(--gold-500);
}

.brochure-info-box h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.brochure-info-quote {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-500);
  margin-bottom: 1rem;
  font-weight: 600;
}

.brochure-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.spec-item {
  background: #FFFFFF;
  border: 1px solid rgba(184, 142, 56, 0.2);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-xs);
}

.spec-item span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-600);
  font-weight: 700;
}

.spec-item strong {
  font-size: 0.8rem;
  color: var(--text-title);
}

/* ==========================================================================
   SCENT FINDER QUIZ
   ========================================================================== */
.section-quiz {
  padding: 5rem 0;
  position: relative;
  background: #FAF8F4;
}

.quiz-container-box {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.quiz-progress-track {
  width: 100%;
  height: 5px;
  background: rgba(184, 142, 56, 0.15);
  border-radius: 3px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  width: 33.33%;
  background: var(--gold-gradient);
  transition: width var(--transition-normal);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-indicator {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.quiz-question {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  color: var(--text-title);
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.quiz-option-card {
  background: #FAF8F5;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.quiz-option-card:hover {
  background: var(--bg-soft-gold);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.quiz-option-card.selected {
  background: var(--gold-100);
  border-color: var(--gold-500);
}

.option-icon {
  font-size: 1.5rem;
  color: var(--gold-500);
}

.option-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-title);
}

.option-desc {
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.45;
}

.quiz-result-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.result-bottle-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-soft-gold);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.result-bottle-img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(140, 110, 70, 0.2));
}

.result-match-badge {
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.76rem;
  padding: 0.3rem 0.95rem;
  border-radius: var(--radius-full);
  margin-top: 0.8rem;
}

.result-details-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.result-why-box {
  background: var(--bg-soft-gold);
  border-left: 3px solid var(--gold-400);
  padding: 0.85rem 1rem;
  font-size: 0.84rem;
  color: var(--text-body);
  margin-bottom: 1.2rem;
  line-height: 1.55;
}

/* ==========================================================================
   OLFACTORY JOURNEY
   ========================================================================== */
.section-journey {
  padding: 5rem 0;
  position: relative;
  background: #FFFFFF;
}

.journey-pyramid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem;
  align-items: center;
}

.pyramid-visual-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pyramid-tier {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.6rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.pyramid-tier:hover, .pyramid-tier.active {
  border-color: var(--gold-500);
  background: var(--bg-soft-gold);
  transform: translateX(6px);
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.tier-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-title);
}

.tier-time {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
}

.tier-desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.5;
}

.tier-notes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.note-tag {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
  color: var(--gold-600);
}

.journey-interactive-preview {
  background: var(--bg-soft-gold);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}

.interactive-quote {
  font-family: var(--font-accent);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-600);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.45;
}

.journey-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.feature-point {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.feature-point-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-point-text h4 {
  font-size: 0.92rem;
  color: var(--text-title);
  margin-bottom: 0.15rem;
  font-weight: 800;
}

.feature-point-text p {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ==========================================================================
   SKINCARE LAB
   ========================================================================== */
.section-skincare {
  padding: 5rem 0;
  position: relative;
  background: #FAF8F4;
  border-top: 1px solid var(--border-gold);
}

.skincare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
}

.skincare-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-card);
}

.skincare-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.skincare-img-wrap {
  position: relative;
  height: 240px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  overflow: hidden;
}

.skincare-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius-xs);
  transition: transform var(--transition-fast);
}

.skincare-view-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  z-index: 10;
}

.skincare-toggle-btn {
  background: transparent;
  border: none;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--text-body);
}

.skincare-toggle-btn.active {
  background: var(--gold-gradient);
  color: #fff;
}

.skincare-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.skincare-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.4rem;
}

.skincare-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 0.3rem;
}

.skincare-key-actives {
  font-size: 0.78rem;
  color: var(--gold-600);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.skincare-desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

.skincare-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.3rem;
}

.skincare-features li {
  font-size: 0.78rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.skincare-features li span {
  color: var(--gold-500);
  font-weight: 800;
}

/* ==========================================================================
   BRAND STORY
   ========================================================================== */
.section-story {
  padding: 5rem 0;
  position: relative;
  background: #FFFFFF;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.story-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
}

.story-visual-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.story-content-wrap h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.story-quote-highlight {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-500);
  line-height: 1.5;
  margin-bottom: 1.3rem;
  border-left: 3px solid var(--gold-400);
  padding-left: 1rem;
  font-weight: 600;
}

.story-paragraphs p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.story-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-gold);
}

.pillar-item h4 {
  font-size: 0.95rem;
  color: var(--gold-600);
  margin-bottom: 0.25rem;
  font-weight: 800;
}

.pillar-item p {
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.45;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.section-reviews {
  padding: 5rem 0;
  position: relative;
  background: #FAF8F4;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.stars-row {
  color: var(--gold-400);
  font-size: 1rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.15rem;
}

.review-quote {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.author-info h5 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-title);
}

.author-info p {
  font-size: 0.72rem;
  color: var(--gold-500);
  font-weight: 600;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.section-faq {
  padding: 5rem 0;
  position: relative;
  background: #FFFFFF;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FAF8F5;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-header {
  padding: 1.2rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-title);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold-500);
  font-weight: 800;
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.6rem;
}

.faq-item.open .faq-body {
  padding-bottom: 1.3rem;
}

.faq-answer {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   MODAL & CART DRAWER
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 24, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content-wrapper {
  background: #FFFFFF;
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-md);
  max-width: 950px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.6rem;
  border-bottom: 1px solid var(--border-gold);
  background: var(--bg-soft-gold);
}

.modal-title-box h3 {
  font-size: 1.2rem;
  color: var(--text-title);
}

.modal-title-box p {
  font-size: 0.74rem;
  color: var(--gold-600);
  text-transform: uppercase;
  font-weight: 700;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-title);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.modal-body-scroll {
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FAF8F5;
}

.modal-brochure-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-gold);
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: #FFFFFF;
  border-left: 2px solid var(--gold-400);
  z-index: 1060;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-soft-gold);
}

.cart-drawer-header h3 {
  font-size: 1.2rem;
  color: var(--text-title);
}

.cart-free-shipping-bar {
  padding: 0.8rem 1.6rem;
  background: var(--gold-100);
  border-bottom: 1px solid var(--border-gold);
  font-size: 0.76rem;
}

.shipping-text {
  display: flex;
  justify-content: space-between;
  color: var(--gold-600);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.shipping-progress {
  height: 5px;
  background: rgba(184, 142, 56, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  width: 60%;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.3rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #FAF8F5;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color: var(--text-muted);
  gap: 0.8rem;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  padding: 0.75rem;
  border-radius: var(--radius-xs);
}

.cart-item-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.cart-item-info h4 {
  font-size: 0.88rem;
  color: var(--text-title);
  margin-bottom: 0.15rem;
}

.cart-item-info p {
  font-size: 0.76rem;
  color: var(--gold-500);
  font-weight: 700;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg-soft-gold);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xs);
  padding: 0.15rem 0.35rem;
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--text-title);
  cursor: pointer;
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
  font-weight: 700;
}

.qty-val {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-title);
}

.cart-drawer-footer {
  padding: 1.3rem 1.6rem;
  border-top: 1px solid var(--border-subtle);
  background: #FFFFFF;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-subtotal-row strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-500);
}

.cart-checkout-btn-wa {
  width: 100%;
  background: linear-gradient(135deg, #0e8550 0%, #1db954 100%);
  color: #fff;
  padding: 0.9rem;
  border-radius: var(--radius-full);
  border: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  transition: transform var(--transition-fast);
}

.cart-checkout-btn-card {
  width: 100%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  padding: 0.85rem;
  border-radius: var(--radius-full);
  border: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform var(--transition-fast);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #FFFFFF;
  border-top: 2px solid var(--gold-400);
  padding: 4rem 0 1.8rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-desc {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 340px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--text-body);
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  margin-top: 0.3rem;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.contact-detail-line {
  display: flex;
  gap: 0.45rem;
  line-height: 1.45;
}

.contact-lbl {
  font-weight: 700;
  color: var(--gold-600);
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-val {
  color: var(--text-title);
  word-break: break-word;
}

.contact-val a {
  color: var(--gold-600);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-val a:hover {
  color: var(--gold-500);
  text-decoration: underline;
}

.footer-col h4 {
  font-size: 0.88rem;
  color: var(--gold-600);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-500);
}

.footer-newsletter-wrap {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.footer-input {
  background: var(--bg-soft-gold);
  border: 1px solid var(--border-gold);
  color: var(--text-title);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  flex-grow: 1;
}

.footer-bottom-row {
  border-top: 1px solid var(--border-gold);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-sub);
}

.developer-credit {
  color: var(--text-sub);
  font-size: 0.8rem;
}

.developer-credit a {
  color: var(--gold-600);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.developer-credit a:hover {
  color: var(--gold-500);
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .brochure-showcase-wrap, .journey-pyramid-grid, .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Hide ONLY the Top Announcement Bar ("COMPLIMENTARY DISCOVERY SAMPLES...") on Mobile */
  .top-bar {
    display: none !important;
  }

  .nav-container {
    height: 68px;
  }

  .brand-emblem-badge {
    height: 48px;
    min-width: 115px;
    padding: 3px 10px;
  }

  .brand-logo-img {
    height: 40px;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .btn-luxury-call,
  .btn-luxury-wa {
    padding: 0.36rem 0.65rem;
    font-size: 0.72rem;
  }

  .nav-menu {
    display: none;
  }
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 2px solid var(--gold-400);
    padding: 1.5rem;
    gap: 1.2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  .mobile-nav-toggle {
    display: block;
  }
  .quiz-result-box {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

/* ==========================================================================
   FLOATING QUICK CONTACT (CALL & WHATSAPP)
   ========================================================================== */
.floating-quick-contact {
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}

.floating-btn-wa {
  background: linear-gradient(135deg, #0e8550 0%, #25d366 100%);
  color: #FFFFFF !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.45rem;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  border: 2px solid #FFFFFF;
}

.floating-btn-wa:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
}

.floating-btn-call {
  background: #FFFFFF;
  color: var(--text-title) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 6px 18px rgba(184, 142, 56, 0.22);
  transition: all var(--transition-fast);
  border: 1.5px solid var(--border-gold-strong);
}

.floating-btn-call:hover {
  background: var(--bg-soft-gold);
  border-color: var(--gold-500);
  transform: translateY(-3px) scale(1.06);
}

.floating-btn-wa svg {
  width: 27px;
  height: 27px;
  display: block;
}

.floating-btn-call svg {
  width: 21px;
  height: 21px;
  display: block;
}

/* ==========================================================================
   SOCIAL MEDIA SECTION (MINIMAL LUXURY: ICON + NAME ONLY)
   ========================================================================== */
.section-social-hub {
  padding: 4.5rem 0;
  position: relative;
  background: 
    radial-gradient(circle at 80% 20%, rgba(245, 235, 215, 0.4) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 10% 80%, rgba(250, 243, 230, 0.4) 0%, rgba(255, 255, 255, 0) 50%),
    #FAF8F4;
  border-top: 1px solid var(--border-gold);
}

.social-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  max-width: 1050px;
  margin: 0 auto;
}

.social-channel-card {
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
  text-decoration: none !important;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.social-channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.social-channel-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-hover);
  background: #FFFFFF;
}

.social-channel-card:hover::before {
  opacity: 1;
}

.channel-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.social-channel-card:hover .channel-icon-circle {
  transform: scale(1.1);
}

.ig-gradient {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF;
}

.fb-gradient {
  background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
  color: #FFFFFF;
}

.wa-gradient {
  background: linear-gradient(135deg, #0e8550 0%, #25d366 100%);
  color: #FFFFFF;
}

.call-gradient {
  background: linear-gradient(135deg, #b88e38 0%, #d8b75b 100%);
  color: #FFFFFF;
}

.web-gradient {
  background: linear-gradient(135deg, #141418 0%, #2a2a34 100%);
  color: #d8b75b;
}

.mail-gradient {
  background: linear-gradient(135deg, #ea4335 0%, #d44638 100%);
  color: #FFFFFF;
}

.channel-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-title);
  margin: 0;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.social-channel-card:hover .channel-title {
  color: var(--gold-600);
}

/* Footer Social Icons Row */
.footer-social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.footer-social-icon:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: var(--gold-500);
  transform: translateY(-2px);
}
