/* ==========================================================================
   SMELL HOUSE - Premium Perfume Product Page
   ========================================================================== */

/* ==========================================================================
   1. CSS RESET & BASE
   ========================================================================== */
:root {
  /* Brand Colors */
  --forest-green: #173D2D;
  --warm-walnut: #5B3424;
  --antique-gold: #C79A45;
  --warm-ivory: #F3E8D1;
  --charcoal-black: #1A1A18;
  --gold-gradient: linear-gradient(135deg, #C79A45, #E8C97A, #C79A45);

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  --reveal-bezier: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background-color: var(--charcoal-black);
  color: var(--warm-ivory);
  font-family: var(--font-body);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--forest-green);
  color: var(--antique-gold);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--charcoal-black);
}
::-webkit-scrollbar-thumb {
  background: var(--antique-gold);
  border-radius: 3px;
}

/* ==========================================================================
   2. CURSOR & INTERACTIVITY
   ========================================================================== */
a, button, [role="button"], input[type="radio"], input[type="submit"], 
.thumb, .size-option, .qty-btn, .order-btn, .floating-buy-now, 
.whatsapp-float, .deal-action-btn, .video-container, .sound-toggle-btn, .play-btn, .gallery-item {
  cursor: pointer;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, .h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: 0.05em;
  color: var(--antique-gold);
  font-weight: 400;
}

h2, .h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: 0.03em;
  font-weight: 400;
}

h3, .h3 {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
}

p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(243, 232, 209, 0.8);
}

.section-label {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: var(--antique-gold);
  margin-bottom: 1rem;
  display: block;
}

/* ==========================================================================
   4. PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--charcoal-black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease;
}

#preloader .brand-icon,
#preloader .brand-name {
  animation: pulse 2s infinite ease-in-out;
}

#preloader.loaded {
  opacity: 0;
  pointer-events: none;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* ==========================================================================
   5. NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.4s ease, border-bottom 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(26, 26, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(199, 154, 69, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo svg, .nav-logo img {
  width: 28px;
  height: 28px;
  color: var(--antique-gold);
  fill: var(--antique-gold);
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--antique-gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-accent);
  color: var(--warm-ivory);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--antique-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid var(--antique-gold);
  padding: 0.6rem 1.8rem;
  color: var(--antique-gold);
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-cta:hover {
  background-color: var(--antique-gold);
  color: var(--charcoal-black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--antique-gold);
  transition: all 0.3s ease;
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--charcoal-black);
  background-image: url('../images/hero-detail.jpg');
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  filter: brightness(0.85) contrast(1.05);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(23, 61, 45, 0.38) 0%, rgba(26, 26, 24, 0.65) 65%, rgba(26, 26, 24, 0.88) 100%),
              linear-gradient(to bottom, rgba(26, 26, 24, 0.45) 0%, transparent 20%, transparent 75%, var(--charcoal-black) 100%);
  z-index: 1;
  pointer-events: none;
}

.smoke-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.smoke-particle {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(circle, rgba(243, 232, 209, 0.08), transparent);
  border-radius: 50%;
  animation: smoke-rise 8s ease-in-out infinite;
}

.smoke-particle:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-delay: 0s; }
.smoke-particle:nth-child(2) { width: 60px; height: 60px; left: 30%; animation-delay: 2s; }
.smoke-particle:nth-child(3) { width: 30px; height: 30px; left: 50%; animation-delay: 4s; }
.smoke-particle:nth-child(4) { width: 80px; height: 80px; left: 70%; animation-delay: 1s; }
.smoke-particle:nth-child(5) { width: 50px; height: 50px; left: 90%; animation-delay: 5s; }

@keyframes smoke-rise {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(50px) scale(3); opacity: 0; }
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 0 2rem;
}

.hero-label {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.75rem;
  color: var(--antique-gold);
  margin-bottom: 2rem;
  display: block;
}

.hero-title {
  text-shadow: 0 0 60px rgba(199, 154, 69, 0.3);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--warm-ivory);
  font-style: italic;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite ease-in-out;
  z-index: 2;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--antique-gold);
  fill: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.hero-whisper {
  position: absolute;
  bottom: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(243, 232, 209, 0.4);
  font-family: var(--font-accent);
  font-style: italic;
  z-index: 2;
}

/* ==========================================================================
   7. ANTI-SELL SECTION
   ========================================================================== */
.anti-sell-section {
  background-color: var(--charcoal-black);
  padding: 10rem 2rem;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.anti-sell-title {
  color: var(--warm-ivory);
  line-height: 1.1;
  margin-bottom: 3rem;
}

.anti-sell-copy {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(243, 232, 209, 0.7);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
  font-style: italic;
}

.anti-sell-divider,
.gold-divider {
  width: 60px;
  height: 1px;
  background-color: var(--antique-gold);
  margin: 3rem auto;
  border: none;
}

.anti-sell-closer {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--antique-gold);
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* ==========================================================================
   8. SCENT JOURNEY SECTION
   ========================================================================== */
.scent-journey-section {
  background-color: var(--forest-green);
  padding: 8rem 2rem;
}

.scent-pyramid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.note-layer {
  padding: 3rem;
  border-left: 2px solid rgba(199, 154, 69, 0.3);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.note-layer.revealed {
  opacity: 1;
  transform: translateY(0);
}

.note-layer::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  background-color: var(--antique-gold);
  border-radius: 50%;
}

.note-layer-header {
  margin-bottom: 1.5rem;
}

.note-layer-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--antique-gold);
}

.note-layer-time {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: rgba(243, 232, 209, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.5rem;
}

.note-layer-desc {
  font-family: var(--font-body);
  color: rgba(243, 232, 209, 0.7);
  margin-bottom: 2rem;
}

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

.note-item {
  background-color: rgba(243, 232, 209, 0.05);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(199, 154, 69, 0.1);
  transition: all 0.3s ease;
}

.note-item:hover {
  background-color: rgba(199, 154, 69, 0.1);
  border-color: rgba(199, 154, 69, 0.3);
  transform: translateY(-3px);
}

.note-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.note-name {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--warm-ivory);
  letter-spacing: 0.1em;
}

.dna-strip {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  border-top: 1px solid rgba(199, 154, 69, 0.2);
  border-bottom: 1px solid rgba(199, 154, 69, 0.2);
}

.dna-strip span {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--antique-gold);
  letter-spacing: 0.15em;
}

/* ==========================================================================
   9. GALLERY SECTION
   ========================================================================== */
.gallery-section {
  background-color: var(--warm-ivory);
  padding: 8rem 2rem;
  color: var(--charcoal-black);
}

.gallery-section .section-label,
.gallery-section h2,
.gallery-section p {
  color: var(--charcoal-black);
}

.gallery-grid {
  max-width: 1400px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-family: var(--font-accent);
  color: var(--warm-ivory);
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   10. BOTTLE STORY SECTION
   ========================================================================== */
.bottle-story-section {
  background-color: var(--charcoal-black);
  padding: 8rem 2rem;
}

.bottle-features {
  max-width: 1200px;
  margin: 4rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: rgba(243, 232, 209, 0.03);
  border: 1px solid rgba(199, 154, 69, 0.15);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card:hover {
  border-color: var(--antique-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--antique-gold);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--antique-gold);
  margin-bottom: 1rem;
}

.feature-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(243, 232, 209, 0.65);
  line-height: 1.7;
}

.tilt-container {
  perspective: 1000px;
  margin-top: 4rem;
  text-align: center;
}

.bottle-hero-image {
  width: 100%;
  max-width: 800px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* ==========================================================================
   11. BRAND STORY SECTION
   ========================================================================== */
.brand-story-section {
  background-color: var(--warm-ivory);
  padding: 10rem 2rem;
  text-align: center;
  color: var(--charcoal-black);
}

.story-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-style: italic;
  color: var(--charcoal-black);
  max-width: 900px;
  margin: 0 auto 4rem;
  line-height: 1.4;
  position: relative;
}

.story-quote::before, .story-quote::after {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--antique-gold);
  opacity: 0.3;
  position: absolute;
}

.story-quote::before {
  content: '“';
  top: -2rem;
  left: -2rem;
}

.story-quote::after {
  content: '”';
  bottom: -3rem;
  right: -1rem;
}

.story-paragraph {
  font-family: var(--font-body);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: rgba(26, 26, 24, 0.75);
  line-height: 1.9;
}

.story-signature {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--charcoal-black);
  letter-spacing: 0.1em;
  margin-top: 3rem;
  font-weight: 700;
  display: block;
}

.brand-values {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(26, 26, 24, 0.1);
}

.value-item {
  text-align: center;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.value-name {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--charcoal-black);
}

/* ==========================================================================
   12. SOCIAL PROOF SECTION
   ========================================================================== */
.social-proof-section {
  background-color: var(--forest-green);
  padding: 3rem 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--warm-ivory);
  padding: 0 2rem;
  font-style: italic;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.marquee-diamond {
  color: var(--antique-gold);
  padding: 0 1rem;
}

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

/* ==========================================================================
   13. PRODUCTS SECTION
   ========================================================================== */
.products-section {
  background-color: var(--charcoal-black);
  padding: 8rem 2rem;
  text-align: center;
}

.products-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(243, 232, 209, 0.6);
  margin-bottom: 4rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.size-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.size-card {
  background-color: rgba(243, 232, 209, 0.03);
  border: 1px solid rgba(199, 154, 69, 0.1);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.size-card:hover {
  border-color: var(--antique-gold);
  transform: translateY(-8px);
}

.size-card.featured {
  border-color: var(--antique-gold);
  background-color: rgba(199, 154, 69, 0.08);
}

.size-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--antique-gold);
  color: var(--charcoal-black);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 1rem;
  font-family: var(--font-accent);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.size-name {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--antique-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.size-volume {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--warm-ivory);
  margin-bottom: 1rem;
  display: block;
}

.size-unit {
  font-size: 1rem;
}

.size-description {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(243, 232, 209, 0.5);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.size-price {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--antique-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.size-cta {
  display: inline-block;
  border: 1px solid var(--antique-gold);
  color: var(--antique-gold);
  padding: 0.7rem 2rem;
  text-decoration: none;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.size-cta:hover {
  background-color: var(--antique-gold);
  color: var(--charcoal-black);
}

.fragrance-badge {
  text-align: center;
  margin-top: 4rem;
  font-family: var(--font-accent);
  color: rgba(243, 232, 209, 0.4);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

/* ==========================================================================
   14. FAQ SECTION
   ========================================================================== */
.faq-section {
  background-color: var(--warm-ivory);
  padding: 8rem 2rem;
  color: var(--charcoal-black);
}

.faq-section h2, .faq-section .section-label {
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 26, 24, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--charcoal-black);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--warm-walnut);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--charcoal-black);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(26, 26, 24, 0.65);
  line-height: 1.8;
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.footer-section {
  background-color: var(--forest-green);
  padding: 6rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 700px;
  margin: 0 auto;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--antique-gold);
  margin-bottom: 1.5rem;
}

.footer-whisper {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(243, 232, 209, 0.5);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.footer-cta {
  display: inline-block;
  background-color: var(--antique-gold);
  color: var(--charcoal-black);
  padding: 1rem 3rem;
  text-decoration: none;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 2px;
}

.footer-cta:hover {
  background-color: #E8C97A;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(199, 154, 69, 0.3);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(243, 232, 209, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: var(--antique-gold);
  background-color: rgba(199, 154, 69, 0.1);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: var(--warm-ivory);
}

.footer-brand {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(243, 232, 209, 0.1);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--antique-gold);
  letter-spacing: 0.15em;
  display: block;
}

.footer-brand-tagline {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: rgba(243, 232, 209, 0.5);
  font-style: italic;
  margin-top: 0.5rem;
  display: block;
}

.footer-brand-origin {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(243, 232, 209, 0.3);
  margin-top: 0.5rem;
  display: block;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243, 232, 209, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(243, 232, 209, 0.3);
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(243, 232, 209, 0.3);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--antique-gold);
}

/* ==========================================================================
   16. SCROLL ANIMATIONS
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--reveal-bezier);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.revealed:nth-child(1) { transition-delay: 0s; }
.revealed:nth-child(2) { transition-delay: 0.15s; }
.revealed:nth-child(3) { transition-delay: 0.3s; }
.revealed:nth-child(4) { transition-delay: 0.45s; }
.revealed:nth-child(5) { transition-delay: 0.6s; }
.revealed:nth-child(6) { transition-delay: 0.75s; }

.reveal-text .anti-sell-title {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.reveal-text .anti-sell-copy {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal-text .gold-divider {
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.6s ease;
}

.reveal-text .anti-sell-closer {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal-text.revealed .anti-sell-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.reveal-text.revealed .anti-sell-copy:nth-of-type(1) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-text.revealed .anti-sell-copy:nth-of-type(2) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-text.revealed .anti-sell-copy:nth-of-type(3) {
  transition-delay: 0.7s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-text.revealed .gold-divider {
  transition-delay: 0.9s;
  opacity: 1;
  transform: scaleX(1);
}

.reveal-text.revealed .anti-sell-closer {
  transition-delay: 1.1s;
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   17. GOLD SHIMMER ANIMATION
   ========================================================================== */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(90deg, #C79A45 0%, #E8C97A 25%, #C79A45 50%, #E8C97A 75%, #C79A45 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ==========================================================================
   18. MISSING ELEMENT STYLES
   ========================================================================== */

/* Section Header - used in multiple sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Preloader content wrapper */
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: pulse 2s infinite ease-in-out;
}

.preloader-content .house-icon {
  width: 48px;
  height: 48px;
  color: var(--antique-gold);
  stroke: var(--antique-gold);
}

.preloader-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--antique-gold);
  letter-spacing: 0.3em;
}

/* Marquee separator */
.marquee-sep {
  color: var(--antique-gold);
  padding: 0 1rem;
  font-size: 0.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}



/* Nav right alignment */
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Hamburger active state (X shape) */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Size card inner elements (matching HTML structure) */
.size-card .size-icon {
  color: var(--antique-gold);
  margin-bottom: 1.5rem;
}

.size-card .size-icon svg {
  stroke: var(--antique-gold);
}

.size-card h3 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--antique-gold);
  margin-bottom: 0.5rem;
}

.size-card .volume {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--warm-ivory);
  margin-bottom: 1rem;
  display: block;
}

.size-card p {
  font-size: 0.9rem;
  color: rgba(243, 232, 209, 0.5);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.size-card .price {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--antique-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.badge-popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--antique-gold);
  color: var(--charcoal-black);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 1rem;
  font-family: var(--font-accent);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--antique-gold);
  color: var(--antique-gold);
  padding: 0.7rem 2rem;
  text-decoration: none;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--antique-gold);
  color: var(--charcoal-black);
}

.fragrance-family-badge {
  text-align: center;
  margin-top: 4rem;
  font-family: var(--font-accent);
  color: rgba(243, 232, 209, 0.4);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

/* Size card glow effect (mouse follow) */
.size-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(199, 154, 69, 0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.size-card:hover::after {
  opacity: 1;
}

/* Footer brand inner elements */
.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--antique-gold);
  letter-spacing: 0.15em;
  display: block;
  margin-top: 0.5rem;
}

.footer-brand p {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: rgba(243, 232, 209, 0.5);
  font-style: italic;
  margin-top: 0.5rem;
}

.footer-brand .made-in {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(243, 232, 209, 0.3);
  font-style: normal;
}

.footer-brand .house-icon-small {
  color: var(--antique-gold);
  stroke: var(--antique-gold);
}

/* Footer separator */
.footer-legal .separator {
  color: rgba(243, 232, 209, 0.15);
}

/* Subtitle in product section */
.products-section .subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(243, 232, 209, 0.6);
  max-width: 500px;
  margin: 1rem auto 0;
}

/* FAQ section label centering */
.faq-section .section-label {
  color: var(--warm-walnut);
}

/* Gallery section label on ivory bg */
.gallery-section .section-label {
  color: var(--warm-walnut);
}



/* Smooth DNA strip text */
.dna-strip {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--antique-gold);
  letter-spacing: 0.15em;
}

/* ==========================================================================
   SHOP / ECOMMERCE SECTION
   ========================================================================== */
.shop-section {
  background-color: var(--charcoal-black);
  padding: 8rem 2rem;
}

.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: 100px;
}

.gallery-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(243, 232, 209, 0.03);
  border: 1px solid rgba(199, 154, 69, 0.1);
}

.main-product-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.main-product-img:hover {
  transform: scale(1.03);
}

.img-zoom-hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 26, 24, 0.7);
  color: var(--warm-ivory);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-family: var(--font-accent);
  letter-spacing: 0.1em;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.img-zoom-hint svg {
  stroke: var(--warm-ivory);
}

.gallery-main:hover .img-zoom-hint {
  opacity: 1;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.thumb {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
  background: none;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 1/1;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb.active {
  border-color: var(--antique-gold);
}

.thumb:hover {
  border-color: rgba(199, 154, 69, 0.5);
}

/* Product Info */
.product-info {
  color: var(--warm-ivory);
}

.product-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--antique-gold);
  border: 1px solid rgba(199, 154, 69, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--antique-gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-tagline {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: rgba(243, 232, 209, 0.6);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stars {
  color: #FFD700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: rgba(243, 232, 209, 0.5);
  letter-spacing: 0.1em;
}

.product-signature {
  background: rgba(199, 154, 69, 0.08);
  border: 1px solid rgba(199, 154, 69, 0.15);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.sig-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(243, 232, 209, 0.4);
  display: block;
  margin-bottom: 0.5rem;
}

.sig-notes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sig-note {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--warm-ivory);
}

.sig-dot {
  color: rgba(199, 154, 69, 0.4);
}

.product-description {
  font-size: 0.95rem;
  color: rgba(243, 232, 209, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Size Selector */
.size-selector {
  margin-bottom: 1.5rem;
}

.selector-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(243, 232, 209, 0.5);
  display: block;
  margin-bottom: 0.75rem;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.size-option {
  cursor: pointer;
}

.size-option input[type="radio"] {
  display: none;
}

.size-btn {
  border: 1px solid rgba(199, 154, 69, 0.15);
  border-radius: 10px;
  padding: 1rem 0.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  background: transparent;
}

.size-option input:checked + .size-btn {
  border-color: var(--antique-gold);
  background: rgba(199, 154, 69, 0.1);
  box-shadow: 0 0 20px rgba(199, 154, 69, 0.1);
}

.size-btn:hover {
  border-color: rgba(199, 154, 69, 0.4);
}

.size-vol {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--warm-ivory);
  margin-bottom: 0.2rem;
}

.size-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(243, 232, 209, 0.5);
}

.size-price-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--antique-gold);
  margin-top: 0.5rem;
}

.popular-size {
  position: relative;
}

.popular-badge-sm {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--antique-gold);
  color: var(--charcoal-black);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  padding: 0.15rem 0.5rem;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  font-family: var(--font-accent);
}

/* Quantity Selector */
.quantity-selector {
  margin-bottom: 2rem;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(199, 154, 69, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--antique-gold);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.qty-btn:hover {
  background: rgba(199, 154, 69, 0.1);
}

.qty-value {
  width: 50px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--warm-ivory);
  border-left: 1px solid rgba(199, 154, 69, 0.2);
  border-right: 1px solid rgba(199, 154, 69, 0.2);
  line-height: 44px;
}

/* Order Button */
.order-btn {
  width: 100%;
  padding: 1.1rem 2rem;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s;
  font-weight: 600;
  text-transform: uppercase;
}

.order-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.order-btn:active {
  transform: translateY(0);
}

.order-btn svg {
  flex-shrink: 0;
}

.order-note {
  font-size: 0.8rem;
  color: rgba(243, 232, 209, 0.4);
  margin-top: 0.75rem;
  text-align: center;
  font-family: var(--font-accent);
  font-style: italic;
}

/* Product Specs */
.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(199, 154, 69, 0.1);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-item svg {
  stroke: var(--antique-gold);
  flex-shrink: 0;
}

.spec-item span {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: rgba(243, 232, 209, 0.6);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   VIDEO REVIEWS SECTION
   ========================================================================== */
.reviews-section {
  background: var(--forest-green);
  padding: 8rem 2rem;
}

.reviews-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(243, 232, 209, 0.5);
  margin-top: 0.5rem;
  font-size: 1rem;
}

.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(243, 232, 209, 0.03);
  border: 1px solid rgba(199, 154, 69, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s;
}

.review-card:hover {
  border-color: rgba(199, 154, 69, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #0d1f17;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
}

.review-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-container:hover .review-video {
  transform: scale(1.02);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 24, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 2;
}

.video-container.is-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

.video-container.is-playing:hover .play-overlay {
  opacity: 0.85;
  background: rgba(26, 26, 24, 0.4);
  pointer-events: auto;
}

.play-btn {
  width: 58px;
  height: 58px;
  background: rgba(199, 154, 69, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-black);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.play-btn .play-icon {
  margin-left: 3px;
  display: block;
}

.play-btn .pause-icon {
  display: none;
}

.video-container.is-playing .play-btn .play-icon {
  display: none;
}

.video-container.is-playing .play-btn .pause-icon {
  display: block;
}

.video-container:hover .play-btn {
  transform: scale(1.08);
  background: var(--antique-gold);
}

.sound-toggle-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  background: rgba(26, 26, 24, 0.85);
  border: 1px solid rgba(199, 154, 69, 0.4);
  color: var(--warm-ivory);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  z-index: 4;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.sound-toggle-btn .sound-text {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

.sound-toggle-btn:not(.is-muted) {
  background: rgba(23, 61, 45, 0.9);
  border-color: #25D366;
  color: #5CFF9B;
}

.sound-toggle-btn:hover {
  background: var(--antique-gold);
  color: var(--charcoal-black);
  transform: scale(1.05);
}

.sound-toggle-btn.is-muted .sound-muted-icon {
  display: block;
}

.sound-toggle-btn.is-muted .sound-on-icon {
  display: none;
}

.sound-toggle-btn:not(.is-muted) .sound-muted-icon {
  display: none;
}

.sound-toggle-btn:not(.is-muted) .sound-on-icon {
  display: block;
}

.video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 3;
}

.video-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--antique-gold);
  transition: width 0.1s linear;
}

.review-info {
  padding: 1.25rem 1.5rem;
}

.reviewer-stars {
  color: #FFD700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--warm-ivory);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.verified-badge {
  font-size: 0.72rem;
  color: #25D366;
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.reviewer-bottle {
  font-size: 0.8rem;
  color: var(--antique-gold);
  font-family: var(--font-accent);
  display: block;
  margin-bottom: 0.6rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

.review-text {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: rgba(243, 232, 209, 0.65);
  font-style: italic;
  line-height: 1.6;
}

/* ==========================================================================
   WHATSAPP VOICE NOTES SECTION
   ========================================================================== */
.voice-notes-section {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(199, 154, 69, 0.2);
}

.voice-notes-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.whatsapp-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.15);
}

.whatsapp-pill-badge svg {
  flex-shrink: 0;
  fill: #25D366;
}

.voice-notes-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--warm-ivory);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.voice-notes-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(243, 232, 209, 0.6);
  font-size: 1.05rem;
  line-height: 1.6;
}

.voice-notes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.voice-note-card {
  background: rgba(17, 36, 28, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(199, 154, 69, 0.2);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.voice-note-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.voice-note-card:hover {
  border-color: rgba(37, 211, 102, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(37, 211, 102, 0.1);
}

.voice-note-card:hover::before {
  opacity: 1;
}

.vn-sender-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.vn-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f2d20 0%, #25D366 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 2px solid rgba(37, 211, 102, 0.35);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.vn-sender-info {
  flex: 1;
  min-width: 0;
}

.vn-name-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.vn-sender-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--warm-ivory);
  margin: 0;
}

.vn-verified-badge {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 0.15rem 0.55rem;
  border-radius: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.vn-sub-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(243, 232, 209, 0.5);
  margin-top: 0.2rem;
}

.vn-dot {
  color: var(--antique-gold);
}

.vn-bottle {
  color: var(--antique-gold);
  font-family: var(--font-accent);
  font-style: italic;
}

/* WhatsApp Bubble Audio Player */
.whatsapp-bubble-player {
  background: rgba(12, 32, 24, 0.85);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 14px;
  padding: 1.1rem 1.25rem 0.85rem;
  position: relative;
  transition: all 0.3s ease;
  user-select: none;
}

.whatsapp-bubble-player::before {
  content: '';
  position: absolute;
  top: 14px;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid rgba(12, 32, 24, 0.85);
}

.whatsapp-bubble-player.is-playing {
  border-color: rgba(37, 211, 102, 0.6);
  background: rgba(16, 44, 32, 0.95);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.18);
}

.vn-controls {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.vn-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.vn-play-btn:hover {
  transform: scale(1.08);
  background: #1eb956;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.vn-play-btn:active {
  transform: scale(0.96);
}

.vn-icon-play {
  margin-left: 2px;
  display: block;
}

.vn-icon-pause {
  display: none;
}

.whatsapp-bubble-player.is-playing .vn-icon-play {
  display: none;
}

.whatsapp-bubble-player.is-playing .vn-icon-pause {
  display: block;
}

.vn-waveform-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vn-waveform {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 28px;
  cursor: pointer;
  padding: 2px 0;
}

.vn-bar {
  flex: 1;
  min-width: 2px;
  max-width: 4px;
  border-radius: 2px;
  background: rgba(243, 232, 209, 0.32);
  transition: background 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}

.vn-waveform:hover .vn-bar {
  background: rgba(243, 232, 209, 0.5);
}

.vn-bar.is-played {
  background: #53BDEB !important; /* WhatsApp iconic played blue */
}

.whatsapp-bubble-player.is-playing .vn-bar.is-current {
  background: #25D366 !important;
  transform: scaleY(1.2);
}

.vn-timer-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(243, 232, 209, 0.6);
  letter-spacing: 0.02em;
}

.vn-time-current {
  color: var(--warm-ivory);
  font-weight: 500;
}

.vn-time-sep {
  color: rgba(243, 232, 209, 0.35);
}

.vn-time-duration {
  color: rgba(243, 232, 209, 0.5);
}

.vn-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(243, 232, 209, 0.08);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  color: rgba(243, 232, 209, 0.45);
}

.vn-timestamp {
  font-size: 0.72rem;
}

.vn-ticks {
  display: inline-flex;
  align-items: center;
}

.vn-ticks svg {
  display: block;
}

/* Quote Highlight Box */
.vn-quote-box {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-left: 2px solid var(--antique-gold);
  background: rgba(243, 232, 209, 0.035);
  border-radius: 0 8px 8px 0;
}

.vn-quote-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(243, 232, 209, 0.75);
  margin: 0;
}

/* Written Reviews */
.written-reviews {
  max-width: 800px;
  margin: 4rem auto 0;
}

.reviews-sub-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--antique-gold);
  margin-bottom: 2rem;
  text-align: center;
}

.written-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.written-review {
  background: rgba(243, 232, 209, 0.03);
  border: 1px solid rgba(199, 154, 69, 0.1);
  border-radius: 12px;
  padding: 1.5rem 2rem;
}

.wr-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.wr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--antique-gold);
  color: var(--charcoal-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.wr-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.wr-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--warm-ivory);
}

.wr-stars {
  color: #FFD700;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.wr-date {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: rgba(243, 232, 209, 0.4);
  margin-left: auto;
}

.wr-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(243, 232, 209, 0.65);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.wr-verified {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--antique-gold);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  fill: white;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 26, 24, 0.9);
  color: var(--warm-ivory);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ==========================================================================
   IMAGE ZOOM MODAL
   ========================================================================== */
.zoom-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 24, 0.95);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

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

.zoom-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--warm-ivory);
  font-size: 2.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
  z-index: 1;
}

.zoom-close:hover {
  color: var(--antique-gold);
}

.zoom-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   BUNDLE DEALS, PRICING & FLOATING BUY NOW
   ========================================================================== */
.size-options-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.quantity-bundle-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

/* 25% Off Deal Card */
.bundle-deal-card {
  background: linear-gradient(135deg, rgba(199, 154, 69, 0.12), rgba(23, 61, 45, 0.4));
  border: 1px solid rgba(199, 154, 69, 0.35);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.bundle-deal-card:hover {
  border-color: var(--antique-gold);
  background: linear-gradient(135deg, rgba(199, 154, 69, 0.18), rgba(23, 61, 45, 0.5));
}

.deal-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.deal-tag {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--antique-gold);
  font-weight: 600;
  text-transform: uppercase;
}

.deal-title {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--warm-ivory);
}

.deal-title strong {
  color: #FFD700;
  font-weight: 700;
}

.deal-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #C79A45, #E8C97A);
  color: var(--charcoal-black);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(199, 154, 69, 0.3);
}

.deal-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 154, 69, 0.5);
  background: linear-gradient(135deg, #E8C97A, #C79A45);
}

.deal-action-btn.active {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Price Summary Box */
.price-summary-box {
  background: rgba(243, 232, 209, 0.03);
  border: 1px solid rgba(199, 154, 69, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}

.p-label {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: rgba(243, 232, 209, 0.7);
  letter-spacing: 0.05em;
}

.p-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--warm-ivory);
}

.discount-row .p-label {
  color: #E8C97A;
}

.discount-val {
  color: #25D366 !important;
  font-weight: 700;
}

.total-row {
  margin-top: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(199, 154, 69, 0.2);
}

.total-row .p-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--warm-ivory);
}

.total-val-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.old-total {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(243, 232, 209, 0.4);
  text-decoration: line-through;
}

.final-total {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #FFD700;
  font-weight: 700;
}

.savings-alert {
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #5CFF9B;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 0.05em;
  animation: pulseGreen 2s infinite ease-in-out;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; transform: scale(1.01); }
}

/* ==========================================================================
   FLOATING BUY NOW BUTTON
   ========================================================================== */
.floating-buy-now {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(26, 26, 24, 0.95);
  border: 1px solid var(--antique-gold);
  border-radius: 50px;
  padding: 0.65rem 1.4rem;
  color: var(--warm-ivory);
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(199, 154, 69, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-buy-now:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, rgba(23, 61, 45, 0.95), rgba(26, 26, 24, 0.95));
  border-color: #E8C97A;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(199, 154, 69, 0.4);
}

.float-buy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(199, 154, 69, 0.2);
  color: var(--antique-gold);
  flex-shrink: 0;
}

.float-buy-content {
  display: flex;
  flex-direction: column;
}

.float-buy-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--warm-ivory);
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.2;
}

.float-buy-badge {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  color: #FFD700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   MASTER RESPONSIVE DESIGN
   ========================================================================== */

/* Universal Mobile Safety Constraint */
@media (max-width: 768px) {
  *, *::before, *::after {
    max-width: 100%;
  }

  img, video, iframe {
    max-width: 100%;
    height: auto;
  }

  h1, h2, h3, h4, p, span, a, button, blockquote {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }
}

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .navbar {
    padding: 1.25rem 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottle-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .product-gallery {
    position: static;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  /* Navigation */
  .navbar {
    padding: 1rem 1.25rem;
  }
  .nav-right {
    gap: 1rem;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--charcoal-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }
  .nav-cta {
    display: none;
  }

  /* Universal Section Padding & Overflow */
  .hero-section,
  .anti-sell-section,
  .scent-journey-section,
  .gallery-section,
  .bottle-story-section,
  .brand-story-section,
  .shop-section,
  .reviews-section,
  .faq-section,
  .footer-section {
    padding: 4rem 1.25rem;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* 1. Hero Section */
  .hero-section {
    padding: 7rem 1.25rem 5rem;
    min-height: 100vh;
  }
  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
    line-height: 1.1;
  }
  .hero-label {
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    margin-bottom: 1.25rem;
  }
  .hero-tagline {
    font-size: 1.15rem;
    padding: 0 0.5rem;
  }
  .hero-whisper {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 0 1rem;
  }
  .scroll-indicator {
    bottom: 2.5rem;
  }

  /* 2. Anti-Sell Section */
  .anti-sell-section {
    min-height: auto;
    padding: 5rem 1.25rem;
  }
  .anti-sell-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    margin-bottom: 1.75rem;
    line-height: 1.2;
  }
  .anti-sell-copy {
    font-size: 1.05rem;
    line-height: 1.65;
    padding: 0 0.25rem;
    margin-bottom: 1rem;
  }
  .anti-sell-divider,
  .gold-divider {
    margin: 2rem auto;
  }
  .anti-sell-closer {
    font-size: 0.95rem;
  }

  /* 3. Scent Journey */
  .scent-pyramid {
    gap: 2rem;
  }
  .note-layer {
    padding: 1.25rem 0.75rem 1.25rem 1rem;
    border-left-width: 2px;
  }
  .note-layer-title {
    font-size: 1.35rem;
  }
  .notes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .note-item {
    padding: 0.75rem 0.4rem;
  }
  .note-icon {
    font-size: 1.4rem;
  }
  .note-name {
    font-size: 0.8rem;
  }
  .dna-strip {
    font-size: clamp(0.95rem, 3.5vw, 1.3rem);
    letter-spacing: 0.08em;
    padding: 1.25rem 0.5rem;
    white-space: normal;
  }

  /* 4. Product Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gallery-item {
    aspect-ratio: 4/5;
  }

  /* 5. Bottle Story */
  .bottle-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .feature-card {
    padding: 1.75rem 1.25rem;
  }
  .tilt-container {
    margin-top: 2rem;
  }
  .bottle-hero-image {
    max-height: 320px;
  }

  /* 6. Brand Story */
  .story-quote {
    font-size: clamp(1.2rem, 5vw, 1.7rem);
    padding: 0 0.5rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .story-quote::before,
  .story-quote::after {
    display: none; /* remove overlapping absolute quote marks on mobile */
  }
  .story-paragraph {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .brand-values {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.75rem;
  }

  /* 7. Shop / Ecommerce Section */
  .shop-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }
  .product-title {
    font-size: 2.2rem;
  }
  .size-options-3 {
    grid-template-columns: 1fr !important;
    gap: 0.6rem;
  }
  .size-btn {
    padding: 0.85rem 0.75rem;
  }
  .quantity-bundle-wrap {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .bundle-deal-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem;
  }
  .deal-action-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
  }
  .price-summary-box {
    padding: 1rem;
    width: 100%;
  }
  .order-btn {
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
  }
  .product-specs {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }

  /* 8. Video Reviews & Voice Notes */
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
    gap: 1.25rem;
  }
  .voice-notes-section {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
  }
  .voice-notes-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
    gap: 1.25rem;
  }
  .voice-note-card {
    padding: 1.25rem 1.1rem;
  }
  .written-reviews {
    margin-top: 2.5rem;
    width: 100%;
  }
  .written-review {
    padding: 1.25rem 1rem;
  }
  .wr-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .wr-date {
    margin-left: 0;
    width: 100%;
  }

  /* 9. FAQ Section */
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 0;
    gap: 0.5rem;
  }
  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* 10. Footer Section (Fix for horizontal overflow) */
  .footer-section {
    padding: 4rem 1.25rem 2.5rem;
    text-align: center;
    width: 100%;
    overflow: hidden;
  }
  .footer-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }
  .footer-title {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    word-break: break-word;
  }
  .footer-whisper {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    word-break: break-word;
  }
  .footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    padding: 0.85rem 1.5rem;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
    word-break: break-word;
  }
  .social-links {
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .social-links a {
    width: 40px;
    height: 40px;
  }
  .footer-brand {
    margin-top: 2rem;
    padding-top: 1.5rem;
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
  }

  /* Floating Buttons on Mobile */
  .floating-buy-now {
    bottom: 1rem;
    left: 0.75rem;
    padding: 0.5rem 0.85rem;
    gap: 0.5rem;
    max-width: calc(100vw - 80px);
  }
  .float-buy-icon {
    width: 26px;
    height: 26px;
  }
  .float-buy-icon svg {
    width: 14px;
    height: 14px;
  }
  .float-buy-title {
    font-size: 0.82rem;
  }
  .float-buy-badge {
    font-size: 0.58rem;
  }
  .whatsapp-float {
    bottom: 1rem;
    right: 0.75rem;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .whatsapp-tooltip {
    display: none !important;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .notes-grid {
    grid-template-columns: 1fr;
  }
  .floating-buy-now {
    padding: 0.45rem 0.65rem;
  }
  .float-buy-badge {
    display: none;
  }
  .footer-cta {
    font-size: 0.78rem;
    padding: 0.75rem 1rem;
  }
}
