/* AANDAAL OIL Shop Luxury Design System */
:root {
  /* Exclusive Palette */
  --primary-green: #163529;
  --primary-dark: #0b1c15;
  --gold: #c5a059;
  --gold-dark: #a6803d;
  --dark: #0f1012;
  --dark-light: #1a1c23;
  --champagne: #f4f1ea;
  --off-white: #faf9f6;
  --slate: #4a4e54;

  /* Luxury Eco Palette */
  --beige-warm: #F5F1E9;
  --forest-dark: #1A2A20;
  --gold-muted: #B09B71;
  --olive-deep: #4B533F;

  /* Typography System */
  --font-main: 'Inter', sans-serif;
  --forest-deep: #1B3B2B;
  /* Deep Forest Green for Headings */
  --green-muted: #5D6D5E;
  /* Muted Gray-Green for Body Text */

  /* Motion */
  --transition-soft: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-entry:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Universal Brand Text Selection Highlight */
::selection {
  background-color: var(--primary-green) !important;
  color: #ffffff !important;
}

::-moz-selection {
  background-color: var(--primary-green) !important;
  color: #ffffff !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  color: var(--forest-deep);
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p,
span,
li,
label,
input,
textarea {
  font-family: var(--font-main);
  color: var(--green-muted);
  font-weight: 400 !important;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Natural Green Text Selection */
::selection {
  background-color: var(--brand-brown);
  color: #ffffff;
}

::-moz-selection {
  background-color: var(--brand-brown);
  color: #ffffff;
}

/* ::selection{
    background-color: #10B981;
    color: #FFFFFF;
}
::-moz-selection {
    background-color: #10B981;
    color: #FFFFFF;
} */
body {
  font-family: var(--font-main);
  background-color: var(--off-white);
  color: var(--green-muted);
  overflow-x: hidden;
}

/* Luxury Sections */
.section-luxury {
  padding: 150px 0;
}

.container-luxury {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Refined Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
}

.heading-xl {
  font-size: clamp(3.2rem, 10vw, 6rem);
}

.heading-lg {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.heading-md {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.text-meta {
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  display: block;
}

/* Cinematic Transitions */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-entry);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Luxury Buttons */
.btn-luxury {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  padding: 18px 45px;
  border: 1px solid var(--dark);
  display: inline-block;
  transition: var(--transition-soft);
  position: relative;
  overflow: hidden;
}

.btn-luxury:hover {
  color: var(--off-white);
  background: #6b4e2e;
}

.btn-luxury-gold {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-luxury-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* Parallax Elements */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Menu Customization - Universal Transparent to Scrolled Glass */
.custom-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 1000;
  height: 80px;
}

.custom-navbar.navbar-scrolled {
  background: rgba(254, 253, 250, 0.92) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(107, 78, 46, 0.08) !important;
  box-shadow: 0 10px 30px rgba(107, 78, 46, 0.06) !important;
  height: 72px !important;
}

.nav-link {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Exclusive Card */
.exclusive-card {
  background: white;
  padding: 60px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-soft);
}

.exclusive-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

/* Custom Cursor Effect */
@media (min-width: 1024px) {

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    opacity: 0.85;
    transition: transform 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out, opacity 0.3s ease-out;
    will-change: transform;
  }

  .cursor-dot {
    width: 12px;
    height: 12px;
    background-color: #6B4E2E;
    margin-left: -6px;
    margin-top: -6px;
    box-shadow: 0 0 15px rgba(107, 78, 46, 0.6);
  }

  .cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid #6B4E2E;
    margin-left: -20px;
    margin-top: -20px;
    opacity: 0.6;
  }

  .cursor-dot.hover {
    background-color: var(--primary-green);
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(22, 53, 41, 0.8);
  }

  .cursor-ring.hover {
    border-color: var(--primary-green);
    transform: scale(1.3);
    opacity: 0.4;
  }
}

/* --- High-End Luxury Hero Redesign --- */
.hero-window {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-bg,
.hero-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Very slow cinematic zoom */
  animation: ken-burns-slow 40s ease-in-out infinite alternate;
  z-index: 1;
  filter: brightness(0.8) contrast(1.1);
}

.hero-mobile {
  display: none;
}

.hero-overlay-luxe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Deep cinematic gradient */
  background: linear-gradient(180deg,
      rgba(26, 42, 32, 0.7) 0%,
      rgba(26, 42, 32, 0.3) 50%,
      rgba(26, 42, 32, 0.7) 100%);
  z-index: 2;
}

/* Slider Styles */
.glass-slider-badge {
  position: absolute;
  bottom: 25px;
  left: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  /* Very transparent */
  padding: 10px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.glass-slider-badge i {
  color: #FFFFFF;
  font-size: 0.9rem;
}

.glass-slider-badge span {
  font-size: 0.8rem;
  color: #FFFFFF;
  letter-spacing: 0.8px;
  font-weight: 500;
  text-transform: uppercase;
}

.story-slider .swiper-pagination-bullet-active {
  background: var(--primary-green) !important;
}

.hero-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 3;
}

.hero-content-luxe {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--beige-warm);
  padding: 0 40px;
}

/* Staggered Reveal */
.luxe-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.8s var(--ease-premium), transform 1.8s var(--ease-premium);
}

.luxe-reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.luxe-delay-1 {
  transition-delay: 0.3s;
}

.luxe-delay-2 {
  transition-delay: 0.7s;
}

.luxe-delay-3 {
  transition-delay: 1.1s;
}

.luxe-delay-4 {
  transition-delay: 1.5s;
}

/* Premium Typography */
.hero-luxe-badge {
  display: inline-block;
  background: rgba(245, 241, 233, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(245, 241, 233, 0.15);
  padding: 10px 32px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige-warm);
  margin-bottom: 40px;
}

.hero-luxe-title {
  font-size: clamp(2.6rem, 10vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--beige-warm);
}

.hero-luxe-title .accent-text {
  position: relative;
  display: inline;
  /* Changed from inline-block to allow natural word wrapping without extra gaps */
}

.hero-luxe-title .accent-text::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-muted);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1.5s var(--ease-premium) 1s;
}

.luxe-reveal-active .accent-text::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-luxe-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  max-width: 650px;
  line-height: 1.8;
  color: rgba(245, 241, 233, 0.8);
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

/* Premium Button */
.btn-luxe-outline {
  position: relative;
  padding: 20px 52px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--beige-warm);
  background: transparent;
  border: 1px solid rgba(245, 241, 233, 0.3);
  border-radius: 2px;
  transition: var(--transition-soft);
  overflow: hidden;
}

.btn-luxe-outline:hover {
  border-color: var(--beige-warm);
  background: rgba(245, 241, 233, 0.05);
  letter-spacing: 0.2em;
  transform: translateY(-2px);
}

/* Animations */
@keyframes ken-burns-slow {
  0% {
    transform: scale(1.00);
  }

  100% {
    transform: scale(1.06);
  }
}

/* Interactive Scroll Indicator */
.luxe-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
}

.luxe-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--beige-warm);
}

.luxe-scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
  animation: luxe-line-flow 2.5s infinite var(--ease-premium);
}

/* --- Brand Preloader --- */
.luxe-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  /* Highest priority */
  transition: opacity 1s var(--ease-premium), visibility 1s var(--ease-premium);
}

.luxe-preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  animation: preloader-reveal 1.2s var(--ease-premium) forwards;
}

.preloader-logo {
  height: clamp(140px, 18vw, 210px);
  /* Increased size from 100px-150px to 160px-240px */
  width: auto;
  margin-bottom: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.02));
}

.preloader-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.preloader-dots .dot {
  width: 12px;
  height: 12px;
  background: var(--primary-green);
  border-radius: 50%;
  animation: luxe-dot-pulse 1.4s infinite ease-in-out both;
}

.preloader-dots .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.preloader-dots .dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes luxe-dot-pulse {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.2;
  }

  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes preloader-reveal {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes luxe-line-flow {
  0% {
    height: 0;
    opacity: 0;
    transform: translateY(0);
  }

  30% {
    height: 80px;
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    height: 0;
    opacity: 0;
    transform: translateY(80px);
  }
}

/* Mobile Luxury Refinements */
/* Mobile Luxury Refinements */
@media (max-width: 768px) {
  .hero-window {
    height: 70vh;
    /* Aggressively reduced height */
    min-height: 480px;
    /* Reduced min-height */
  }

  .hero-content-luxe {
    padding: 0 20px;
  }

  .hero-luxe-badge {
    margin-bottom: 16px;
    padding: 6px 20px;
    font-size: 0.65rem;
  }

  .hero-luxe-title {
    margin-bottom: 12px;
  }

  .hero-luxe-sub {
    margin-bottom: 32px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .btn-luxe-outline {
    padding: 16px 40px;
    font-size: 0.8rem;
  }

  .luxe-scroll {
    bottom: 20px;
  }

  .luxe-scroll-line {
    height: 40px;
  }

  .division-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Responsive Video Toggling */
  .hero-desktop {
    display: none !important;
  }

  .hero-mobile {
    display: block !important;
  }
}

/* --- Ultra-Premium Cinematic Hero Redesign --- */
/* =============================================
   Hero Section — first_banner.webp as CSS background
   No zoom, no crop, full image visible
   ============================================= */
.hero-luxury {
  position: relative;
  width: 100%;
  /* Locked to exactly one viewport height — no inner scrolling */
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  /* Full banner — 100% auto shows the COMPLETE landscape image, no cropping */
  background-image: url('../images/first_banner.webp');
  background-size: cover;
  /* right center ensures all 3 bottles stay fully visible; left beige absorbs any crop */
  background-position: right center;
  background-repeat: no-repeat;
  /* Warm beige matches the banner — fills gaps seamlessly */
  background-color: #f5ead8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

/* Left-to-right gradient so left text is readable, right bottles stay fully visible */
.hero-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(245, 234, 216, 0.88) 0%,
      rgba(245, 234, 216, 0.55) 45%,
      rgba(245, 234, 216, 0.10) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 3;
}

/* Floating Natural Elements & Particles */
.floating-elements-container {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  color: rgba(100, 187, 60, 0.25);
  /* Semi-transparent sage green */
  font-size: 1.2rem;
  will-change: transform;
}

.leaf-1 {
  top: 20%;
  left: 10%;
  animation: float-element 8s ease-in-out infinite alternate;
  font-size: 1.8rem;
}

.leaf-2 {
  bottom: 30%;
  left: 40%;
  animation: float-element 12s ease-in-out infinite alternate 1s;
  font-size: 1.4rem;
  color: rgba(197, 160, 89, 0.22);
  /* Golden leaf */
}

.leaf-3 {
  top: 15%;
  right: 35%;
  animation: float-element 10s ease-in-out infinite alternate 2s;
  font-size: 1.5rem;
}

/* Container Structure — left text | right shows banner bottles */
.container-luxury-hero {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  gap: 0;
}

/* Left Side: Content */
.hero-luxe-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 650px;
  /* Tighter padding so all content fits within 100vh */
  padding: 20px 0;
}

.luxe-badge-organic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100, 187, 60, 0.08);
  border: 1px solid rgba(100, 187, 60, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(100, 187, 60, 0.04);
}

.luxe-badge-organic i {
  font-size: 0.8rem;
  color: var(--primary-green);
  animation: badge-sprout-bounce 3s infinite ease-in-out;
}

/* Editorial Typography */
.hero-heading-editorial {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 26px;
}

.editorial-top {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary-dark);
  line-height: 1;
}

.editorial-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400 !important;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  white-space: nowrap;
}

.serif-italic-highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #c5a059 0%, #a6803d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-right: 4px;
}

.hero-subtitle-editorial {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 400 !important;
  line-height: 1.75;
  color: var(--green-muted);
  max-width: 540px;
  /* Reduced bottom margin to keep content compact */
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero-buttons-luxe {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Premium Buttons */
.btn-luxe-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--forest-deep) 0%, #2a523d 100%);
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(27, 59, 43, 0.18);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-luxe-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn-luxe-primary:hover::after {
  left: 150%;
}

.btn-luxe-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(27, 59, 43, 0.28);
  background: linear-gradient(135deg, #2a523d 0%, var(--forest-deep) 100%);
}

.btn-luxe-primary i {
  transition: transform 0.3s ease;
}

.btn-luxe-primary:hover i {
  transform: translateX(4px);
}

.btn-luxe-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(107, 78, 46, 0.04);
  border: 1px solid rgba(107, 78, 46, 0.22);
  padding: 15px 36px;
  border-radius: 100px;
  color: var(--brand-brown) !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxe-secondary:hover {
  background: rgba(107, 78, 46, 0.08);
  border-color: var(--brand-brown);
  transform: translateY(-2px);
  color: var(--brand-brown-dark) !important;
}

.play-btn-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(107, 78, 46, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--brand-brown);
  border: 1px solid rgba(107, 78, 46, 0.2);
  transition: all 0.3s ease;
}

.btn-luxe-secondary:hover .play-btn-circle {
  background: var(--brand-brown);
  color: #ffffff;
  transform: scale(1.1);
}

/* Right Side: Showcase Display Case & Product bottles */
.hero-luxe-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-display-case {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 40px 20px 20px;
  /* Deep forest emerald/dark display base to showcase gold oil bottle reflection beautifully */
  background: linear-gradient(145deg, #122118 0%, #08090a 100%);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 32px;
  box-shadow: 0 35px 70px rgba(10, 18, 14, 0.25), inset 0 0 50px rgba(197, 160, 89, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-display-case::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.6), transparent);
}

.showcase-display-case:hover {
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 45px 90px rgba(10, 18, 14, 0.35), inset 0 0 65px rgba(197, 160, 89, 0.08);
}

.product-showcase-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  animation: float-showcase 7s ease-in-out infinite alternate;
  perspective: 1200px;
}

.glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 65%);
  filter: blur(25px);
  z-index: 1;
  pointer-events: none;
}

.product-showcase-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.75)) contrast(1.05) brightness(1.05);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.product-showcase-wrapper:hover .product-showcase-img {
  transform: rotateY(-10deg) rotateX(6deg) scale(1.04);
}

.reflection-plate {
  position: absolute;
  bottom: -20px;
  left: 5%;
  width: 90%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Dynamic Interactive Floating Glass Badges */
.floating-glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 160, 89, 0.22);
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(107, 78, 46, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  cursor: pointer;
}

.floating-glass-card:hover {
  transform: scale(1.06) translateY(-6px) !important;
  background: #ffffff;
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 18px 45px rgba(107, 78, 46, 0.16);
}

.card-icon {
  width: 36px;
  height: 36px;
  background: rgba(100, 187, 60, 0.08);
  border: 1px solid rgba(100, 187, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.card-text .title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-deep);
}

.card-text .desc {
  font-size: 0.65rem;
  color: var(--green-muted);
}

.card-coconut {
  top: 15%;
  left: -80px;
  animation: card-float-y 6s infinite ease-in-out alternate;
}

.card-groundnut {
  top: 45%;
  right: -80px;
  animation: card-float-y 7s infinite ease-in-out alternate 1s;
}

.card-sesame {
  bottom: 12%;
  left: -60px;
  animation: card-float-y 8s infinite ease-in-out alternate 2s;
}

@keyframes card-float-y {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-12px);
  }
}

/* Floating Golden Drops */
.gold-oil-droplet {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(254, 246, 235, 0.9) 0%, rgba(235, 195, 120, 0.6) 40%, rgba(197, 160, 89, 0.9) 100%);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3), inset -2px -2px 5px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  will-change: transform, opacity;
  z-index: 3;
}

.gold-drop-1 {
  width: 12px;
  height: 12px;
  left: 8%;
  bottom: 20%;
  animation: float-rise 18s infinite linear;
}

.gold-drop-2 {
  width: 18px;
  height: 18px;
  right: 15%;
  bottom: 15%;
  animation: float-rise 22s infinite linear 2s;
}

.gold-drop-3 {
  width: 8px;
  height: 8px;
  left: 35%;
  top: 30%;
  animation: float-rise 15s infinite linear 4s;
}

.gold-drop-4 {
  width: 14px;
  height: 14px;
  right: 28%;
  top: 20%;
  animation: float-rise 25s infinite linear 1s;
}

@keyframes float-rise {
  0% {
    transform: translateY(120vh) translateX(0) scale(0.8);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-20vh) translateX(50px) scale(1.2);
    opacity: 0;
  }
}

@keyframes sunlight-pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes badge-sprout-bounce {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.15) rotate(10deg);
  }
}

/* Sophisticated Scroll Indicator */
.luxe-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 42%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.luxe-scroll-indicator:hover {
  opacity: 0.95;
  cursor: pointer;
}

.luxe-scroll-indicator span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--forest-deep);
  font-weight: 700;
}

.indicator-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary-green), transparent);
  animation: indicator-line-flow 2.5s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled Navbar Overrides */
/* 7. Fully Glassmorphism Navbar Improvements */


.custom-navbar .container-nav {
  padding: 0 40px;
  /* Wider spacing padding */
}

.custom-navbar .nav-menu {
  gap: 5px;
  /* Slightly reduced spacing for minimal style */
}

.custom-navbar .nav-link {
  color: var(--brand-brown) !important;
  font-weight: 600 !important;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  opacity: 1;
  position: relative;
  padding: 6px 10px !important;
  border-radius: 8px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.25s ease !important;
}

/* Animated underline that slides in from left */
.custom-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--primary-green);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--primary-green) !important;
  opacity: 1;
  background: rgba(100, 187, 60, 0.07) !important;
  transform: translateY(-2px) !important;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.custom-navbar .brand-logo span {
  color: var(--brand-brown) !important;
  font-size: 1.3rem !important;
  letter-spacing: 0.05em;
}

.custom-navbar .brand-logo i {
  color: var(--primary-green) !important;
}

.custom-navbar .utility-icon {
  color: var(--brand-brown) !important;
  border-color: rgba(107, 78, 46, 0.2) !important;
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
}

.custom-navbar .utility-icon:hover {
  color: var(--primary-green) !important;
  border-color: rgba(100, 187, 60, 0.5) !important;
  background-color: rgba(100, 187, 60, 0.08) !important;
}

/* WhatsApp CTA Button */
.custom-navbar .btn-whatsapp-nav {
  border: 1px solid rgba(100, 187, 60, 0.3) !important;
  background-color: rgba(100, 187, 60, 0.06) !important;
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  /* Elegant rounded WhatsApp CTA */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.custom-navbar .btn-whatsapp-nav:hover {
  background-color: var(--primary-green) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(100, 187, 60, 0.2) !important;
  border-color: var(--primary-green) !important;
}

/* Scrolled glass navbar: highly transparent blur effect */
.custom-navbar.navbar-scrolled {
  background: rgba(254, 253, 250, 0.75) !important;
  /* Luminous warm white background */
  backdrop-filter: blur(30px) !important;
  /* Ultra high transparent blur! */
  -webkit-backdrop-filter: blur(30px) !important;
  border-bottom: 1px solid rgba(107, 78, 46, 0.08) !important;
  box-shadow: 0 10px 30px rgba(107, 78, 46, 0.06) !important;
  height: 72px !important;
}

.custom-navbar.navbar-scrolled .nav-link {
  color: var(--brand-brown) !important;
}

.custom-navbar.navbar-scrolled .brand-logo span {
  color: var(--brand-brown) !important;
}

.custom-navbar.navbar-scrolled .utility-icon {
  color: var(--brand-brown) !important;
  border-color: rgba(107, 78, 46, 0.15) !important;
}

/* Animations */
@keyframes glow-pulse {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.15) translateY(-20px);
    opacity: 1;
  }
}

@keyframes float-element {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-15px) rotate(8deg);
  }
}

@keyframes float-particle-luxe {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-120px) translateX(20px);
    opacity: 0;
  }
}

@keyframes float-showcase {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-12px);
  }
}

@keyframes indicator-line-flow {
  0% {
    height: 0;
    opacity: 0;
    transform: translateY(0);
  }

  35% {
    height: 60px;
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    height: 0;
    opacity: 0;
    transform: translateY(60px);
  }
}

/* --- Mobile Luxury Hero Responsive Refinements --- */

@media (max-width: 1100px) {

  /* On medium screens keep 2-col but shrink left padding */
  .container-luxury-hero {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {

  /* Stack to single column on mobile — text over banner */
  .container-luxury-hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 120px;
    min-height: auto;
    gap: 0;
  }

  .hero-luxury {
    height: auto;
    min-height: 100svh;
    /* On mobile, deepen the gradient so text is always readable */
    background: #f5ead8;
  }

  /* Stronger overlay on mobile so text pops over the bottle image */
  .hero-luxury::before {
    background: linear-gradient(180deg, rgba(245, 234, 216, 0.92) 0%, rgba(245, 234, 216, 0.80) 100%);
  }

  .hero-luxe-left {
    align-items: center;
    text-align: center;
  }

  .editorial-main {
    white-space: normal;
  }

  .hero-subtitle-editorial {
    margin-bottom: 32px;
    text-align: center;
    max-width: 100%;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .hero-luxe-right-empty {
    display: none;
  }

  .rotating-circular-badge {
    display: none;
  }

  .rotating-badge-center {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-heading-editorial .editorial-main {
    font-size: 2.3rem !important;
  }

  .hero-buttons-luxe {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .btn-luxe-primary,
  .btn-luxe-secondary {
    width: 100%;
    justify-content: center;
  }

  .luxe-badge-organic {
    font-size: 0.65rem;
    padding: 6px 16px;
  }
}

/* --- Added Extra Premium Features: Stats & Rotating Circular Badge --- */

/* Luxury Stats Row styling */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 28px;
  width: 100%;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(107, 78, 46, 0.15);
}

.stat-card:last-child::after {
  display: none;
}

.stat-card .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.stat-card .stat-label {
  font-size: 0.72rem;
  color: var(--green-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 4px;
}

/* Rotating Circular SVG Badge */
.rotating-circular-badge {
  position: absolute;
  /* Right of headline — clear of Tamil title, before bottle art */
  top: 24%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  z-index: 12;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1400px) {
  .rotating-circular-badge {
    top: 22%;
    left: 49%;
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 1200px) {
  .rotating-circular-badge {
    top: 26%;
    left: 47%;
    width: 100px;
    height: 100px;
  }
}

.hero-luxe-right-empty {
  min-height: 150px;
  pointer-events: none;
}

.rotating-circular-badge svg {
  animation: rotate-badge-clockwise 22s linear infinite;
  width: 100%;
  height: 100%;
}

.rotating-badge-center {
  position: absolute;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(107, 78, 46, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #c5a059;
  z-index: 2;
}

@keyframes rotate-badge-clockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .hero-stats-row {
    justify-content: center;
    margin-top: 35px;
  }

  .rotating-circular-badge {
    display: none !important;
  }

  .rotating-badge-center {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-stats-row {
    gap: 15px;
  }

  .stat-card::after {
    right: -8px;
  }

  .stat-card .stat-number {
    font-size: 1.25rem;
  }

  .stat-card .stat-label {
    font-size: 0.6rem;
  }
}

/* Product original vs selling price */
.home-product-price-wrap,
.product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.home-product-price-original,
.product-price-original {
  font-size: 0.9rem;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: line-through;
}

.home-product-price-selling,
.product-price-selling {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--primary-green);
}

/* Testimonials Equal Height Fix */
.testimonials-swiper .swiper-wrapper {
  align-items: stretch !important;
}

.testimonials-swiper .swiper-slide {
  height: auto !important;
  display: flex !important;
}

.testimonials-swiper .swiper-slide>div {
  width: 100%;
}