@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://db.onlinewebfonts.com/c/0275dd1f77ddc329edab43d3565794b6?family=LT+Perfume');

:root {
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-perfume: 'LT Perfume', 'Perfume', serif;
  --container-padding: 2rem;

  /* Color Palette - Carbon & Rose Gold */
  --bg-obsidian: #080808;
  --bg-onyx: #121212;
  --bg-card: rgba(18, 18, 18, 0.45);
  --bg-glass: rgba(12, 12, 12, 0.7);
  --bg-glass-hover: rgba(22, 22, 22, 0.85);
  --border-glass: rgba(224, 168, 153, 0.08);
  /* Rose gold tinted glass borders */
  --border-glass-focus: rgba(224, 168, 153, 0.25);

  --text-primary: #FAF9F6;
  /* Warm Luxury White */
  --text-secondary: #c5bdb5;
  /* Sand */
  --text-muted: #8c827a;
  /* Taupe Muted */

  /* Default Ambient Glows (Rose Gold & Soft Amethyst) */
  --glow-1: rgba(224, 168, 153, 0.12);
  --glow-2: rgba(163, 145, 168, 0.08);
  --accent-color: #e0a899;
  /* Luminous Rose Gold */
  --accent-glow: rgba(224, 168, 153, 0.2);

  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;

  --bottle-glass-stroke: rgba(255, 255, 255, 0.12);
  --bottle-glass-fill: rgba(255, 255, 255, 0.05);
  --bottle-label-bg: rgba(8, 8, 8, 0.9);
  --bottle-label-border: rgba(255, 255, 255, 0.08);
  --bottle-label-text: #FAF9F6;
}

/* Category Theming applied via JS classes on body */
body.theme-fresh {
  --glow-1: rgba(127, 169, 155, 0.15);
  --glow-2: rgba(224, 168, 153, 0.08);
  --accent-color: #7fa99b;
  /* Sage Green */
  --accent-glow: rgba(127, 169, 155, 0.2);
}

body.theme-floral {
  --glow-1: rgba(229, 154, 143, 0.15);
  --glow-2: rgba(224, 168, 153, 0.08);
  --accent-color: #e59a8f;
  /* Pale Rosewood */
  --accent-glow: rgba(229, 154, 143, 0.2);
}

body.theme-woody {
  --glow-1: rgba(163, 145, 168, 0.15);
  --glow-2: rgba(224, 168, 153, 0.08);
  --accent-color: #a391a8;
  /* Lavande Oud */
  --accent-glow: rgba(163, 145, 168, 0.2);
}

body.theme-oriental {
  --glow-1: rgba(207, 141, 112, 0.15);
  --glow-2: rgba(224, 168, 153, 0.08);
  --accent-color: #cf8d70;
  /* Muted Amber */
  --accent-glow: rgba(207, 141, 112, 0.2);
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.6;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Floating Ambient Glow Backgrounds */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.ambient-glow::before,
.ambient-glow::after {
  content: '';
  position: absolute;
  width: 75vmax;
  height: 75vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.75;
  transition: var(--transition-smooth);
}

.ambient-glow::before {
  top: -25%;
  right: -15%;
  background: radial-gradient(circle, var(--glow-1) 0%, transparent 65%);
  animation: float-slow-1 25s infinite alternate ease-in-out;
}

.ambient-glow::after {
  bottom: -25%;
  left: -15%;
  background: radial-gradient(circle, var(--glow-2) 0%, transparent 65%);
  animation: float-slow-2 30s infinite alternate ease-in-out;
}

@keyframes float-slow-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-5%, 8%) scale(1.05);
  }

  100% {
    transform: translate(3%, -3%) scale(0.95);
  }
}

@keyframes float-slow-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(6%, -8%) scale(0.95);
  }

  100% {
    transform: translate(-3%, 4%) scale(1.05);
  }
}

/* Glassmorphism utility class */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Typography elements */
h1,
h2,
h3,
h4,
.brand-font {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #0a0a0a;
  border-bottom: 1px solid var(--border-glass);
  transition: background 0.3s ease;
  transform: translateZ(0);
}

header.scrolled {
  background: #050505;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-wrap h1 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
}

.logo-wrap span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

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

.nav-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--accent-glow);
}

.mobile-menu-btn {
  display: none;
}

/* Sub Header Bar */
.subheader-bar {
  border-top: 1px solid var(--border-glass);
  background: #0a0a0a;
  border-bottom: 1px solid var(--border-glass);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.subheader-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  padding: 0.75rem 2rem;
}

.subheader-container a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-fast);
  position: relative;
}

.subheader-container a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.subheader-container a:hover,
.subheader-container a.active {
  color: var(--text-primary);
}

.subheader-container a:hover::after,
.subheader-container a.active::after {
  width: 60%;
}

/* Hero Slider Styles (Responsive Graphic Banners) */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: var(--header-height, 185px) !important;
  padding-top: 0 !important;
}

.slider-wrapper {
  position: relative;
  width: 100%;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}

.hero-slider .slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.banner-picture {
  display: block;
  width: 100%;
}

.hero-banner-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-slider {
    margin-top: var(--header-height, 185px) !important;
    padding-top: 0 !important;
  }
}

/* Slide 2-Column Layout */
.slide-grid {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-height, 160px) + 2rem) 4rem 4rem 4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  height: 100%;
}

.slide-text-side {
  text-align: left;
}

.slide-text-side h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 300;
  color: var(--text-primary);
}

.slide-text-side h2 span {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-color);
  text-shadow: 0 0 15px var(--accent-glow);
}

.slide-text-side p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 550px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 600;
}

.slide-graphic-side {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glowing-orb {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(85px);
  z-index: 1;
  opacity: 0.3;
  animation: orb-pulsate 6s infinite alternate ease-in-out;
}

@keyframes orb-pulsate {
  0% {
    transform: scale(0.9);
    opacity: 0.25;
  }

  100% {
    transform: scale(1.15);
    opacity: 0.45;
  }
}

.hero-perfume-svg {
  width: 220px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.7));
  animation: bottle-float 6s infinite ease-in-out;
}

@keyframes bottle-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.slider-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  font-size: 1.8rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  opacity: 0.5;
}

.slider-arrow:hover {
  background: transparent;
  color: var(--accent-color);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 2rem;
}

.slider-arrow.next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active,
.dot:hover {
  background: var(--accent-color);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* ==========================================================================
   Ultra-Luxury Hero Banner Components
   ========================================================================== */
.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.hero-notes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0.75rem 0;
}

.note-pill {
  padding: 0.35rem 0.85rem;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
}

.note-pill:hover {
  border-color: var(--accent-color);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.hero-perfume-spec {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.spec-divider {
  opacity: 0.4;
}

/* 3D Showcase & Bottle Graphics */
.hero-perfume-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2;
  animation: bottle-float 6s infinite ease-in-out;
}

.hero-perfume-svg-3d {
  width: 260px;
  height: auto;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.65));
}

.hero-price-pill {
  position: absolute;
  top: 0;
  right: 5%;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.floating-accent-pill {
  position: absolute;
  padding: 0.38rem 0.85rem;
  border-radius: 30px;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  z-index: 4;
  animation: float-pill 4s infinite alternate ease-in-out;
}

.floating-accent-pill.top-right {
  top: 22%;
  left: -5%;
}

.floating-accent-pill.bottom-left {
  bottom: 18%;
  right: -5%;
  animation-delay: -2s;
}

@keyframes float-pill {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

body.light-mode .hero-tag-badge {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(33, 29, 28, 0.15);
  color: #211d1c;
}

body.light-mode .note-pill {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(33, 29, 28, 0.12);
  color: #4b5563;
}

body.light-mode .hero-price-pill {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(33, 29, 28, 0.15);
  color: #111827;
}

body.light-mode .floating-accent-pill {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(33, 29, 28, 0.15);
  color: #111827;
}

/* Hero Slider CTA Buttons Uniform Equal Sizing */
.hero-slider .cta-group {
  display: flex !important;
  gap: 1.25rem !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
}

.hero-slider .cta-group .btn {
  width: 255px !important;
  min-width: 255px !important;
  max-width: 255px !important;
  height: 52px !important;
  min-height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 0 1rem !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  border-radius: var(--border-radius-sm, 8px) !important;
}

.gender-section {
  max-width: 1400px;
  margin: 4.5rem auto 2.5rem auto;
  padding: 0 2rem;
}

.gender-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gender-box {
  position: relative;
  height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--border-radius-md, 16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.light-mode .gender-box {
  background: #ffffff;
  border-color: rgba(33, 29, 28, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gender-box:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

body.light-mode .gender-box:hover {
  border-color: rgba(33, 29, 28, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Ambient Radial Glows */
.gender-ambient-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.25;
  transition: all 0.5s ease;
  pointer-events: none;
}

.male-glow {
  background: #6366f1;
}

.female-glow {
  background: #f43f5e;
}

.unisex-glow {
  background: #a855f7;
}

.gender-box:hover .gender-ambient-glow {
  opacity: 0.5;
  transform: scale(1.3);
}

.gender-svg-wrap {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 110px;
  height: 130px;
  opacity: 0.85;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gender-box:hover .gender-svg-wrap {
  opacity: 1.0;
  transform: translateY(-6px) scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.3));
}

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

.gender-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.96) 0%, rgba(10, 10, 12, 0.45) 55%, transparent 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

body.light-mode .gender-overlay {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.5) 55%, transparent 100%);
}

.gender-box:hover .gender-overlay {
  background: linear-gradient(to top, rgba(10, 10, 12, 0.98) 0%, rgba(10, 10, 12, 0.35) 70%, transparent 100%);
}

body.light-mode .gender-box:hover .gender-overlay {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.4) 70%, transparent 100%);
}

.gender-content {
  position: relative;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gender-box:hover .gender-content {
  transform: translateY(-4px);
}

.gender-tag-row {
  margin-bottom: 0.6rem;
}

.gender-pill-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  border: 1px solid transparent;
}

.male-pill {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border-color: rgba(99, 102, 241, 0.35);
}

.female-pill {
  background: rgba(244, 63, 94, 0.15);
  color: #fda4af;
  border-color: rgba(244, 63, 94, 0.35);
}

.unisex-pill {
  background: rgba(168, 85, 247, 0.15);
  color: #e9d5ff;
  border-color: rgba(168, 85, 247, 0.35);
}

body.light-mode .male-pill {
  color: #3730a3;
  background: rgba(99, 102, 241, 0.12);
}

body.light-mode .female-pill {
  color: #9f1239;
  background: rgba(244, 63, 94, 0.12);
}

body.light-mode .unisex-pill {
  color: #6b21a8;
  background: rgba(168, 85, 247, 0.12);
}

.gender-content h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.gender-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 1.1rem;
  line-height: 1.4;
}

.gender-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.gender-cta-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.gender-box:hover .gender-cta-link i {
  transform: translateX(6px);
}

/* Sillage Wave Hover Animation */
.sillage-wave-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.sillage-wave {
  position: absolute;
  border: 1.5px solid var(--accent-glow);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  width: 180px;
  height: 180px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .sillage-wave {
  opacity: 0.18;
}

.product-card:hover .wave-1 {
  animation: sillage-rotate-1 12s infinite linear;
  width: 200px;
  height: 200px;
}

.product-card:hover .wave-2 {
  animation: sillage-rotate-2 16s infinite linear;
  width: 220px;
  height: 220px;
  border-radius: 50% 40% 60% 50% / 40% 60% 50% 60%;
}

@keyframes sillage-rotate-1 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes sillage-rotate-2 {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* Scent Note Pyramids (Luxury Senior UI/UX Overhaul) */
.notes-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin: 1.75rem 0;
  width: 100%;
}

.pyramid-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.light-mode .pyramid-tier {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.pyramid-tier:hover {
  border-color: var(--accent-color) !important;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 25px rgba(196, 124, 108, 0.22);
}

.tier-top {
  width: 70%;
}

.tier-middle {
  width: 85%;
}

.tier-base {
  width: 100%;
}

.tier-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.tier-notes {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

/* Custom Tester Box Builder */
.tester-builder-section {
  max-width: 1400px;
  margin: 6rem auto 2rem auto;
  padding: 0 2rem;
}

.builder-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.scent-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.scent-select-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

body.light-mode .scent-select-card {
  background: rgba(0, 0, 0, 0.01);
}

.scent-select-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

body.light-mode .scent-select-card:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
}

.scent-select-card.selected {
  border-color: var(--accent-color);
  background: var(--accent-glow);
}

.scent-select-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.scent-select-card.selected .scent-select-indicator {
  border-color: var(--accent-color);
  background: var(--accent-color);
}

.scent-select-card.selected .scent-select-indicator::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-obsidian);
}

body.light-mode .scent-select-card.selected .scent-select-indicator::after {
  background: var(--bg-obsidian);
}

.box-preview-side {
  background: rgba(255, 255, 255, 0.01);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-glass);
}

.box-container-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  border: 1.2px dashed var(--border-glass);
  margin-top: 1rem;
}

body.light-mode .box-container-visual {
  background: rgba(0, 0, 0, 0.02);
}

.box-slot {
  height: 100px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  text-align: center;
  padding: 0.5rem;
  font-weight: 500;
}

body.light-mode .box-slot {
  background: rgba(255, 255, 255, 0.5);
}

.box-slot.filled {
  border-style: solid;
  color: var(--text-primary);
}

/* Copy Button for IBAN */
.btn-copy {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-copy:hover {
  background: var(--accent-color);
  color: var(--bg-obsidian);
  border-color: var(--accent-color);
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tag {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  text-shadow: 0 0 15px var(--accent-glow);
}

.hero h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 300;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero h2 span {
  font-style: italic;
  font-weight: 400;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-weight: 300;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-obsidian);
  border: 1px solid var(--text-primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-primary);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
  -webkit-appearance: none;
  appearance: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-primary);
}

/* Category Filter Bar */
.filter-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  max-width: 100%;
}

.category-triggers {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  min-width: 0;
  max-width: 100%;
}

.category-triggers::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.category-btn {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.category-btn.active {
  background: var(--text-primary);
  color: var(--bg-obsidian);
  border-color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Dynamic dot indicator on button */
.category-btn::before {
  content: '';
  display: none !important;
}


.search-filter-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-box {
  position: relative;
  width: 280px;
}

.search-box input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  color: var(--text-primary);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.search-box input:focus {
  outline: none;
  border-color: var(--border-glass-focus);
  background: rgba(0, 0, 0, 0.4);
}

.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* Scent Matcher CTA Banner */
.matcher-cta {
  max-width: 1400px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.matcher-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem;
  overflow: hidden;
  position: relative;
}

.matcher-graphics {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-ring {
  position: absolute;
  border: 1.5px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: rotate-slow 20s infinite linear;
}

.graphic-ring:nth-child(1) {
  width: 280px;
  height: 280px;
  animation-duration: 25s;
}

.graphic-ring:nth-child(2) {
  width: 200px;
  height: 200px;
  animation-duration: 15s;
  animation-direction: reverse;
}

.graphic-core {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  filter: blur(10px);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-glow 4s infinite alternate ease-in-out;
  box-shadow: 0 0 35px var(--accent-glow);
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Brand Storytelling Panel Grid */
.story-grid {
  padding: 4.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  border-radius: var(--border-radius-md, 16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg-card);
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

body.light-mode .story-grid {
  background: #ffffff;
  border: 1px solid rgba(33, 29, 28, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.story-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  background: rgba(196, 124, 108, 0.12);
  border: 1px solid rgba(196, 124, 108, 0.3);
  color: var(--accent-color, #c47c6c);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.story-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.story-title-italic {
  display: block;
  font-style: italic;
  color: var(--accent-color);
  font-weight: 400;
}

.story-lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.story-body {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

/* Stat Highlight Bar */
.story-stats-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius-sm, 10px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .story-stats-row {
  background: rgba(247, 246, 242, 0.8);
  border-color: rgba(33, 29, 28, 0.1);
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.story-stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.12);
}

body.light-mode .story-stat-divider {
  background: rgba(33, 29, 28, 0.12);
}

.story-cta-row {
  margin-top: 1.5rem;
}

.story-btn {
  padding: 0.85rem 2.25rem !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.12em !important;
}

/* Feature Cards Styling */
.story-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.story-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius-md, 14px);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body.light-mode .story-card {
  background: #ffffff;
  border: 1px solid rgba(33, 29, 28, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.story-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

body.light-mode .story-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 16px 35px rgba(196, 124, 108, 0.12);
}

.story-card-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(196, 124, 108, 0.12);
  border: 1px solid rgba(196, 124, 108, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: all 0.3s ease;
}

.story-card-icon-wrap i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.story-card:hover .story-card-icon-wrap {
  transform: scale(1.1);
  background: var(--accent-color);
}

.story-card:hover .story-card-icon-wrap i {
  color: #ffffff;
}

.story-card h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.story-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.interactive-story-card {
  cursor: pointer;
}

.story-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  transition: gap 0.3s ease;
}

.interactive-story-card:hover .story-card-link {
  gap: 0.6rem;
}


/* Product Section */
.products-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

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

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2.5rem;
}

/* Product Cards */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.5rem;
  cursor: pointer;
}

.product-detail-modal-layout {
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.card-tag {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: var(--bg-onyx);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.product-media {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: var(--border-radius-md, 16px);
  background: transparent;
  overflow: hidden;
  padding: 0;
}

body.light-mode .product-media {
  background: transparent;
}

.product-image,
.product-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: inherit !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 2;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image,
.product-card:hover .product-media img {
  transform: scale(1.05);
}

.perfume-illustration {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  transition: var(--transition-smooth);
  z-index: 2;
}

.product-card:hover .perfume-illustration {
  transform: translateY(-8px) scale(1.05);
}

.bottle-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--accent-color);
  opacity: 0.12;
  filter: blur(40px);
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition-smooth);
}

.product-card:hover .bottle-glow {
  opacity: 0.25;
  filter: blur(50px);
  transform: scale(1.3);
}

/* Notes Quick-Visualizer */
.notes-visualizer {
  display: flex;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-sm);
  padding: 0.6rem 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.note-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.note-label {
  color: var(--text-muted);
  font-size: 0.6rem;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
  letter-spacing: 0.05em;
}

.note-value {
  font-weight: 500;
  text-align: center;
}

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

.product-genre {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--transition-fast);
}

.product-title:hover {
  color: var(--accent-color);
}

/* Strikethrough / discounted price display */
.product-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.product-old-price {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
  letter-spacing: 0.02em;
  line-height: 1;
}

.product-price--sale {
  color: var(--accent-color);
}


.performance-indicators {
  margin: 1.25rem 0 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.2rem 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

body.light-mode .performance-indicators {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}

.indicator-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.indicator-bar-bg {
  width: 180px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

body.light-mode .indicator-bar-bg {
  background: rgba(0, 0, 0, 0.08);
}

.indicator-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color) 0%, #10b981 100%);
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(196, 124, 108, 0.4);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 600;
}

.add-cart-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.add-cart-btn:hover {
  background: var(--text-primary);
  color: var(--bg-obsidian);
  border-color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Scent Matcher Modal (Interactive Quiz) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quiz-modal {
  width: 100%;
  max-width: 600px;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}

.modal-overlay.active .quiz-modal {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
}

.close-modal:hover {
  color: var(--text-primary);
}

.quiz-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 2.5rem;
  border-radius: 1.5px;
  position: relative;
}

.quiz-progress-bar {
  height: 100%;
  width: 25%;
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-glow);
  transition: width 0.4s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fade-in 0.4s ease forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-step h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.quiz-step p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.quiz-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 1.25rem;
  border-radius: var(--border-radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.quiz-option:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.quiz-option.selected {
  background: var(--accent-color);
  color: var(--bg-obsidian);
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
}

/* Shopping Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #090909;
  border-left: 1px solid var(--border-glass);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.cart-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.8rem;
}

.close-cart {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items-wrapper {
  flex-grow: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.empty-cart-msg {
  text-align: center;
  color: var(--text-muted);
  margin-top: 5rem;
}

.cart-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-item-image {
  width: 70px;
  height: 85px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-image img {
  width: 45px;
  height: auto;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.variant-size-pill,
.perfume-variant-size {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  background: rgba(196, 124, 108, 0.16) !important;
  color: var(--accent-color) !important;
  border: 1px solid rgba(196, 124, 108, 0.38) !important;
  padding: 0.18rem 0.55rem !important;
  border-radius: 20px !important;
  margin-left: 0.45rem !important;
  vertical-align: middle !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.variant-size-pill.pill-lg {
  font-size: 0.85rem !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 25px !important;
}

body.light-mode .variant-size-pill,
body.light-mode .perfume-variant-size {
  background: rgba(156, 76, 59, 0.12) !important;
  color: #9c4c3b !important;
  border-color: rgba(156, 76, 59, 0.35) !important;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.qty-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.qty-val {
  padding: 0 0.75rem;
  font-size: 0.85rem;
}

.cart-item-price {
  font-size: 1.1rem;
}

.remove-item-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
}

.remove-item-btn:hover {
  color: #ef4444;
}

.cart-footer {
  padding: 2rem;
  border-top: 1px solid var(--border-glass);
  background: rgba(14, 14, 14, 0.8);
}

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.total-row.grand-total {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
}

/* Footer Section */
footer {
  background: var(--bg-onyx);
  border-top: 1px solid var(--border-glass);
  padding: 5rem 2rem 2rem 2rem;
  margin-top: 8rem;
}

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

.footer-logo-col h2 {
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 95px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  display: block;
}

body:not(.light-mode) .footer-logo-img {
  filter: invert(1);
}

.footer-logo-col span {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.25em;
}

.footer-logo-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.footer-col a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
  padding-left: 0;
}

/* Social Icon Badges */
.footer-social-row {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary) !important;
  font-size: 1.25rem !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  padding: 0 !important;
}

body.light-mode .social-icon-btn {
  background: #ffffff;
  border: 1px solid rgba(33, 29, 28, 0.12);
  color: #121212 !important;
}

.social-icon-btn:hover {
  background: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 8px 20px rgba(196, 124, 108, 0.3);
}

.footer-newsletter input {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-glass);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  border-radius: var(--border-radius-sm);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.trust-badges {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.trust-badges span i {
  color: var(--accent-color);
  margin-right: 0.4rem;
}

/* ==========================================================================
   Checkout Page Styles
   ========================================================================== */
.checkout-layout {
  max-width: 1200px;
  margin: 10rem auto 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.checkout-form-container h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-field label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-glass);
  padding: 0.9rem 1.25rem;
  color: var(--text-primary);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--border-glass-focus);
}

/* Custom Payment Toggles */
.payment-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.payment-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.payment-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.payment-card.active {
  border-color: var(--accent-color);
  background: var(--accent-glow);
}

.payment-card i {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--accent-color);
}

.payment-card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.payment-info-box {
  display: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  margin-top: 1.5rem;
}

.payment-info-box.active {
  display: block;
  animation: fade-in 0.3s ease;
}

.payment-info-box h4 {
  font-family: var(--font-sans);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.bank-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.bank-detail-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bank-detail-table td {
  padding: 0.75rem 0;
}

.bank-detail-table td:first-child {
  color: var(--text-muted);
}

.bank-detail-table td:last-child {
  font-weight: 500;
  text-align: right;
}

.file-upload-input {
  margin-top: 1rem;
}

.checkout-summary {
  padding: 2.5rem;
}

.checkout-summary h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.checkout-summary-row.total {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================= */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .subheader-bar {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .matcher-banner {
    grid-template-columns: 1fr;
    padding: 3rem;
  }

  .matcher-graphics {
    height: 200px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  /* Slide Grid Responsive Stacking */
  .slide-grid {
    grid-template-columns: 1fr;
    padding: calc(var(--header-height, 190px) + 1.5rem) 2rem 4rem 2rem;
    text-align: center;
    gap: 2rem;
    align-content: center;
  }

  .slide-text-side {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .slide-text-side p {
    margin: 0 auto 2rem auto;
  }

  .slide-graphic-side {
    height: 220px;
  }

  .hero-perfume-svg,
  .hero-perfume-svg-3d {
    width: 170px !important;
  }

  .hero-notes-list {
    justify-content: center;
  }

  .hero-perfume-spec {
    justify-content: center;
  }

  .floating-accent-pill {
    display: none;
  }

  .hero-price-pill {
    right: 0%;
  }

  .builder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  .hero {
    min-height: 80vh;
    padding-top: 7rem;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .search-box {
    width: 100%;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Subheader, Gender Grid & Tester Selection Mobile Adjustments */
  .subheader-container {
    gap: 1.5rem;
    padding: 0.75rem 1rem;
  }

  .subheader-container a {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .gender-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gender-box {
    height: 180px;
    padding: 1.75rem;
  }

  .gender-svg-wrap {
    width: 100px;
    height: 100px;
    top: 15%;
  }

  .scent-select-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    padding: 0.35rem 1rem;
  }

  .nav-actions {
    gap: 0.75rem;
  }

  .slider-arrow {
    display: none !important;
  }

  .product-detail-modal-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-height: 90vh;
  }

  .product-detail-modal-layout .product-media {
    min-height: 200px !important;
    height: 200px !important;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.35rem 0.85rem;
  }

  .logo-wrap h1 {
    font-size: 1.7rem;
    letter-spacing: 0.1em;
  }

  .logo-wrap span {
    display: none;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 1.25rem;
  }

  .story-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .slide-grid {
    padding: calc(var(--header-height, 190px) + 1.25rem) 1rem 3rem 1rem;
    gap: 1.5rem;
  }

  .slide-text-side h2 {
    font-size: 2rem;
  }

  .slide-text-side p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .slide-graphic-side {
    height: 180px;
  }

  .hero-perfume-svg {
    width: 120px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .products-section,
  .filter-section,
  .tester-builder-section {
    padding: 2rem 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .box-container-visual {
    gap: 0.75rem;
    padding: 1rem;
  }

  .box-slot {
    height: 85px;
    font-size: 0.65rem;
  }

  .quiz-modal {
    padding: 1.5rem;
  }

  .payment-selector {
    grid-template-columns: 1fr;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .checkout-form-container {
    padding: 2rem 1.25rem !important;
  }
}

/* Product Reviews UI Styles */
.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  padding-bottom: 0.5rem;
  position: relative;
  border-bottom: 2px solid transparent;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--text-primary);
  font-weight: 600;
  border-bottom-color: var(--accent-color);
}

.modal-tab-content::-webkit-scrollbar {
  width: 4px;
}

.modal-tab-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-tab-content::-webkit-scrollbar-thumb {
  background: var(--border-glass-focus);
  border-radius: 2px;
}

.star-select {
  transition: transform 0.2s ease, color 0.2s ease;
}

.star-select:hover {
  transform: scale(1.25);
}

.review-item {
  animation: fade-in 0.4s ease forwards;
}

.reviews-summary-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border-glass);
  padding-bottom: 1.25rem;
}

.reviews-score-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-glass);
  padding-right: 1rem;
}

@media (max-width: 480px) {
  .reviews-summary-header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

  .reviews-score-card {
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
    padding-right: 0;
    padding-bottom: 1rem;
  }
}

/* ==========================================================================
   Light Mode Styling
   ========================================================================== */
body.light-mode {
  --bg-obsidian: #faf8f5;
  /* Warm Sand / Soft Ivory */
  --bg-onyx: #f2ece4;
  /* Pale Sand secondary */
  --bg-card: rgba(255, 255, 255, 0.55);
  --bg-glass: rgba(255, 255, 255, 0.75);
  --bg-glass-hover: rgba(255, 255, 255, 0.9);
  --border-glass: rgba(196, 124, 108, 0.12);
  /* Copper/Rose Gold tinted borders */
  --border-glass-focus: rgba(196, 124, 108, 0.3);
  --text-primary: #211d1c;
  /* Deep Espresso Carbon */
  --text-secondary: #6e6562;
  /* Muted Stone */
  --text-muted: #9c908d;

  --glow-1: rgba(196, 124, 108, 0.08);
  --glow-2: rgba(163, 145, 168, 0.04);
  --accent-color: #c47c6c;
  /* Deep Rose Gold / Copper */
  --accent-glow: rgba(196, 124, 108, 0.15);

  --bottle-glass-stroke: rgba(33, 29, 28, 0.15);
  /* Espresso stroke */
  --bottle-glass-fill: rgba(33, 29, 28, 0.02);
  --bottle-label-bg: rgba(250, 248, 245, 0.95);
  /* Light paper label */
  --bottle-label-border: rgba(33, 29, 28, 0.08);
  --bottle-label-text: #211d1c;
}

body.light-mode.theme-fresh {
  --glow-1: rgba(127, 169, 155, 0.08);
  --glow-2: rgba(196, 124, 108, 0.04);
  --accent-color: #558776;
  /* Sage */
  --accent-glow: rgba(127, 169, 155, 0.12);
}

body.light-mode.theme-floral {
  --glow-1: rgba(229, 154, 143, 0.08);
  --glow-2: rgba(196, 124, 108, 0.04);
  --accent-color: #b56e63;
  /* Pale Rosewood */
  --accent-glow: rgba(229, 154, 143, 0.12);
}

body.light-mode.theme-woody {
  --glow-1: rgba(163, 145, 168, 0.08);
  --glow-2: rgba(196, 124, 108, 0.04);
  --accent-color: #7b6680;
  /* Lavande Oud */
  --accent-glow: rgba(163, 145, 168, 0.12);
}

body.light-mode.theme-oriental {
  --glow-1: rgba(207, 141, 112, 0.08);
  --glow-2: rgba(196, 124, 108, 0.04);
  --accent-color: #a66549;
  /* Muted Amber */
  --accent-glow: rgba(207, 141, 112, 0.12);
}

body.light-mode header,
body.light-mode header.scrolled,
body.light-mode .subheader-bar {
  background: #FAF7F2 !important;
}

body.light-mode .category-btn {
  background: rgba(0, 0, 0, 0.02);
}

body.light-mode .category-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

body.light-mode .category-btn.active {
  background: var(--text-primary);
  color: var(--bg-obsidian);
}

body.light-mode .search-box input {
  background: rgba(255, 255, 255, 0.8);
}

body.light-mode .search-box input:focus {
  background: #ffffff;
}

body.light-mode .product-media {
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
}

body.light-mode .notes-visualizer {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(0, 0, 0, 0.03);
}

body.light-mode .add-cart-btn {
  background: rgba(0, 0, 0, 0.04);
}

body.light-mode .add-cart-btn:hover {
  background: var(--text-primary);
  color: var(--bg-obsidian);
}

body.light-mode .modal-overlay {
  background: rgba(0, 0, 0, 0.45);
}

body.light-mode .quiz-option {
  background: rgba(0, 0, 0, 0.02);
}

body.light-mode .quiz-option:hover {
  background: rgba(0, 0, 0, 0.05);
}

body.light-mode .quiz-option.selected {
  background: var(--accent-color);
  color: #fff;
}

body.light-mode .cart-drawer {
  background: #fdfdfb;
}

body.light-mode .cart-item-image {
  background: rgba(0, 0, 0, 0.03);
}

body.light-mode .cart-footer {
  background: rgba(247, 246, 242, 0.95);
}

body.light-mode .qty-control {
  background: rgba(0, 0, 0, 0.03);
}

body.light-mode .checkout-layout input,
body.light-mode .checkout-layout select,
body.light-mode .checkout-layout textarea {
  background: rgba(255, 255, 255, 0.8);
}

body.light-mode .payment-card {
  background: rgba(0, 0, 0, 0.02);
}

body.light-mode .payment-card:hover {
  background: rgba(0, 0, 0, 0.04);
}

body.light-mode .payment-card.active {
  background: rgba(124, 58, 237, 0.08);
}

body.light-mode .payment-info-box {
  background: rgba(0, 0, 0, 0.01);
}

body.light-mode .bank-detail-table tr {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .btn-outline {
  background-color: transparent;
  border-color: rgba(33, 29, 28, 0.35);
  color: var(--text-primary);
}

body.light-mode .btn-outline:hover {
  background-color: rgba(33, 29, 28, 0.04);
  border-color: var(--text-primary);
}

body.light-mode .subheader-bar {
  background: rgba(250, 248, 245, 0.7);
  border-top: 1px solid rgba(196, 124, 108, 0.08);
  border-bottom: 1px solid rgba(196, 124, 108, 0.08);
}

/* Premium Light Mode Modal & Box Builder Background Visibility */
body.light-mode .quiz-modal {
  background: #ffffff;
  border-color: rgba(33, 29, 28, 0.1);
  box-shadow: 0 20px 50px rgba(33, 29, 28, 0.12);
}

body.light-mode .modal-overlay {
  background: rgba(8, 8, 8, 0.55);
}

body.light-mode .box-preview-side {
  background: #ffffff;
  border-color: rgba(33, 29, 28, 0.08);
  box-shadow: 0 8px 30px rgba(33, 29, 28, 0.04);
}

/* Dedicated Product Details Page Styles */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.product-detail-media-panel {
  position: relative;
  min-height: 450px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.01) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.light-mode .product-detail-media-panel {
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.06) 100%);
  border-color: rgba(33, 29, 28, 0.08);
}

.sillage-wave-wrapper-page {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  pointer-events: none;
  z-index: 1;
}

.product-detail-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-reviews-section {
  margin-top: 8rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 5rem;
}

body.light-mode .product-reviews-section {
  border-top-color: rgba(33, 29, 28, 0.1);
}

.product-reviews-section h3 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 300;
  font-family: var(--font-serif);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.reviews-summary-block {
  height: max-content;
}

.reviews-score-card-page {
  transition: var(--transition-smooth);
}

body.light-mode .reviews-score-card-page {
  background: #ffffff !important;
  border-color: rgba(33, 29, 28, 0.08) !important;
  box-shadow: 0 8px 30px rgba(33, 29, 28, 0.04) !important;
}

.related-products-section {
  margin-top: 8rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 5rem;
  margin-bottom: 6rem;
}

body.light-mode .related-products-section {
  border-top-color: rgba(33, 29, 28, 0.1);
}

.related-products-section .section-title {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 300;
  font-family: var(--font-serif);
  text-align: center;
}

/* Spinner for loader */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Responsive details page rules */
@media (max-width: 992px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-detail-media-panel {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .product-page-container {
    margin-top: calc(var(--header-height, 160px) + 1.25rem) !important;
  }

  #product-detail-content {
    padding: 0 1rem !important;
  }

  .product-reviews-section,
  .related-products-section {
    margin-top: 5rem;
    padding-top: 3rem;
  }
}

/* Collection page gender selectors layout grid */
.collection-gender-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .collection-gender-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
}

/* Discovery Set Spotlight Layout */
.discovery-spotlight-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg-card);
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

body.light-mode .discovery-spotlight-layout {
  background: #ffffff;
  border: 1px solid rgba(217, 119, 6, 0.2);
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.08);
}

/* Left Graphic Side */
.spotlight-graphic-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.spotlight-product-img {
  width: 100%;
  max-width: 320px;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--border-radius-sm, 12px);
}

.discovery-spotlight-layout:hover .spotlight-product-img {
  transform: translateY(-6px) scale(1.03);
}

.spotlight-case-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
}

body.light-mode .spotlight-case-badge {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
  color: #78350f;
}

/* Right Info Side */
.spotlight-info-wrap {
  position: relative;
  z-index: 2;
  text-align: left;
}

.spotlight-badge-row {
  margin-bottom: 0.8rem;
}

.spotlight-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #f59e0b;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.light-mode .spotlight-tag-pill {
  background: rgba(217, 119, 6, 0.12);
  border-color: rgba(217, 119, 6, 0.3);
  color: #b45309;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.spotlight-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.spotlight-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

.spotlight-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 580px;
}

/* Vials Pill Grid */
.spotlight-vials-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.25rem;
}

.vial-pill-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--border-radius-sm, 8px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

body.light-mode .vial-pill-item {
  background: rgba(247, 246, 242, 0.8);
  border-color: rgba(33, 29, 28, 0.1);
  color: #111827;
}

.vial-pill-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.vial-title {
  font-weight: 700;
  color: var(--text-primary);
}

.vial-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Action Bar */
.spotlight-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

body.light-mode .spotlight-action-bar {
  border-top-color: rgba(33, 29, 28, 0.1);
}

.spotlight-price-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.spotlight-price-box .price-val {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.spotlight-price-box .price-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.spotlight-cta-btn {
  height: 52px;
  padding: 0 2rem !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  border-radius: var(--border-radius-sm, 8px) !important;
}

@media (max-width: 900px) {
  .discovery-spotlight-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem !important;
  }

  .spotlight-vials-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-action-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .spotlight-cta-btn {
    width: 100% !important;
  }
}


/* ── Web Store Image Styling ── */
.product-image {
  width: 100%;
  max-width: 180px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  margin: 0 auto;
}

.product-card:hover .product-image {
  transform: translateY(-8px) scale(1.03);
}

.out-of-stock-tag {
  background: rgba(40, 40, 40, 0.8) !important;
  color: #a1a1aa !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive Logo Image Style */
.logo-img {
  height: 105px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-fast);
  margin: -12px 0;
}

.footer-logo-img {
  height: 140px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  transition: var(--transition-fast);
  margin-bottom: 0.5rem;
  margin-left: -12px;
}

.mobile-logo-img {
  height: 125px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  transition: var(--transition-fast);
}

body:not(.light-mode) .logo-img,
body:not(.light-mode) .mobile-logo-img,
body:not(.light-mode) .footer-logo-img {
  filter: invert(1);
}

@media (max-width: 768px) {
  .logo-img {
    height: 92px !important;
    max-height: 92px !important;
    margin: 0 !important;
  }

  .footer-logo-img {
    height: 115px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 84px !important;
    max-height: 84px !important;
    margin: -8px 0 !important;
  }

  .footer-logo-img {
    height: 100px;
  }
}

/* Custom Searchable Select */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-glass);
  padding: 0.9rem 1.25rem;
  color: var(--text-primary);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-sans);
  transition: var(--transition-fast);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

body.light-mode .custom-select-trigger {
  background: rgba(255, 255, 255, 0.55);
}

.custom-select-trigger:hover {
  border-color: var(--border-glass-focus);
}

.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-onyx);
  border: 1px solid var(--border-glass-focus);
  border-radius: var(--border-radius-sm);
  margin-top: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.light-mode .custom-select-dropdown {
  background: var(--bg-glass);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.custom-select-dropdown.active {
  display: block;
}

.custom-select-search {
  position: sticky;
  top: 0;
  background: var(--bg-onyx);
  padding: 0.5rem;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

body.light-mode .custom-select-search {
  background: var(--bg-glass);
}

.custom-select-search i {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.custom-select-search input {
  background: transparent !important;
  border: none !important;
  padding: 0.5rem !important;
  color: var(--text-primary) !important;
  font-size: 0.9rem !important;
  width: 100% !important;
  outline: none !important;
}

.custom-select-options {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.custom-select-option {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0.75rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.custom-select-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

body.light-mode .custom-select-option:hover {
  background: rgba(0, 0, 0, 0.03);
}

.custom-select-option.placeholder {
  color: var(--text-muted);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-onyx);
  border-right: 1px solid var(--border-glass-focus);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

body.light-mode .mobile-nav-drawer {
  background: var(--bg-glass);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav-drawer.active {
  transform: translateX(320px);
}

.mobile-nav-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-glass);
}

.mobile-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.mobile-nav-close {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.05);
}

body.light-mode .mobile-nav-close:hover {
  background: rgba(0, 0, 0, 0.03);
}

.mobile-nav-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border-glass);
}

.mobile-nav-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-categories h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mobile-nav-categories a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
}

.mobile-nav-categories a:hover,
.mobile-nav-categories a.active {
  color: var(--accent-color);
  padding-left: 5px;
  font-weight: 600;
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Global Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 6rem 2rem 2rem 2rem;
}

body.light-mode .search-overlay {
  background: rgba(250, 248, 245, 0.95);
}

.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.search-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.search-close-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

body.light-mode .search-close-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.search-overlay-content {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.search-overlay-field {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 2px solid var(--border-glass-focus);
  padding: 0.5rem 0;
}

.search-overlay-field i {
  font-size: 2rem;
  color: var(--accent-color);
}

.search-overlay-field input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  font-family: var(--font-serif);
  width: 100%;
  outline: none;
}

.search-overlay-field input::placeholder {
  color: var(--text-muted);
}

.search-results-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.search-results-container::-webkit-scrollbar {
  width: 4px;
}

.search-results-container::-webkit-scrollbar-thumb {
  background: var(--border-glass-focus);
  border-radius: 2px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

body.light-mode .search-result-item {
  background: rgba(0, 0, 0, 0.01);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glass-focus);
  transform: translateY(-2px);
}

body.light-mode .search-result-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.search-result-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  padding: 0.25rem;
}

.search-result-info {
  flex: 1;
}

.search-result-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.search-result-notes {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.search-result-price {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 600;
}

.search-no-results {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Subheader & Header responsive fixes */
@media (max-width: 768px) {
  .subheader-bar {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    display: block;
  }

  .subheader-bar::-webkit-scrollbar {
    display: none;
  }

  .subheader-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 0.75rem 1.5rem;
    width: max-content;
  }

  .subheader-container a {
    flex-shrink: 0;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .category-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    gap: 0.35rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 0.75rem;
  }

  .nav-container {
    padding: 0.25rem 0.75rem !important;
  }

  .nav-actions {
    gap: 0.25rem;
  }

  .nav-btn {
    padding: 0.35rem;
    font-size: 1.1rem;
  }

  .logo-img {
    height: 78px !important;
    max-height: 78px !important;
    margin: 0 !important;
  }
}

/* ==========================================================================
   Checkout High-Contrast Theme Inversion Rules
   Dark Card on Light Page Theme | Light Card on Dark Page Theme
   ========================================================================== */

/* 1. Dark Page Theme (Default): Light Cards for Form & Summary */
body:not(.light-mode) .checkout-form-container,
body:not(.light-mode) .checkout-summary {
  background: #ffffff !important;
  color: #121212 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
}

body:not(.light-mode) .checkout-form-container h2,
body:not(.light-mode) .checkout-form-container h3,
body:not(.light-mode) .checkout-form-container h4,
body:not(.light-mode) .checkout-summary h3,
body:not(.light-mode) .checkout-summary h4 {
  color: #121212 !important;
}

body:not(.light-mode) .checkout-form-container label,
body:not(.light-mode) .checkout-summary label {
  color: #333333 !important;
}

body:not(.light-mode) .checkout-form-container input,
body:not(.light-mode) .checkout-form-container select,
body:not(.light-mode) .checkout-form-container textarea,
body:not(.light-mode) .checkout-summary input {
  background: #f4f2ee !important;
  color: #121212 !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
}

body:not(.light-mode) .checkout-form-container input::placeholder,
body:not(.light-mode) .checkout-summary input::placeholder {
  color: #777777 !important;
}

body:not(.light-mode) .custom-select-trigger {
  background: #f4f2ee !important;
  color: #121212 !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
}

body:not(.light-mode) .custom-select-dropdown {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

body:not(.light-mode) .custom-select-option {
  color: #121212 !important;
}

body:not(.light-mode) .custom-select-option:hover {
  background: #f0ede8 !important;
}

body:not(.light-mode) .payment-card {
  background: #f8f6f2 !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  color: #121212 !important;
}

body:not(.light-mode) .payment-card i,
body:not(.light-mode) .payment-card h4 {
  color: #121212 !important;
}

body:not(.light-mode) .payment-card.active {
  background: #ffffff !important;
  border-color: #c47c6c !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

body:not(.light-mode) .payment-info-box {
  background: #f9f8f5 !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  color: #121212 !important;
}

body:not(.light-mode) .delivery-text-line {
  color: #1a1a1a !important;
  font-weight: 500 !important;
}

body:not(.light-mode) .delivery-highlight,
body:not(.light-mode) .payment-info-box strong {
  color: #9c4c3b !important;
  font-weight: 700 !important;
}

body:not(.light-mode) .delivery-text-sub {
  color: #555555 !important;
}

body:not(.light-mode) .bank-detail-table td {
  color: #121212 !important;
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

body:not(.light-mode) .checkout-summary-row {
  color: #444444 !important;
}

body:not(.light-mode) .checkout-summary-row span:last-child {
  color: #121212 !important;
}

body:not(.light-mode) .checkout-summary-row.total {
  border-top: 1px solid rgba(0, 0, 0, 0.12) !important;
  color: #121212 !important;
}

body:not(.light-mode) .checkout-item-title,
body:not(.light-mode) .checkout-item-price {
  color: #121212 !important;
}


/* 2. Light Page Theme: Dark Cards for Form & Summary */
body.light-mode .checkout-form-container,
body.light-mode .checkout-summary {
  background: #121212 !important;
  color: #FAF9F6 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
}

body.light-mode .checkout-form-container h2,
body.light-mode .checkout-form-container h3,
body.light-mode .checkout-form-container h4,
body.light-mode .checkout-summary h3,
body.light-mode .checkout-summary h4 {
  color: #FAF9F6 !important;
}

body.light-mode .checkout-form-container label,
body.light-mode .checkout-summary label {
  color: #c5bdb5 !important;
}

body.light-mode .checkout-form-container input,
body.light-mode .checkout-form-container select,
body.light-mode .checkout-form-container textarea,
body.light-mode .checkout-summary input {
  background: #1e1e1e !important;
  color: #FAF9F6 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

body.light-mode .checkout-form-container input::placeholder,
body.light-mode .checkout-summary input::placeholder {
  color: #aaaaaa !important;
}

body.light-mode .custom-select-trigger {
  background: #1e1e1e !important;
  color: #FAF9F6 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

body.light-mode .custom-select-dropdown {
  background: #181818 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

body.light-mode .custom-select-option {
  color: #FAF9F6 !important;
}

body.light-mode .custom-select-option:hover {
  background: #282828 !important;
}

body.light-mode .payment-card {
  background: #1a1a1a !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #FAF9F6 !important;
}

body.light-mode .payment-card i,
body.light-mode .payment-card h4 {
  color: #FAF9F6 !important;
}

body.light-mode .payment-card.active {
  background: #242424 !important;
  border-color: #e0a899 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.delivery-text-line {
  color: #1a1a1a !important;
  font-weight: 500 !important;
}

.delivery-highlight {
  color: #9c4c3b !important;
  font-weight: 700 !important;
}

.delivery-text-sub {
  color: #555555 !important;
}

body.light-mode .payment-info-box {
  background: #faf7f2 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #1a1a1a !important;
}

body.light-mode .delivery-text-line {
  color: #1a1a1a !important;
}

body.light-mode .delivery-highlight,
body.light-mode .payment-info-box strong {
  color: #9c4c3b !important;
  font-weight: 700 !important;
}

body.light-mode .delivery-text-sub {
  color: #555555 !important;
}

body.light-mode .payment-info-box h4 {
  color: #1c1917 !important;
}

body.light-mode .bank-detail-table td {
  color: #292524 !important;
  border-bottom-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .checkout-summary-row {
  color: #c5bdb5 !important;
}

body.light-mode .checkout-summary-row span:last-child {
  color: #FAF9F6 !important;
}

body.light-mode .checkout-summary-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #FAF9F6 !important;
}

body.light-mode .checkout-item-title,
body.light-mode .checkout-item-price {
  color: #FAF9F6 !important;
}

/* ==========================================================================
   Checkout Page Buttons Visibility & Contrast Fixes (Light & Dark Modes)
   ========================================================================== */

/* 1. Apply Promo Button - Solid High Contrast */
#btn-apply-promo,
.promo-code-box .btn-outline {
  background: var(--accent-color, #e0a899) !important;
  color: #080808 !important;
  border: 1px solid var(--accent-color, #e0a899) !important;
  font-weight: 700 !important;
  transition: var(--transition-fast) !important;
}

#btn-apply-promo:hover,
.promo-code-box .btn-outline:hover {
  background: #ffffff !important;
  color: #080808 !important;
  border-color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
}

#btn-apply-promo:disabled,
.promo-code-box .btn-outline:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* 2. Complete Order Button - Fixed for Light Mode & Dark Mode */
/* Default (Dark Theme) */
.checkout-form-container .btn-primary,
.checkout-summary .btn-primary,
button.btn-primary[type="submit"] {
  background: #FAF9F6 !important;
  color: #080808 !important;
  border: 1px solid #FAF9F6 !important;
  font-weight: 700 !important;
  transition: var(--transition-fast) !important;
}

.checkout-form-container .btn-primary:hover,
.checkout-summary .btn-primary:hover,
button.btn-primary[type="submit"]:hover {
  background: var(--accent-color, #e0a899) !important;
  color: #080808 !important;
  border-color: var(--accent-color, #e0a899) !important;
  box-shadow: 0 4px 20px var(--accent-glow, rgba(224, 168, 153, 0.4)) !important;
}

/* Light Theme Override */
body.light-mode .checkout-form-container .btn-primary,
body.light-mode .checkout-summary .btn-primary,
body.light-mode button.btn-primary[type="submit"] {
  background: #121212 !important;
  color: #FAF9F6 !important;
  border: 1px solid #121212 !important;
}

body.light-mode .checkout-form-container .btn-primary:hover,
body.light-mode .checkout-summary .btn-primary:hover,
body.light-mode button.btn-primary[type="submit"]:hover {
  background: var(--accent-color, #c47c6c) !important;
  color: #ffffff !important;
  border-color: var(--accent-color, #c47c6c) !important;
  box-shadow: 0 4px 20px rgba(196, 124, 108, 0.4) !important;
}

/* ==========================================================================
   Mobile & Tablet Responsiveness Enhancements (Hero Slider, Gender Grid, Subheader)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-slider {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }
}

@media (max-width: 768px) {

  /* Subheader Horizontal Scroll */
  .subheader-bar {
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .subheader-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 1.25rem !important;
    padding: 0.6rem 1.25rem !important;
    width: max-content !important;
  }

  /* Hero Slider Responsive Dynamic Height (No Cropping, No Gap) */
  .hero-slider {
    height: auto !important;
    min-height: auto !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: var(--header-height, 185px) !important;
    padding-top: 0 !important;
  }

  .hero-slider .slider-wrapper {
    position: relative !important;
    height: auto !important;
    width: 100% !important;
  }

  .hero-slider .slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.8s ease, visibility 0.8s ease !important;
  }

  .hero-slider .slide.active {
    display: block !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
  }

  .hero-banner-image {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
    object-fit: contain !important;
  }

  .hero-slider .slider-dots {
    bottom: 0.6rem !important;
  }

  .hero-slider .slide-grid {
    grid-template-columns: 1fr !important;
    padding: calc(var(--header-height, 195px) + 1.25rem) 1.25rem 3rem 1.25rem !important;
    gap: 1.25rem !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    box-sizing: border-box !important;
    text-align: center !important;
    overflow: visible !important;
  }

  .hero-slider .slide-text-side {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-slider .slide-text-side h2 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    margin: 0.75rem 0 !important;
  }

  .hero-slider .slide-text-side p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
    word-break: break-word !important;
    margin-bottom: 1.25rem !important;
  }

  .hero-slider .hero-tag-badge {
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    font-size: 0.68rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
  }

  .hero-slider .hero-notes-list {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.4rem !important;
    max-width: 100% !important;
    margin-bottom: 1rem !important;
  }

  .hero-slider .note-pill {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.65rem !important;
  }

  .hero-slider .hero-perfume-spec {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.4rem !important;
    font-size: 0.76rem !important;
    max-width: 100% !important;
    margin-bottom: 1.25rem !important;
  }

  .hero-slider .cta-group {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 1.25rem auto 0 auto !important;
    gap: 0.75rem !important;
    align-items: stretch !important;
  }

  .hero-slider .cta-group .btn {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 48px !important;
    box-sizing: border-box !important;
  }

  .hero-slider .slide-graphic-side {
    height: auto !important;
    min-height: 220px !important;
    margin-top: 1.5rem !important;
  }

  .hero-slider .hero-slider-dots {
    position: relative !important;
    bottom: auto !important;
    margin: 1.5rem 0 2rem 0 !important;
    z-index: 10 !important;
  }

  /* Gender Cards Responsive Fixes */
  .gender-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .gender-box {
    height: auto !important;
    min-height: 220px !important;
    padding: 1.75rem 1.5rem !important;
    box-sizing: border-box !important;
  }

  .gender-svg-wrap {
    width: 85px !important;
    height: 100px !important;
    top: 1rem !important;
    right: 1rem !important;
    opacity: 0.55 !important;
  }
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    padding: 2.5rem 1.5rem !important;
  }

  .story-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .story-stats-row {
    flex-wrap: wrap !important;
    gap: 1.25rem !important;
  }

  .story-stat-divider {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-slider .slide-grid {
    padding: calc(var(--header-height, 195px) + 1rem) 1rem 2.5rem 1rem !important;
  }

  .hero-slider .slide-text-side h2 {
    font-size: 1.55rem !important;
  }

  .hero-slider .cta-group {
    max-width: 100% !important;
  }

  .gender-box {
    min-height: 200px !important;
    padding: 1.5rem 1.25rem !important;
  }

  .story-title {
    font-size: 1.6rem !important;
  }

  .story-features-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .story-stats-row {
    justify-content: space-around !important;
  }
}

/* ==========================================================================
   Feature 2: Customer Reviews & Real Impressions
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  padding: 2rem 2rem 1.75rem 2rem;
  border-radius: var(--border-radius-md, 16px);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}

body.light-mode .review-card {
  background: #ffffff;
  border: 1px solid rgba(33, 29, 28, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.review-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  display: flex;
  gap: 0.2rem;
}

.review-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.review-text {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

body.light-mode .review-footer {
  border-top-color: rgba(33, 29, 28, 0.08);
}

.reviewer-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 700;
}

.reviewer-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.longevity-pill {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-color);
  background: rgba(196, 124, 108, 0.1);
  border: 1px solid rgba(196, 124, 108, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================================
   Feature 3: The Art of Scent Layering & Application Guide
   ========================================================================== */
.scent-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.guide-card {
  position: relative;
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: var(--border-radius-md, 16px);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.35s ease;
}

body.light-mode .guide-card {
  background: #ffffff;
  border: 1px solid rgba(33, 29, 28, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.guide-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.guide-step-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(196, 124, 108, 0.25);
  line-height: 1;
}

.guide-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(196, 124, 108, 0.12);
  border: 1px solid rgba(196, 124, 108, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  transition: all 0.3s ease;
}

.guide-icon-wrap i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.guide-card:hover .guide-icon-wrap {
  transform: scale(1.1);
  background: var(--accent-color);
}

.guide-card:hover .guide-icon-wrap i {
  color: #ffffff;
}

.guide-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.guide-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Feature 5: Floating Sticky Quick-Add Bar
   ========================================================================== */
/* ==========================================================================
   Feature 5: Right-Side Floating Bottle Quick-Add Widget
   ========================================================================== */
.sticky-quick-bar {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  left: auto;
  width: auto;
  max-width: 420px;
  background: rgba(18, 18, 18, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  z-index: 9999 !important;
  padding: 0.85rem 1.15rem;
  transform: translateX(140%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

body.light-mode .sticky-quick-bar {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(33, 29, 28, 0.12);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sticky-quick-bar.active {
  transform: translateX(0) !important;
}

.sticky-bar-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.sticky-bar-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
}

.sticky-bar-details {
  min-width: 0;
  flex: 1;
}

.sticky-bar-icon {
  position: relative;
  width: 42px;
  height: 54px;
  border-radius: 10px 10px 5px 5px;
  background: rgba(196, 124, 108, 0.12);
  border: 1px solid rgba(196, 124, 108, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0 !important;
  padding: 2px;
}

.sticky-bar-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 3px;
  background: var(--accent-color, #c47c6c);
  border-radius: 2px 2px 0 0;
  z-index: 2;
}

.sticky-bar-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 8px 8px 4px 4px !important;
}

.sticky-bar-title {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.sticky-bar-price {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 0.15rem;
}

.sticky-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.sticky-add-btn {
  padding: 0.55rem 1.15rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.05em !important;
  border-radius: 10px !important;
  white-space: nowrap;
  flex-shrink: 0 !important;
}

.sticky-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0 0.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.sticky-close-btn:hover {
  color: var(--text-primary);
}

/* Mobile & Tablet Media Queries for Reviews & Scent Guide & Sticky Bar */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    padding: 2.5rem 1.5rem !important;
  }

  .story-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .scent-guide-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 600px) {
  .sticky-quick-bar {
    bottom: 1rem !important;
    right: 1rem !important;
    left: 1rem !important;
    width: calc(100% - 2rem) !important;
    max-width: calc(100% - 2rem) !important;
    padding: 0.65rem 0.85rem !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
  }

  .sticky-bar-container {
    gap: 0.5rem !important;
    justify-content: space-between !important;
  }

  .sticky-bar-title {
    font-size: 0.76rem !important;
  }

  .sticky-add-btn {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.72rem !important;
  }

  .story-features-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* ==========================================================================
   Luxury Overhaul for Filter Bar & Collection Gender Cards
   ========================================================================== */
.filter-bar {
  padding: 1.15rem 1.75rem;
  border-radius: var(--border-radius-md, 18px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.light-mode .filter-bar {
  background: #ffffff;
  border-color: rgba(33, 29, 28, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.category-triggers {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.category-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  padding: 0.55rem 1.35rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.light-mode .category-btn {
  background: rgba(33, 29, 28, 0.04);
  border-color: rgba(33, 29, 28, 0.08);
  color: #4b5563;
}

.category-btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  color: var(--text-primary);
}

.category-btn.active {
  background: var(--accent-color, #c47c6c) !important;
  color: #ffffff !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 6px 20px rgba(196, 124, 108, 0.35) !important;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
  min-width: 260px;
}

body.light-mode .search-box {
  background: rgba(33, 29, 28, 0.03);
  border-color: rgba(33, 29, 28, 0.08);
}

.search-box:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(196, 124, 108, 0.2);
}

.search-box i {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-right: 0.6rem;
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  width: 100%;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

/* Luxury Collection Gender Selector Cards */
.collection-gender-card {
  position: relative;
  height: 120px !important;
  padding: 1.25rem 1.75rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-radius: var(--border-radius-md, 18px) !important;
  background: var(--bg-card) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
}

body.light-mode .collection-gender-card {
  background: #ffffff !important;
  border-color: rgba(33, 29, 28, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.collection-gender-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15) !important;
}

.gender-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.gender-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.18rem 0.55rem;
  border-radius: 50px;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.male-badge {
  background: rgba(99, 102, 241, 0.12);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.female-badge {
  background: rgba(244, 63, 94, 0.12);
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.25);
}

.unisex-badge {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.gender-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 0.1rem 0;
}

.gender-card-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.gender-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  flex-shrink: 0;
}

.male-icon-badge {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.22);
}

.female-icon-badge {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.22);
}

.unisex-icon-badge {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.22);
}

.collection-gender-card:hover .gender-icon-badge {
  transform: scale(1.15) rotate(6deg);
}

.collection-gender-card:hover .male-icon-badge {
  background: #6366f1;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.collection-gender-card:hover .female-icon-badge {
  background: #f43f5e;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.35);
}

.collection-gender-card:hover .unisex-icon-badge {
  background: #a855f7;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
}

@media (max-width: 900px) {
  .collection-gender-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 650px) {
  .collection-gender-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .filter-bar {
    padding: 1rem !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .category-triggers {
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding-bottom: 0.5rem !important;
    width: 100% !important;
  }

  .search-box {
    width: 100% !important;
    min-width: 100% !important;
  }
}

/* Collection Masterpiece Grid Layout (4-Column Desktop) */
.collection-masterpiece-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
}

@media (max-width: 1100px) {
  .collection-masterpiece-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 600px) {
  .collection-masterpiece-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .collection-hero-banner-card {
    padding: 2rem 1.5rem !important;
    border-radius: 20px !important;
  }
}

/* Pulsing Sillage Keyframe Animation for Hero Bottle Visual */
@keyframes sillagePulse {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.35;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .hero-bottle-visual-wrapper {
    margin: 1.5rem auto 0 auto !important;
  }
}

/* Support Concierge Mobile Responsive UX Enhancements */
@media (max-width: 600px) {
  .support-modal-card {
    width: 95% !important;
    max-height: 88vh !important;
    padding: 1.25rem 1rem !important;
    border-radius: 20px !important;
  }

  .support-modal-header {
    margin-bottom: 0.85rem !important;
  }

  .support-modal-header div {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.15rem !important;
    margin-bottom: 0.35rem !important;
  }

  .support-modal-header p {
    font-size: 0.76rem !important;
  }

  .support-nav-tabs {
    gap: 0.35rem !important;
    margin-bottom: 0.85rem !important;
    padding-bottom: 0.5rem !important;
  }

  .support-pill-btn {
    font-size: 0.78rem !important;
    padding: 0.45rem 0.6rem !important;
    min-width: unset !important;
  }

  .support-tab-container {
    padding-right: 0.2rem !important;
    font-size: 0.88rem !important;
  }

  .support-tab-container h4 {
    font-size: 1.2rem !important;
    margin-bottom: 0.6rem !important;
  }
}

/* Hide Sticky Quick-Add Bar when Cart Drawer or Modals are Open */
.modal-overlay.active~#sticky-quick-bar,
.cart-drawer.active~#sticky-quick-bar,
.drawer.active~#sticky-quick-bar,
body.cart-open #sticky-quick-bar {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(100%) !important;
}

/* Senior UI/UX Luxury Overhaul: Discovery Spotlight Graphic Card */
.spotlight-graphic-wrap {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  background: linear-gradient(145deg, rgba(30, 24, 22, 0.95) 0%, rgba(16, 13, 12, 0.98) 100%) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 0 40px rgba(196, 124, 108, 0.1) !important;
  border: 1px solid rgba(196, 124, 108, 0.3) !important;
  padding: 1.5rem 1.5rem 1.75rem 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.spotlight-graphic-wrap:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), inset 0 0 50px rgba(196, 124, 108, 0.18) !important;
  border-color: rgba(196, 124, 108, 0.5) !important;
}

.spotlight-product-img,
#tester-box-img {
  width: 100% !important;
  max-height: 320px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  display: block !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  margin-bottom: 1.25rem !important;
}

.spotlight-case-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  background: rgba(196, 124, 108, 0.15) !important;
  border: 1px solid rgba(196, 124, 108, 0.4) !important;
  color: var(--accent-color) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 50px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(10px) !important;
}

.spotlight-case-badge i {
  font-size: 0.95rem !important;
  color: var(--accent-color) !important;
}

/* ==========================================================================
   Comprehensive Mobile Responsive Enhancements (Checkout, Detail Page, Indicators)
   ========================================================================== */
@media (max-width: 768px) {

  /* 1. Checkout Form Container & Summary Padding */
  .checkout-layout {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1rem 0.5rem !important;
    margin-top: 5rem !important;
  }

  .checkout-form-container,
  .checkout-summary {
    padding: 1.25rem 1rem !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .form-group-row {
    flex-direction: column !important;
    gap: 1.25rem !important;
  }

  .promo-code-box>div {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }

  #promo-input {
    width: 100% !important;
    min-width: 0 !important;
  }

  #btn-apply-promo {
    width: 100% !important;
  }

  /* 2. Product Detail Price & Add To Bag Button Alignment */
  .product-price-wrap {
    white-space: nowrap !important;
  }

  .product-price-wrap .product-price {
    white-space: nowrap !important;
    display: inline-block !important;
  }

  /* 3. Performance Indicators (Projection & Longevity) Alignment */
  .performance-indicators {
    max-width: 100% !important;
    margin: 1.5rem 0 !important;
  }

  .indicator-row {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }

  .indicator-row>span:first-child {
    min-width: 85px !important;
    font-size: 0.8rem !important;
  }

  .indicator-bar-bg {
    width: 110px !important;
    flex-shrink: 1 !important;
  }
}

/* ==========================================================================
   Prominent Product Card Fragrance Notes Styling
   ========================================================================== */
.notes-visualizer {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.35rem !important;
  padding: 0.65rem 0.65rem !important;
  background: rgba(196, 124, 108, 0.08) !important;
  border: 1px solid rgba(196, 124, 108, 0.3) !important;
  border-radius: 12px !important;
  margin: 0.85rem 0 !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: inset 0 0 15px rgba(196, 124, 108, 0.05) !important;
}

.notes-visualizer.special-set-visualizer {
  display: flex !important;
  grid-template-columns: none !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 0.6rem 0.75rem !important;
  min-height: 48px !important;
}

.special-set-visualizer span {
  white-space: nowrap !important;
  font-size: 0.76rem !important;
  line-height: 1.2 !important;
}

body.light-mode .notes-visualizer {
  background: rgba(196, 124, 108, 0.06) !important;
  border-color: rgba(196, 124, 108, 0.25) !important;
}

.note-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.note-label {
  font-size: 0.66rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--accent-color, #c47c6c) !important;
  margin-bottom: 0.15rem !important;
}

.note-value {
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  color: var(--text-primary, #ffffff) !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  overflow: hidden !important;
  width: 100% !important;
  text-align: center !important;
}

body.light-mode .note-value {
  color: #111827 !important;
}

/* Universal Price Font - Plain Pill Font (Plus Jakarta Sans) */
.product-price,
.product-old-price,
.product-price-wrap,
.cart-item-price,
.checkout-item-price,
.search-result-price,
.sticky-bar-price,
.spotlight-price-box .price-val,
.hero-price-pill,
#product-price-display,
.total-row.grand-total,
.total-row.grand-total span,
.checkout-summary-row.total,
.checkout-summary-row.total span {
  font-family: var(--font-sans) !important;
}

/* ── 14th August Azadi Sale Promo Popup Modal ────────────────────── */
.promo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.promo-modal-card {
  position: relative;
  width: fit-content;
  max-width: min(460px, 90vw);
  max-height: 88vh;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(255, 255, 255, 0.25);
  transform: scale(0.92) translateY(12px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-modal-overlay.active .promo-modal-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.promo-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #111111;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.promo-close-btn:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  transform: scale(1.1) rotate(90deg);
}

.promo-banner-img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

@media (max-width: 600px) {
  .promo-modal-card {
    max-width: 92vw;
    border-radius: 14px;
  }

  .promo-banner-img {
    border-radius: 12px;
  }

  .promo-close-btn {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
  }
}

/* ── Bank Transfer Table Responsiveness ──────────────────────────── */
.bank-detail-table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 0.88rem !important;
}

.bank-detail-table td {
  padding: 0.65rem 0 !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

.iban-cell-td {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0.4rem !important;
  flex-wrap: wrap !important;
  border: none !important;
}

.iban-text-span {
  font-family: var(--font-sans) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.02em !important;
  word-break: break-all !important;
}

@media (max-width: 600px) {
  .payment-info-box {
    padding: 1rem !important;
  }

  .bank-detail-table {
    font-size: 0.82rem !important;
  }

  .iban-cell-td {
    justify-content: flex-start !important;
    margin-top: 0.2rem !important;
  }

  .iban-text-span {
    font-size: 0.76rem !important;
  }
}

/* ── Mobile Complete Order Button Placement (Appears after Grand Total) ── */
.mobile-complete-order-wrap {
  display: none;
}

@media (max-width: 992px) {
  #btn-complete-order-desktop {
    display: none !important;
  }

  .mobile-complete-order-wrap {
    display: block !important;
    margin-top: 1.5rem !important;
    width: 100% !important;
  }

  .btn-complete-order-mobile {
    width: 100% !important;
    padding: 1.25rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 20px var(--accent-glow) !important;
  }
}

/* ── Mobile Cart Drawer Footer & Safe-Area Adjustments ────────────── */
@media (max-width: 600px) {
  .cart-drawer {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .cart-header {
    padding: 1.25rem 1.5rem !important;
  }

  .cart-items-wrapper {
    padding: 1.25rem 1.5rem !important;
    gap: 1rem !important;
  }

  .cart-footer {
    padding: 1.25rem 1.5rem max(1.5rem, env(safe-area-inset-bottom)) 1.5rem !important;
  }

  .cart-totals {
    margin-bottom: 1rem !important;
    gap: 0.5rem !important;
  }

  .total-row.grand-total {
    font-size: 1.25rem !important;
    padding-top: 0.5rem !important;
  }

  .cart-footer .btn-primary {
    padding: 1.1rem !important;
    font-size: 0.92rem !important;
  }
}

/* ── 14th August Azadi Sale Top Live Countdown Bar ───────────────── */
.azadi-timer-bar {
  background: linear-gradient(90deg, #051a0f 0%, #0d3822 50%, #051a0f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 0.45rem 2.5rem 0.45rem 1.25rem;
  position: relative;
  z-index: 1005;
  box-shadow: none;
  font-family: var(--font-sans);
  transform: translateZ(0);
}

.azadi-timer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  text-align: center;
}

.azadi-timer-tag {
  background: rgba(196, 124, 108, 0.22);
  color: #e0a899;
  border: 1px solid rgba(196, 124, 108, 0.42);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.azadi-timer-title {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.azadi-timer-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.azadi-timer-clock {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
}

.timer-unit-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.unit-label {
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.12rem;
  font-weight: 700;
}

.timer-card {
  background: #ffffff;
  color: #080808;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.18rem 0.45rem;
  border-radius: 5px;
  min-width: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  line-height: 1.2;
  font-family: var(--font-sans);
}

.timer-colon {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.12rem;
}

.azadi-timer-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.4rem;
  transition: color 0.2s ease;
}

.azadi-timer-close:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .azadi-timer-bar {
    padding: 0.45rem 2.2rem 0.45rem 0.75rem;
  }

  .azadi-timer-content {
    gap: 0.4rem;
  }

  .azadi-timer-title,
  .azadi-timer-sub {
    font-size: 0.76rem;
  }

  .azadi-timer-tag {
    font-size: 0.7rem;
    padding: 0.12rem 0.45rem;
  }

  .timer-card {
    font-size: 0.85rem;
    min-width: 25px;
    padding: 0.12rem 0.3rem;
  }

  .unit-label {
    font-size: 0.5rem;
  }
}

/* ── Homepage 4-Perfumes Featured Slider ────────────────────────── */
#home-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  #home-featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  #home-featured-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1rem !important;
    padding: 0.5rem 0.25rem 1.5rem 0.25rem !important;
    scrollbar-width: none !important;
  }
  #home-featured-grid::-webkit-scrollbar {
    display: none !important;
  }
  #home-featured-grid .product-card {
    flex: 0 0 82% !important;
    width: 82% !important;
    min-width: 82% !important;
    scroll-snap-align: center !important;
  }
}

/* ==============================================================================
   SEO & ACCESSIBILITY UTILITIES
   ============================================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}