/* --- Variables & Theme --- */
:root {
  --color-bg-deep: #0b0b0b;
  --color-bg-surface: #121212;
  --color-bg-elevated: #1a1a1a;

  --color-text-main: #e5e5e5;
  --color-text-muted: #9a9a9a;

  --color-accent-gold: #d4af37;
  --color-accent-amber: #f4c542;
  --color-hover-glow: rgba(212, 175, 55, 0.25);

  --font-heading: "Cinzel", serif;
  --font-body: "Montserrat", sans-serif;

  --spacing-section: 8rem;
  --spacing-block: 4rem;

  --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.dark-theme {
  background-color: var(--color-bg-deep);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--color-accent-gold);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

p {
  color: var(--color-text-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Layout & Utilities --- */
section {
  padding: var(--spacing-section) 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-block);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.image-placeholder,
.visual-placeholder {
  background: linear-gradient(135deg,
      var(--color-bg-elevated) 0%,
      rgba(30, 30, 30, 0) 100%);
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--color-accent-amber);
  color: var(--color-accent-amber);
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--color-hover-glow);
  color: var(--color-text-main);
  border-color: var(--color-accent-gold);
}

.btn-secondary {
  display: inline-block;
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-accent-gold);
  padding-bottom: 0.25rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  color: var(--color-accent-amber);
  border-bottom-color: var(--color-accent-amber);
}

/* --- Header --- */
.main-header {
  display: flex;
  justify-content: center;
  /* Centers the nav-dock */
  align-items: center;
  padding: 0 5%;
  position: fixed;
  top: 1.5rem;
  /* Elevated position */
  width: 100%;
  z-index: 100;
  transition: top 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-header.is-sticky {
  background-color: var(--color-bg-main) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  top: 0;
  padding: 0.8rem 5%;
}

.nav-dock {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0.5rem 2rem;
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition:
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

.main-header.is-sticky .nav-dock {
  background: rgba(10, 10, 10, 0.9);
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.logo-link {
  flex: 1 0 25%;
  /* Take up exactly 25% of the bar, do not shrink */
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo-img {
  height: 60px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain;
  filter: brightness(1.15) drop-shadow(0 0 20px rgba(212, 175, 55, 0.35));
  transition: var(--transition-smooth);
}

.main-header.is-sticky .logo-img {
  height: 50px;
  /* Pruned for sticky precision */
}

.logo-img:hover {
  opacity: 1;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.35));
}

.primary-nav {
  flex: 1 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Add this to guarantee vertical alignment */
}

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
  /* Softened text to prioritize Brand presence */
}

.primary-nav a:hover,
.primary-nav a.active {
  opacity: 1;
  color: var(--color-accent-gold);
}

.primary-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent-gold);
}

.header-actions {
  flex: 1 0 25%;
  /* Take up exactly 25% of the bar */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.cart-btn {
  background: none;
  border: none;
  color: var(--color-text-main);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cart-btn:hover {
  color: var(--color-accent-amber);
}

/* --- 1. Hero Section --- */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-bg-deep);
  /* Base dark */
  padding-top: 10rem;
  /* Increased padding to accommodate massive 130px logo anchor */
  position: relative;
  overflow: hidden;
}

/* Cinematic Slider Background */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--color-bg-deep);
  /* Base fallback */
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  /* Shifts content downward — bottle feels grounded */
  background-repeat: no-repeat;
  opacity: 0;
  filter: blur(2px) contrast(0.82);
  /* Soft, ambient — not a product hero */
  animation: slidePanFade 21s infinite ease-in-out;
}

/* 3 slides * 7 seconds each = 21s total duration. */
.slide-1 {
  animation-delay: 0s;
}

.slide-2 {
  animation-delay: 7s;
}

.slide-3 {
  animation-delay: 14s;
}

/* Extremely soft cinematic zoom & crossfade */
@keyframes slidePanFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  15% {
    opacity: 1;
    transform: scale(1.02);
  }

  33% {
    opacity: 1;
    transform: scale(1.04);
  }

  43% {
    opacity: 0;
    transform: scale(1.05);
  }

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

/* Vertical vignette: dark top, clear center, dark bottom */
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(8, 8, 8, 0.75) 0%,
      /* darker top */
      rgba(8, 8, 8, 0.2) 35%,
      /* fading in */
      rgba(8, 8, 8, 0) 50%,
      /* clear center */
      rgba(8, 8, 8, 0.2) 65%,
      /* fading out */
      rgba(8, 8, 8, 0.75) 100%
      /* darker bottom */
    );
  pointer-events: none;
  z-index: 1;
}

/* Very subtle edge textures, center kept clean */
.hero-edge-mist {
  position: absolute;
  top: 0;
  height: 100%;
  width: 20vw;
  pointer-events: none;
  z-index: 2;
  opacity: 0.015;
  /* Extremely low opacity */
  mix-blend-mode: screen;
}

.hero-edge-mist.left {
  left: 0;
  background:
    linear-gradient(90deg, rgba(200, 200, 200, 0.4) 0%, transparent 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero-edge-mist.right {
  right: 0;
  background:
    linear-gradient(270deg, rgba(200, 200, 200, 0.4) 0%, transparent 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero-light-streak {
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: linear-gradient(135deg,
      transparent 30%,
      rgba(212, 175, 55, 0.03) 50%,
      transparent 70%);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: streakPan 20s infinite alternate ease-in-out;
}

@keyframes streakPan {
  0% {
    transform: translateX(-5%);
    opacity: 0.8;
  }

  100% {
    transform: translateX(5%);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  /* Keep above mist */
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--color-accent-gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--color-text-main);
}

.hero-description {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  color: var(--color-text-muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

/* Gold-bordered outline button for hero CTAs */
.btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--color-accent-gold, #D4AF37);
  color: var(--color-accent-gold, #D4AF37);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  background: var(--color-accent-gold, #D4AF37);
  color: var(--color-bg-deep, #080808);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

/* --- Thin Centered Strip --- */
.limited-strip {
  text-align: center;
  padding: 1.5rem 5%;
  background-color: var(--color-bg-elevated);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.limited-strip p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent-gold);
  margin: 0;
}

/* --- 2. Mood-Based Navigation --- */
.mood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mood-card {
  position: relative;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
  border-radius: 4px;
}

/* Mood-specific ambient gradients */
.mood-confidence {
  background: radial-gradient(circle at top right,
      rgba(212, 175, 55, 0.05) 0%,
      var(--color-bg-elevated) 80%);
}

.mood-attraction {
  background: radial-gradient(circle at top right,
      rgba(244, 197, 66, 0.06) 0%,
      var(--color-bg-elevated) 80%);
}

.mood-calm {
  background: radial-gradient(circle at top right,
      rgba(140, 150, 160, 0.06) 0%,
      var(--color-bg-elevated) 80%);
}

.mood-power {
  background: radial-gradient(circle at bottom left,
      rgba(0, 0, 0, 0.6) 0%,
      var(--color-bg-elevated) 80%);
}

.mood-icon {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
  z-index: 2;
}

.mood-icon svg {
  opacity: 0.7;
}

.mood-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
  transition: var(--transition-smooth);
  text-align: center;
}

.mood-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      var(--color-hover-glow) 0%,
      transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
  pointer-events: none;
}

.mood-card:hover {
  border-color: var(--color-accent-gold);
  transform: translateY(-5px);
}

.mood-card:hover .mood-glow {
  opacity: 1;
}

.mood-card:hover .mood-icon {
  color: var(--color-accent-amber);
  transform: scale(1.1);
}

.mood-card:hover .mood-label {
  color: var(--color-accent-gold);
}

/* --- 3. Bestsellers --- */
/* Slider Structure */
.slider-container {
  position: relative;
  padding: 0 4rem;
  /* Space for arrows */
}

.slider-viewport {
  overflow: hidden;
  padding: 1rem 0;
}

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

.slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 2.5rem;
}

.slider-track .product-card {
  flex: 0 0 calc(33.333% - 1.667rem);
  /* 3 items desktop */
  min-width: 0;
  /* Prevents overflow content from pushing track */
  padding-bottom: 2rem;
}

.slider-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--color-text-main);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.slider-nav:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

/* Responsive adjustments for slider */
@media (max-width: 992px) {
  .slider-track .product-card {
    width: calc(50vw - 4rem);
    flex: 0 0 calc(50vw - 4rem);
    /* 2 items tablet */
  }
}

@media (max-width: 640px) {
  .slider-container {
    padding: 0 1rem;
  }

  .slider-track .product-card {
    width: calc(100vw - 2rem);
    flex: 0 0 calc(100vw - 2rem);
    /* 1 item mobile */
  }

  .slider-nav {
    display: none;
    /* Swipe on mobile */
  }
}

.product-image-wrapper {
  margin-bottom: 1.5rem;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: var(--color-bg-deep);
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card.featured .product-image-wrapper {
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(212, 175, 55, 0.06);
  transform: translateY(-5px);
}

.product-card.featured .product-title {
  color: var(--color-accent-gold);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 1rem;
  transition: var(--transition-smooth);
}

.brand-overlay.small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 1rem 1rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s ease, max-height 0.4s ease;
}

.action-btn {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem;
  color: var(--color-text-main);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
  background: rgba(11, 11, 11, 0.4);
  cursor: pointer;
}

.action-btn:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  background: rgba(212, 175, 55, 0.05);
}

.action-btn.primary {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-accent-amber);
  color: var(--color-accent-amber);
}

.action-btn.primary:hover {
  background: rgba(212, 175, 55, 0.2);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 20px var(--color-hover-glow);
}

.product-card:hover .product-actions {
  opacity: 1;
  max-height: 120px;
}

.product-card:hover .product-image {
  opacity: 0.8;
  transform: scale(1.05);
}

.product-card:hover .image-placeholder {
  border-color: rgba(212, 175, 55, 0.3);
}

.product-title a {
  font-size: 1.25rem;
  color: var(--color-text-main);
}

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

.product-notes {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text-main);
}

/* --- Reassurance Strip --- */
.reassurance-strip {
  background-color: var(--color-bg-surface);
  padding: var(--spacing-block) 5%;
  text-align: center;
}

.reassurance-items {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
  gap: 1rem;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-main);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reassurance-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(212, 175, 55, 0.4) 50%,
      transparent 100%);
}

/* --- Premium Video Section --- */
.video-section {
  padding: var(--spacing-section) 5%;
}

.video-slider-container {
  position: relative;
  padding: 2rem 0;
}

.video-viewport {
  overflow: hidden;
  padding: 1rem 0;
  margin: 0 -5%;
  /* Pull to edges */
  padding-left: 5%;
}

.video-slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 2rem;
  cursor: grab;
}

.video-slider-track:active {
  cursor: grabbing;
}

.video-card {
  flex: 0 0 30%;
  /* 3 items desktop */
  min-width: 300px;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--color-bg-deep);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.cinematic-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.video-card.playing .cinematic-video {
  opacity: 1;
}

.video-card.playing .video-placeholder {
  opacity: 0;
}

.video-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-accent-gold);
  transition: width var(--transition-smooth) ease;
  z-index: 10;
}

@media (max-width: 1200px) {
  .video-card {
    flex: 0 0 45%;
  }
}

@media (max-width: 768px) {
  .video-card {
    flex: 0 0 80%;
  }

  .video-viewport {
    margin: 0 -5%;
    padding-left: 10%;
  }
}

/* Simulate the cinematic gradient over the elements */
.video-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 60%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.06'/%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
  animation: mistDrift 15s infinite alternate ease-in-out;
}

.cinematic-bg {
  background: radial-gradient(circle at center,
      rgba(20, 20, 20, 0.9) 0%,
      var(--color-bg-deep) 100%);
}

.cinematic-bg-2 {
  background: radial-gradient(circle at top right,
      rgba(40, 35, 25, 0.7) 0%,
      var(--color-bg-deep) 100%);
}

.cinematic-bg-3 {
  background: radial-gradient(circle at bottom left,
      rgba(25, 30, 40, 0.8) 0%,
      var(--color-bg-deep) 100%);
}

.bottle-silhouette {
  position: absolute;
  width: 40%;
  height: 60%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(0, 0, 0, 0.8) 100%);
  border-radius: 40% 40% 10% 10%;
  opacity: 0.4;
  transition: var(--transition-smooth);
}

.brand-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}

.play-icon {
  position: relative;
  z-index: 2;
  color: rgba(212, 175, 55, 0.6);
  transition: var(--transition-smooth);
}

/* Hover Effects - specifically NO zoom, just thin gold underline and play icon glow */
.video-card:hover::after {
  width: 100%;
}

.video-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.video-card:hover .play-icon {
  color: var(--color-accent-amber);
  filter: drop-shadow(0 0 10px rgba(244, 197, 66, 0.5));
}

.video-card:hover .bottle-silhouette {
  opacity: 0.6;
}

/* --- 6. Shop by Occasion --- */
.occasions-section {
  padding: var(--spacing-section) 5%;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.occasion-card {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--color-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.occasion-card:hover {
  border-color: var(--color-accent-gold);
}

.occasion-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-text-main);
  transition: var(--transition-smooth);
}

.occasion-card:hover h3 {
  color: var(--color-accent-gold);
}

/* --- 9. Trust & Quality Strip --- */
.trust-section {
  display: flex;
  justify-content: space-around;
  padding: 4rem 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: transparent;
}

.trust-item {
  text-align: center;
  color: var(--color-text-muted);
}

.trust-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent-amber);
}

/* --- 10. Subscription Block --- */
.subscription-section {
  position: relative;
  background-color: var(--color-bg-deep);
  text-align: center;
  padding: calc(var(--spacing-section) * 1.2) 5%;
  overflow: hidden;
}

.subscription-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Floating Particles */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: var(--color-accent-gold);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  animation: floatParticle 8s infinite alternate ease-in-out;
}

.particle.p1 {
  top: 20%;
  left: 20%;
  animation-duration: 9s;
}

.particle.p2 {
  top: 70%;
  left: 80%;
  animation-duration: 12s;
  animation-delay: 2s;
}

.particle.p3 {
  top: 30%;
  left: 75%;
  animation-duration: 7s;
  animation-delay: 4s;
}

.particle.p4 {
  top: 80%;
  left: 30%;
  animation-duration: 10s;
  animation-delay: 1s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-30px) translateX(20px);
    opacity: 0.1;
  }
}

.subscription-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
}

.subscription-content h2 {
  font-size: 2rem;
  color: var(--color-text-main);
  margin-bottom: 2rem;
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subscription-form input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
  text-align: center;
}

.subscription-form input:focus {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* --- Footer --- */
.main-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 5% 2rem;
  background-color: var(--color-bg-surface);
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--color-accent-gold);
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: var(--color-text-main);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-branding {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.logo-footer {
  height: 150px;
  width: auto;
  opacity: 0.9;
  filter: brightness(1.2) grayscale(0.2);
  transition: var(--transition-smooth);
}

.logo-footer:hover {
  opacity: 1;
  filter: brightness(1.3) grayscale(0);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
  opacity: 0.6;
}

.footer-socials a:hover {
  color: var(--color-accent-gold);
  opacity: 1;
  transform: translateY(-2px);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.fade-in.is-visible {
  opacity: 1;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Breadcrumbs --- */
.breadcrumb {
  padding: 2rem 5% 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.breadcrumb a:hover {
  color: var(--color-accent-gold);
}

.breadcrumb .separator {
  margin: 0 0.8rem;
  opacity: 0.3;
}

.breadcrumb .current {
  color: var(--color-text-main);
  opacity: 0.8;
}

/* --- Collections Page Specifics --- */
.collections-hero {
  padding: 8rem 5% 4rem;
  text-align: center;
  background:
    radial-gradient(circle at center,
      rgba(30, 30, 30, 0.2) 0%,
      var(--color-bg-deep) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
}

.collections-hero .hero-content {
  margin: 0 auto;
}

.collections-hero .hero-title {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.collections-hero .hero-description {
  font-size: 1.2rem;
  font-style: italic;
  opacity: 0.8;
  margin: 0 auto;
  max-width: 600px;
}

.collections-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 0%,
      var(--color-bg-deep) 100%);
  pointer-events: none;
}

.collections-nav {
  padding: 2rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  /* Subtle divider */
  margin-bottom: 2rem;
  position: sticky;
  top: 80px;
  /* Below the main header */
  background: var(--color-bg-deep);
  z-index: 90;
}

.collections-nav ul {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  /* Hide scrollbar IE/Edge */
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

.collections-nav ul::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.collections-nav li {
  position: relative;
  padding-bottom: 0.5rem;
}

.collections-nav a {
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  transition: var(--transition-smooth);
  display: block;
}

.collections-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-gold);
  transition: var(--transition-smooth);
}

.collections-nav a:hover,
.collections-nav a.active {
  color: var(--color-accent-gold);
  opacity: 1;
}

.collections-nav a:hover::after,
.collections-nav a.active::after {
  width: 100%;
}

.mobile-filter-bar {
  display: none;
  padding: 0 5% 2rem;
  justify-content: center;
}

.btn-filter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-main);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-filter:hover {
  border-color: var(--color-accent-gold);
  background: rgba(212, 175, 55, 0.05);
}

.btn-filter svg {
  transition: transform 0.3s ease;
}

.btn-filter.is-active svg {
  transform: rotate(180deg);
}

/* Filter Menu Button in Category Nav */
.filter-menu-item {
  display: flex;
  align-items: center;
}

.filter-menu-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  padding: 0;
}

.filter-menu-btn .dots {
  font-size: 1.2rem;
  letter-spacing: -0.1em;
  line-height: 1;
}

.filter-menu-btn .btn-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-width 0.4s ease,
    opacity 0.4s ease,
    margin 0.4s ease;
  white-space: nowrap;
}

.filter-menu-btn:hover {
  color: var(--color-accent-gold);
}

.filter-menu-btn.is-active .btn-label {
  max-width: 100px;
  opacity: 0.8;
  margin-left: 0.8rem;
}

.filter-menu-btn.is-active .dots {
  color: var(--color-accent-gold);
}

/* Filter Section - Universal Dropdown Behavior */
.filter-section {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    padding 0.5s ease;
  padding: 0 5%;
}

.filter-section.is-active {
  max-height: 1000px;
  opacity: 1;
  padding: 2rem 5% 4rem;
}

.filter-row {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.filter-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.2em;
  min-width: 80px;
}

.pill-selector {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-main);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
}

.pill:hover {
  border-color: var(--color-accent-gold);
  background: rgba(212, 175, 55, 0.05);
}

.pill.active {
  background: var(--color-accent-gold);
  color: var(--color-bg-deep);
  border-color: var(--color-accent-gold);
  font-weight: 500;
}

/* Mobile Filter Panel Styles */
@media (max-width: 768px) {
  .filter-section {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition:
      max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.5s ease;
    opacity: 0;
  }

  .filter-section.is-active {
    max-height: 1200px;
    padding: 2rem 5% 4rem;
    opacity: 1;
  }

  .filter-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .filter-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .filter-label {
    min-width: auto;
  }

  .pill-selector {
    gap: 0.6rem;
  }

  .pill {
    padding: 0.8rem 1.2rem;
    /* Better touch target */
    font-size: 0.75rem;
  }
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 6rem 0;
  grid-column: 1 / -1;
}

.empty-state p {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.btn-text {
  background: none;
  border: none;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.btn-text:hover {
  border-bottom-color: var(--color-accent-gold);
}

.minimal-select select:hover {
  color: var(--color-accent-gold);
  border-bottom-color: rgba(212, 175, 55, 0.3);
}

.product-grid.extended {
  padding: 0 5% 8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 3rem;
}

/* --- Product Detail Specifics --- */
.product-detail-section {
  padding: 12rem 5% 8rem;
  min-height: 100vh;
}

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

.product-gallery {
  position: sticky;
  top: 12rem;
}

.product-main-image {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-main-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.brand-glow {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.product-info-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent-gold);
  display: block;
  margin-bottom: 1rem;
}

.product-name {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.product-notes-detail {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}

.product-price-detail {
  font-size: 1.8rem;
  color: var(--color-text-main);
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-selection {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.selection-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.selection-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.size-selector {
  display: flex;
  gap: 1.2rem;
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  width: fit-content;
  padding: 0.2rem;
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--color-text-main);
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  border-radius: 50%;
}

.qty-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-accent-gold);
}

.qty-input {
  background: transparent;
  border: none;
  color: var(--color-text-main);
  width: 40px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  pointer-events: none;
  /* Only via buttons for luxury feel */
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.cta-subtext {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.size-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-main);
  padding: 0.6rem 2.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
}

.size-pill:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.size-pill.is-selected {
  border-color: var(--color-accent-gold);
  background: rgba(212, 175, 55, 0.05);
  color: var(--color-accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.product-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-primary.full-width {
  width: 100%;
  max-width: 400px;
  padding: 1.2rem 2.5rem;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  color: var(--color-accent-gold);
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Experience Section --- */
.experience-section {
  padding: 10rem 5%;
  position: relative;
  background: var(--color-bg-deep);
  overflow: hidden;
}

.experience-texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.experience-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.experience-overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-accent-gold);
  display: block;
  margin-bottom: 1.5rem;
}

.experience-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.experience-copy {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 6rem;
}

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

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.benefit-icon {
  color: var(--color-accent-gold);
  background: rgba(212, 175, 55, 0.05);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefit-card h3 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 250px;
}

/* Related Products Grid Layout Override */
.related-products-section {
  padding: 8rem 5%;
  background: rgba(0, 0, 0, 0.2);
}

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

/* Sticky Cart Bar */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem 5%;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.sticky-cart-bar.is-visible {
  transform: translateY(0);
}

.sticky-cart-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-product-meta {
  display: flex;
  flex-direction: column;
}

.sticky-product-meta strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.sticky-product-meta span {
  font-size: 0.9rem;
  color: var(--color-accent-gold);
}

/* --- Composition Override --- */
.composition-section {
  padding: 8rem 5%;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.composition-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.composition-title {
  font-size: 2rem;
  margin-bottom: 5rem;
  letter-spacing: 0.1em;
}

.composition-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.note-item {
  flex: 1;
}

.note-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent-gold);
  display: block;
  margin-bottom: 1.5rem;
}

.note-name {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.note-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.note-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(212, 175, 55, 0.3) 50%,
      transparent 100%);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .mood-grid {
    grid-template-columns: 1fr;
  }

  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 3rem;
  }

  .primary-nav {
    display: none;
    /* simple mobile nav hide for now */
  }

  /* Mobile Header Optimization */
  .main-header {
    top: 1rem;
    padding: 0 4%;
    justify-content: space-between;
  }

  .logo-link {
    position: static;
    /* Remove absolute positioning on mobile */
  }

  .logo-img {
    height: 80px;
    /* Scaled for mobile authority */
    filter: brightness(1.15) drop-shadow(0 0 12px rgba(212, 175, 55, 0.3));
  }

  .main-header.is-sticky .logo-img {
    height: 48px;
  }

  .nav-dock {
    padding: 0.5rem 1.2rem;
    gap: 1rem;
  }

  .hero-section {
    padding-top: 8rem;
    /* Optimized spacing for mobile header */
  }
}

@media (max-width: 600px) {
  .trust-section {
    flex-direction: column;
    gap: 2rem;
  }

  .reassurance-items {
    flex-direction: column;
    gap: 1.5rem;
  }

  .reassurance-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.4) 50%,
        transparent 100%);
  }

  .occasion-grid,
  .video-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    /* for scrollbar */
  }

  .occasion-card,
  .video-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

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

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

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

  .hero-slide {
    animation-name: slideFadeMobile !important;
    /* Disables zoom on mobile */
  }

  .footer-branding {
    margin-bottom: 2rem;
  }

  .logo-footer {
    height: 60px;
    /* Scaled for mobile footer */
  }

  /* Collections Mobile Refinements */
  .collections-nav ul {
    justify-content: flex-start;
    padding: 0 5%;
    gap: 2rem;
  }

  .mobile-filter-bar {
    display: flex;
  }

  .filter-section {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition:
      max-height 0.4s ease-out,
      padding 0.4s ease;
  }

  .filter-section.is-active {
    max-height: 500px;
    padding: 0 5% 4rem;
  }

  .filter-row {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
  }

  .product-grid.extended {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 4% 6rem;
  }

  .product-grid.extended .product-card {
    display: flex;
  }

  .product-grid.extended .product-card-link {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

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

  .product-grid.extended .product-price {
    margin-top: auto;
  }

  .product-grid.extended .product-actions {
    opacity: 1;
    max-height: 120px;
  }

  .product-grid.extended .action-btn {
    font-size: 0.7rem;
    padding: 0.6rem;
  }

  /* Product Detail Mobile */
  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .product-gallery {
    position: static;
  }

  .product-name {
    font-size: 2.5rem;
  }

  .btn-primary.full-width {
    max-width: 100%;
  }

  /* Composition Mobile */
  .composition-grid {
    flex-direction: column;
    gap: 4rem;
  }

  .note-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 50%,
        transparent 100%);
  }

  /* Experience Mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .experience-title {
    font-size: 2.2rem;
  }

  .related-products-section .product-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sticky-cart-bar {
    padding: 1rem 4%;
  }

  .sticky-product-meta {
    display: none;
    /* Or minimal on mobile */
  }

  .sticky-cart-content {
    justify-content: center;
  }

  .sticky-cart-bar button {
    width: 100%;
  }

  /* Breadcrumbs */
  .breadcrumb-nav {
    padding: 10rem 5% 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }

  .breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .breadcrumb-nav a {
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
  }

  .breadcrumb-nav a:hover {
    color: var(--color-accent-gold);
  }

  .breadcrumb-nav .sep {
    color: rgba(255, 255, 255, 0.1);
  }

  .breadcrumb-nav .current {
    color: var(--color-accent-gold);
  }

  /* Product Card Link Override */
  .product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

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

  .collections-hero {
    padding-top: 10rem;
  }
}

@keyframes slideFadeMobile {
  0% {
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  43% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (hover: none) {
  .product-actions {
    opacity: 1;
    max-height: 120px;
  }
}

/* --- Our Story Page --- */
.story-hero-section {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 5% 4rem;
  background-color: var(--color-bg-deep);
  overflow: hidden;
}

.story-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 70%),
    linear-gradient(180deg,
      rgba(11, 11, 11, 0.8) 0%,
      rgba(11, 11, 11, 0.95) 100%);
  z-index: 1;
}

.story-hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

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

.story-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--color-text-main);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.story-subtext {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}

.story-content-section {
  padding: var(--spacing-section) 5%;
  background-color: var(--color-bg-main);
  text-align: center;
}

.story-introduction {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Philosophy Section */
.philosophy-section {
  padding: 10rem 5% 4rem;
  background-color: var(--color-bg-deep);
  text-align: center;
}

.philosophy-body {
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.5;
  color: var(--color-text-main);
  max-width: 800px;
  margin: 0 auto;
}

/* Split Layout (The Craft) */
.craft-section {
  padding: var(--spacing-section) 5%;
  background-color: var(--color-bg-main);
}

.split-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.split-text {
  flex: 1;
}

.split-image {
  flex: 1;
  position: relative;
}

.story-visual {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-narrative {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}

/* Our Approach */
.approach-section {
  padding: var(--spacing-section) 5%;
  background-color: var(--color-bg-deep);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
}

.pillar-icon {
  font-size: 1.5rem;
  color: var(--color-accent-gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.pillar-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-main);
  font-weight: 400;
}

/* Closing Line */
.story-closing-section {
  padding: 10rem 5%;
  background-color: var(--color-bg-main);
  text-align: center;
}

.closing-line {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--color-text-main);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* Responsive Story */
@media (max-width: 992px) {
  .split-layout {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- Contact Us Page --- */
/* --- Contact Page Header --- */
.contact-page-header {
  padding: 10rem 5% 3rem;
  text-align: center;
  background-color: var(--color-bg-deep);
}

.contact-page-title {
  font-family: var(--font-primary, 'Cormorant Garamond', serif);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--color-text-main, #f5f5f0);
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
}

.contact-page-sub {
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted, #888);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.contact-section {
  padding: 3rem 5% var(--spacing-section);
  background-color: var(--color-bg-main);
}

.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-item h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.contact-item h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.contact-icon {
  color: var(--color-accent-amber);
  opacity: 0.8;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.contact-item p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-main);
  margin: 0;
}

.reassurance-block p {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-style: italic;
  letter-spacing: 0.05em;
  border-left: 1px solid rgba(212, 175, 55, 0.4);
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.contact-form-wrapper {
  background-color: var(--color-bg-elevated);
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.minimal-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0;
  transition: var(--transition-smooth);
  border-radius: 0;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--color-accent-gold);
  background: rgba(212, 175, 55, 0.02);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 1rem;
}

.form-microtext {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* --- FAQ Page --- */
.faq-breadcrumb {
  padding: 2rem 5%;
  background-color: var(--color-bg-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-breadcrumb a,
.faq-breadcrumb .current {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.faq-breadcrumb a:hover {
  color: var(--color-accent-gold);
}

.faq-breadcrumb .current {
  color: var(--color-text-main);
}

.faq-breadcrumb .separator {
  margin: 0 0.8rem;
  color: rgba(255, 255, 255, 0.2);
}

.faq-section {
  padding: var(--spacing-section) 5%;
  background-color: var(--color-bg-main);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 2rem 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
}

.faq-question:hover {
  color: var(--color-accent-amber);
}

.faq-icon {
  flex-shrink: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  opacity: 0.5;
}

.faq-question:hover .faq-icon {
  opacity: 1;
}

.faq-icon.minus {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding-bottom: 2rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Active FAQ State */
.faq-item.active .faq-question {
  color: var(--color-accent-gold);
}

.faq-item.active .faq-icon.plus {
  display: none;
}

.faq-item.active .faq-icon.minus {
  display: block;
  color: var(--color-accent-gold);
  opacity: 1;
}

/* Mobile Adjustments for FAQ */
@media (max-width: 640px) {
  .faq-question {
    font-size: 1.1rem;
    padding: 1.5rem 0;
  }

  .faq-answer-inner {
    font-size: 1rem;
    padding-bottom: 1.5rem;
  }
}

/* --- Inline Footer FAQ Panel --- */
.footer-logo-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* keep logo/socials centered locally */
  gap: 1.5rem;
}

.footer-branding {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-faq-panel {
  flex: 1;
  /* Allow FAQ to take remaining space */
  max-width: 600px;
  /* Constrain width so it doesn't stretch too far */
}

.footer-faq-panel .faq-container {
  max-width: 100%;
}

.footer-faq-panel .faq-question {
  padding: 1.5rem 0;
  font-size: 1.1rem;
  /* Slightly smaller for inline context */
}

/* Override global faq-section padding when inline */
.footer-faq-panel .faq-section {
  padding: 0;
  background: transparent;
}

@media (max-width: 992px) {
  .footer-branding {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .footer-faq-panel {
    width: 100%;
  }
}

/* --- Inline Newsletter Panel --- */
.footer-newsletter-panel {
  flex: 1;
  /* Allow to fill remaining space */
  max-width: 600px;
  /* Constrain width to look nice beside logo */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-newsletter-panel .subscription-content h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.footer-newsletter-panel .subscription-form.inline-footer-form {
  flex-direction: row;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}

.footer-newsletter-panel .subscription-form.inline-footer-form input {
  flex: 1;
  border-color: rgba(255, 255, 255, 0.1);
  background: transparent;
}

.footer-newsletter-panel .subscription-form.inline-footer-form button {
  width: auto;
  white-space: nowrap;
}

/* --- Pre-Footer FAQ Section --- */
.pre-footer-faq {
  padding: var(--spacing-section) 5%;
  background-color: var(--color-bg-deep);
  /* Subtle contrast before footer */
}

@media (max-width: 992px) {
  .footer-newsletter-panel {
    width: 100%;
  }

  .footer-newsletter-panel .subscription-content h2 {
    text-align: center;
  }

  .footer-newsletter-panel .subscription-form.inline-footer-form {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    gap: 0.8rem;
  }

  .footer-newsletter-panel .subscription-form.inline-footer-form input,
  .footer-newsletter-panel .subscription-form.inline-footer-form button {
    width: 100%;
    padding: 1rem;
  }
}

/* --- Shipping Policy Blocks --- */
.policy-section {
  padding: var(--spacing-section) 5%;
  background-color: var(--color-bg-main);
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.policy-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.policy-title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-accent-gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 0.8rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.policy-text {
  font-size: 1.05rem;
  color: var(--color-text-main);
  line-height: 1.8;
  margin: 0;
}

.policy-link {
  color: var(--color-accent-amber);
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.policy-link:hover {
  color: var(--color-accent-gold);
  border-bottom-color: var(--color-accent-gold);
}

/* Specific Highlight Box for Returns (Unboxing Video) */
.policy-highlight-box {
  background-color: rgba(212, 175, 55, 0.03);
  border-left: 2px solid var(--color-accent-amber);
  padding: 1.5rem;
  margin: 0.5rem 0;
}

.policy-highlight-box .highlight-title {
  color: var(--color-accent-amber);
  font-weight: 500;
  margin-bottom: 1rem;
}

.policy-list {
  list-style-type: none;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.policy-list li {
  font-size: 1.05rem;
  color: var(--color-text-main);
  line-height: 1.8;
  position: relative;
  margin-bottom: 0.5rem;
}

.policy-list li::before {
  content: "✧";
  position: absolute;
  left: -1.5rem;
  color: var(--color-accent-gold);
  font-size: 0.8rem;
  top: 0.2rem;
}

.policy-highlight-box .highlight-footer {
  color: var(--color-text-muted);
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.contact-block {
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Cart Page Styles --- */
.cart-section {
  padding: 2rem 5% 4rem;
  background-color: var(--color-bg-main);
  min-height: 80vh;
}

.cart-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cart-title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--color-accent-gold);
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
  align-items: flex-start;
}

/* Cart Items */
.cart-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.cart-item-image {
  width: 120px;
  height: 150px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.cart-item-name {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: var(--color-text-main);
  margin: 0 0 0.5rem 0;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #fff;
  /* White for better visibility against dark background */
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 8px;
  /* Slightly larger hit area */
  opacity: 0.8;
}

.cart-item-remove:hover {
  color: var(--color-accent-amber);
  opacity: 1;
}

.cart-item-size {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem 0;
}

.cart-item-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Quantity Selector */
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--color-text-main);
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: background var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

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

.qty-input {
  width: 40px;
  height: 32px;
  text-align: center;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  /* Hide native number arrows */
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-main);
}

/* Summary Panel */
.cart-summary-panel {
  background-color: var(--color-bg-deep);
  padding: 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: sticky;
  top: 100px;
}

.cart-summary-panel h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent-gold);
  margin-top: 0;
  margin-bottom: 2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--color-text-main);
}

.summary-row span:first-child {
  flex-shrink: 0;
}

.summary-row span:last-child {
  text-align: right;
}

.summary-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}

.summary-total {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: white;
}

.checkout-btn {
  padding: 1rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

/* --- Coupon Section --- */
.coupon-section {
  margin: 0.5rem 0;
}

.coupon-section label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted, #888);
  margin-bottom: 0.5rem;
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
}

.coupon-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.coupon-input-row input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--color-text-main, #f5f5f0);
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.coupon-input-row input:focus {
  outline: none;
  border-color: var(--color-accent-gold, #D4AF37);
}

.coupon-input-row .btn-outline {
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.coupon-feedback {
  font-size: 0.85rem;
  margin-top: 0.65rem;
  font-weight: 500;
  display: none;
}

.qty-display {
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 1rem;
  color: var(--color-text-main, #f5f5f0);
  min-width: 2rem;
  text-align: center;
  display: inline-block;
}

/* --- Empty Cart State --- */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  text-align: center;
}

.empty-cart-message {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text-main);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.empty-cart-btn {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

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

  .cart-summary-panel {
    position: static;
  }
}

@media (max-width: 576px) {
  .cart-title {
    font-size: 2rem;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .cart-item-image {
    width: 100%;
    height: 200px;
  }

  .cart-item-bottom {
    width: 100%;
  }

  .cart-summary-panel {
    padding: 1.5rem;
  }
}

/* --- Checkout Page Styles --- */
.checkout-page {
  min-height: 100vh;
}

.checkout-section {
  padding: 4rem 5% 8rem;
  background-color: var(--color-bg-main);
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-title {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  color: var(--color-accent-gold);
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
  text-align: center;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: flex-start;
}

/* Billing Section */
.billing-section h2 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-text-main);
  margin-bottom: 2rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select.custom-select {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
  border-radius: 4px;
}

.form-group select.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="rgba(255,255,255,0.5)" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 50%;
}

.form-group select.custom-select option {
  background: var(--color-bg-main);
  color: var(--color-text-main);
}

.form-group input:focus,
.form-group select.custom-select:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2);
}

/* Checkout Summary Section */
.checkout-summary-panel {
  background-color: var(--color-bg-deep);
  padding: 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: sticky;
  top: 100px;
  border-radius: 4px;
}

.checkout-summary-panel h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent-amber);
  margin-top: 0;
  margin-bottom: 2rem;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.checkout-submit-btn {
  padding: 1.25rem;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

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

  .checkout-summary-panel {
    position: static;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-summary-panel {
    padding: 1.5rem;
  }
}

/* --- Payment Method Section --- */
.payment-section h2 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-text-main);
  margin-bottom: 1.5rem;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-radio {
  display: none;
}

.payment-pill {
  padding: 0.8rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.payment-pill:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.payment-radio:checked+.payment-pill {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  background-color: rgba(212, 175, 55, 0.05);
}

/* --- Header Layout Refactor --- */
.main-header {
  display: grid !important;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr) !important;
  align-items: center;
  justify-content: space-between;
}

.main-header .logo-link {
  justify-self: start;
}

.main-header .primary-nav {
  justify-self: center;
}

.main-header .header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-btn {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.search-btn:hover {
  color: var(--color-accent-gold);
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .main-header {
    grid-template-columns: auto 1fr auto !important;
  }

  .main-header .primary-nav {
    display: none;
    /* Already handled by mobile menu logic typically, ensuring clean override */
  }
}

/* --- Header Search Input --- */
.nav-search-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.3rem 0.5rem;
  width: 0;
  /* Hidden by default */
  opacity: 0;
  transition:
    width 0.4s ease,
    opacity 0.4s ease,
    border-color 0.3s ease;
}

.nav-search-input:focus {
  outline: none;
  border-bottom-color: var(--color-accent-gold);
}

.nav-search-input.is-active {
  width: 150px;
  opacity: 1;
}

.search-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Search Modal / Popout Adjustments */
.header-actions {
  position: relative;
  /* Context for absolute positioning if needed */
}

/* Remove the absolute positioning constraint that was incorrectly nesting nav tools */
/* nav-dock uses flex layout defined in the base styles above */

/* Specific Search Container Adjustments */
.header-actions .nav-search-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  width: 0;
  opacity: 0;
  transition:
    width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    border-color 0.3s ease;
}

.header-actions .nav-search-input.is-active {
  width: 140px;
  opacity: 1;
  padding: 0.3rem 0.5rem;
}

/* --- Global Nav Refinements --- */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 99999;
  /* Absolute highest */
  padding: 1.5rem 5%;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-header.is-sticky {
  background-color: rgba(10,
      10,
      10,
      0.98);
  /* 98% opaque to block text, but allows tiny hint of blur */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  top: 0;
  padding: 0.8rem 5%;
}

.logo-link {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.primary-nav {
  flex: 2;
  display: flex;
  justify-content: center;
}

.header-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  /* spacing between search, cart, menu */
}

/* Ensure buttons inside header actions don't inherit weird paddings */
.header-actions button,
.header-actions a {
  background: none;
  border: none;
  color: currentColor;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.header-actions button:hover,
.header-actions a:hover {
  color: var(--color-accent-amber);
}

@media (max-width: 992px) {
  .primary-nav {
    display: none;
    /* Hide primary nav on mobile, rely on the 3-dot menu */
  }
}

/* Push standard pages down so they don't hide under the fixed header */
.page-main {
  padding-top: 120px;
}

.cart-container {
  padding-top: 80px;
}

.checkout-page {
  padding-top: 120px;
}

.confirmation-section {
  padding-top: 120px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
}

.primary-nav a {
  white-space: nowrap;
}

/* --- Global Search Overlay --- */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100000;
  /* above header */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 15vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.search-container {
  width: 90%;
  max-width: 800px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.close-search-btn {
  position: absolute;
  top: -4rem;
  right: 0;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
}

.close-search-btn:hover {
  color: var(--color-accent-amber);
  transform: rotate(90deg);
}

.search-input-wrapper {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.search-input-wrapper:focus-within {
  border-color: rgba(212, 175, 55, 1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

#global-search-input {
  width: 100%;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-weight: 400;
  padding: 0;
}

#global-search-input:focus {
  outline: none;
}

#global-search-input::placeholder {
  color: rgba(234, 222, 203, 0.5);
}

.search-results-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 50vh;
  overflow-y: auto;
}

/* Custom scrollbar for search results */
.search-results-wrapper::-webkit-scrollbar {
  width: 6px;
}

.search-results-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.search-results-wrapper::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.2);
  border-radius: 10px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(10px);
}

.search-result-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
}

.search-result-info h3 {
  font-size: 1.2rem;
  margin: 0 0 0.25rem 0;
  color: var(--color-accent-amber);
}

.search-result-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.search-hint {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}


/* --- HERO SECTION RE-INJECTION --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-bg-main);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  margin-top: 5rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--color-text-main);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Fix the transparent class on header so it actually overlays the video without bg */
.main-header.transparent {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.transparent:hover,
.main-header.is-sticky {
  background-color: var(--color-bg-main) !important;
  border-bottom-color: rgba(212, 175, 55, 0.15);
}

/* --------------------------------- */

/* ========================================================
   DISCOVER PAGE – Dark Luxury Sections
   ======================================================== */

/* --- Shared Section Label (OUR OPUS / THE CAMPAIGN) --- */
.section-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--color-text-muted, #888);
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  margin-bottom: 0.75rem;
}

.section-heading-gold {
  text-align: center;
  font-family: var(--font-primary, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-accent-gold, #D4AF37);
  margin-bottom: 3.5rem;
}

/* --- Discover Products Section --- */
.discover-products {
  background-color: var(--color-bg-deep, #080808);
  padding: 6rem 0;
}

.discover-products-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  overflow: hidden;
}

/* --- Slider Wrapper --- */
.discover-slider-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.discover-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.discover-slider-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.discover-slider-track .product-card {
  flex: 0 0 auto;
  width: calc(25% - 1.125rem);
  max-width: calc(25% - 1.125rem);
  scroll-snap-align: start;
}

.discover-slider-track .product-image-wrapper {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: var(--color-bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Arrows */
.discover-arrow {
  position: absolute;
  top: var(--arrow-top, 35%);
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-accent-gold, #D4AF37);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  line-height: 1;
}

.discover-arrow:hover {
  background: var(--color-accent-gold, #D4AF37);
  color: var(--color-bg-deep, #080808);
  border-color: var(--color-accent-gold, #D4AF37);
}

.discover-prev {
  left: 5px;
}

.discover-next {
  right: 5px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .discover-slider-track .product-card {
    width: calc(33.333vw - 2rem);
    max-width: calc(33.333vw - 2rem);
    flex: 0 0 calc(33.333vw - 2rem);
  }
}

@media (max-width: 768px) {
  .discover-slider-track .product-card {
    width: calc(50vw - 2rem);
    max-width: calc(50vw - 2rem);
    flex: 0 0 calc(50vw - 2rem);
  }

  .discover-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    top: 38%;
  }

  .discover-prev {
    left: 4px;
  }

  .discover-next {
    right: 4px;
  }
}

@media (max-width: 520px) {
  .discover-products {
    padding: 4rem 0;
    overflow: hidden;
  }

  .discover-slider-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    width: 100vw;
    margin-left: -1rem;
    /* Negate the 1rem padding of inner for edge-to-edge scrolling */
    padding: 0 1rem 1rem 1rem;
    gap: 1rem;
  }

  .discover-slider-track::-webkit-scrollbar {
    display: none;
  }

  .discover-slider-track .product-card {
    scroll-snap-align: center;
    width: calc(85vw - 2rem);
    max-width: calc(85vw - 2rem);
    flex: 0 0 calc(85vw - 2rem);
  }

  .discover-slider-track .product-image-wrapper {
    aspect-ratio: 1 / 1;
  }

  .discover-products-inner {
    padding: 0 1rem 0 1rem;
    position: relative;
  }

  /* Arrows pushed below slider on mobile */
  .discover-slider-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
  }

  /* Arrow row placed visibly below */
  .discover-arrow {
    position: static !important;
    transform: none !important;
    top: auto !important;
    bottom: auto !important;
  }

  /* Flex row container for the two arrows on mobile */
  .discover-arrows-mobile {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0 2rem;
  }

  .discover-slider-track .product-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
  }

  .discover-slider-track .product-info {
    padding: 1rem 0.5rem 0.5rem;
  }

  .discover-slider-track .product-actions {
    opacity: 1;
    max-height: 120px;
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .discover-slider-track .action-btn {
    font-size: 0.75rem;
    padding: 0.85rem 0;
    width: 100%;
    margin-top: 0.5rem;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
  }

  .discover-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    top: auto;
    bottom: 10px;
    transform: none;
  }

  /* Remove old mobile arrow bottom-positioning since we use a row below */
  .discover-arrow.discover-prev,
  .discover-arrow.discover-next {
    display: none !important;
  }

  /* Show mobile arrow row */
  .discover-arrows-mobile {
    display: flex !important;
  }
}

/* Hide mobile arrow row on desktop/tablet */
.discover-arrows-mobile {
  display: none;
}

/* Empty rule or completely remove. Restoring global search. */

/* --- Store Features Section --- */
.store-features-section {
  background-color: var(--color-bg-deep, #080808);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.feature-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  margin-bottom: 1rem;
  color: var(--color-accent-gold, #D4AF37);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-family: var(--font-primary, 'Cormorant Garamond', serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-main, #f5f5f0);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.feature-desc {
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-text-muted, #888);
  letter-spacing: 0.03em;
  max-width: 280px;
}

.feature-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(212, 175, 55, 0.2);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-container {
    flex-direction: column;
    gap: 3rem;
  }

  .feature-divider {
    width: 60px;
    height: 1px;
  }
}

@media (max-width: 520px) {
  .discover-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .discover-products {
    padding: 4rem 1.25rem;
  }

  .store-features-section {
    padding: 3rem 1.25rem;
  }
}

/* ===================================================================
   Right-Slide Sidebar Menu
   =================================================================== */

/* Backdrop Overlay */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 199999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(2px);
}

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

/* Sidebar Panel */
.sidebar-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: #0a0a0a;
  z-index: 200000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  border-left: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  flex-direction: column;
}

.sidebar-panel.active {
  transform: translateX(0);
}

/* Close Button */
.sidebar-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--color-text-muted, #888);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
  z-index: 2;
}

.sidebar-close:hover {
  color: var(--color-accent-gold, #D4AF37);
}

/* User Area */
.sidebar-user {
  padding: 2.5rem 2rem 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
}

.sidebar-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.05);
}

.sidebar-avatar svg {
  color: var(--color-accent-gold, #D4AF37);
  opacity: 0.7;
}

.sidebar-user-title {
  font-family: var(--font-primary, 'Cormorant Garamond', serif);
  font-size: 1.25rem;
  color: var(--color-text-main, #f5f5f0);
  margin: 0 0 0.35rem;
  font-weight: 500;
}

.sidebar-user-sub {
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.8rem;
  color: var(--color-text-muted, #888);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.sidebar-user-email {
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.8rem;
  color: var(--color-text-muted, #888);
  margin: 0.15rem 0 1rem;
}

.sidebar-auth-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.sidebar-btn {
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  color: var(--color-accent-gold, #D4AF37);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-accent-gold, #D4AF37);
}

.sidebar-btn.primary {
  background: var(--color-accent-gold, #D4AF37);
  color: #0a0a0a;
  border-color: var(--color-accent-gold, #D4AF37);
}

.sidebar-btn.primary:hover {
  background: #c9a432;
}

.sidebar-btn.full-width {
  width: 100%;
  display: block;
  text-align: center;
}

/* Navigation Sections */
.sidebar-nav {
  flex: 1;
  padding: 1rem 0;
}

.sidebar-nav-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: var(--color-text-main, #f5f5f0);
  text-decoration: none;
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  cursor: pointer;
}

.sidebar-nav-link:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--color-accent-gold, #D4AF37);
}

.sidebar-nav-link svg {
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.25s;
}

.sidebar-nav-link:hover svg {
  opacity: 1;
  color: var(--color-accent-gold, #D4AF37);
}

.sidebar-nav-label {
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted, #666);
  padding: 1.25rem 2rem 0.5rem;
  display: block;
}

.sidebar-nav-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted, #888);
  margin-top: 0.15rem;
}

/* Sidebar Login/Signup Forms */
.sidebar-form-panel {
  padding: 2rem;
  display: none;
}

.sidebar-form-panel.active {
  display: block;
}

.sidebar-form-title {
  font-family: var(--font-primary, 'Cormorant Garamond', serif);
  font-size: 1.4rem;
  color: var(--color-text-main, #f5f5f0);
  margin: 0 0 1.5rem;
  text-align: center;
}

.sidebar-form-group {
  margin-bottom: 1.2rem;
}

.sidebar-form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted, #888);
  margin-bottom: 0.4rem;
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
}

.sidebar-form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-main, #f5f5f0);
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.9rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.sidebar-form-group input:focus {
  outline: none;
  border-color: var(--color-accent-gold, #D4AF37);
}

.sidebar-form-footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted, #888);
}

.sidebar-form-footer a,
.sidebar-form-footer span {
  color: var(--color-accent-gold, #D4AF37);
  cursor: pointer;
  text-decoration: underline;
}

.sidebar-form-msg {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  display: none;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  text-align: center;
}

.sidebar-logout {
  background: none;
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff6b6b;
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.sidebar-logout:hover {
  background: rgba(255, 80, 80, 0.1);
  border-color: #ff6b6b;
}

/* Mobile: full-screen sidebar */
@media (max-width: 768px) {
  .sidebar-panel {
    width: 100vw;
  }
}

/* Desktop: hide mobile-only sidebar sections */
.sidebar-mobile-nav {
  display: none;
}

/* Sidebar user/profile section is always visible */
.sidebar-user {
  display: block !important;
}

/* Mobile: show nav links and profile */
@media (max-width: 768px) {
  .sidebar-mobile-nav {
    display: block !important;
  }

  .sidebar-user {
    display: block !important;
  }
}

/* ===================================================================
   Floating WhatsApp Chat Button
   =================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  z-index: 99998;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* Sidebar Social Icons */
.sidebar-socials {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  padding: 1rem 2rem 1.5rem;
}

.sidebar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted, #888);
  transition: all 0.3s ease;
}

.sidebar-socials a:hover {
  border-color: var(--color-accent-gold, #D4AF37);
  color: var(--color-accent-gold, #D4AF37);
  background: rgba(212, 175, 55, 0.08);
}

/* --- Video Showcase Section --- */
.video-showcase-section {
  position: relative;
  overflow: hidden;
}

.video-slider-wrap {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 2rem;
}

.video-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  padding: 1rem;
  width: 100%;
}

.video-slider-track::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.video-card {
  flex: 0 0 calc(33.333% - 1rem);
  /* Show 3 videos at a time on desktop */
  min-width: calc(33.333% - 1rem);
  scroll-snap-align: start;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  aspect-ratio: 9/16;
  background-color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Video card controls ────────────────── */
.video-play-btn,
.video-audio-btn {
  position: absolute;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.video-play-btn {
  left: 1rem;
}

.video-audio-btn {
  right: 1rem;
}

.video-play-btn:hover,
.video-audio-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  transform: scale(1.08);
}

.video-play-btn svg,
.video-audio-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Amber glow when audio is ON */
.video-audio-btn.audio-active {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--color-accent-gold, #D4AF37);
}

/* Responsive */
@media (max-width: 1024px) {
  .video-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .video-card {
    flex: 0 0 calc(80% - 1rem);
    min-width: calc(80% - 1rem);
  }

  .video-showcase-container {
    padding: 0 1rem !important;
  }
}

@media (max-width: 520px) {
  .video-card {
    flex: 0 0 calc(90% - 1rem);
    min-width: calc(90% - 1rem);
  }
}

/* Hide desktop login button on mobile (handled by hamburger sidebar) */
@media (max-width: 768px) {
  .desktop-login-btn {
    display: none !important;
  }

  /* Always show Add to Cart button on mobile (no hover) */
  .discover-slider-track .product-actions,
  .product-card .product-actions {
    opacity: 1 !important;
    max-height: 200px !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding: 0 1rem 1.2rem !important;
  }

  .related-products-section .product-image-wrapper {
    aspect-ratio: 1 / 1;
  }

  .discover-slider-track .action-btn,
  .product-card .action-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    font-size: 0.75rem !important;
    padding: 0.85rem 2rem !important;
    width: 100% !important;
    max-width: 280px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(11, 11, 11, 0.6) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    cursor: pointer !important;
  }
}

/* ===================================================================
   Global Search Simple Dropdown (Dark Mode)
   =================================================================== */

.search-wrap-simple {
  position: relative;
  display: flex;
  align-items: center;
}

.simple-search-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: -10px;
  /* Align slightly past the right edge of the icon */
  width: 340px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.simple-search-dropdown.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Little upward triangle pointer */
.simple-search-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 18px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  z-index: -1;
}

.ssd-input-wrap {
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}

#ssd-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: #1a1a1a;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#ssd-input:focus {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

#ssd-input::placeholder {
  color: #a0a0a0;
}

.ssd-results {
  max-height: 380px;
  overflow-y: auto;
  padding: 0;
  background: #ffffff;
}

.ssd-hint {
  padding: 2rem 1rem;
  color: #888;
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

.ssd-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  transition: background 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.ssd-card:last-child {
  border-bottom: none;
}

.ssd-card:hover {
  background: #f9f9f9;
}

.ssd-card img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
}

.ssd-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ssd-info h4 {
  color: #1a1a1a;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
  font-family: var(--font-body);
}

.ssd-info span {
  color: #666;
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.ssd-info span del {
  color: #a0a0a0;
  margin-left: 0.4rem;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .simple-search-dropdown {
    position: fixed;
    top: 70px;
    /* Below standard mobile header */
    left: 5%;
    right: 5%;
    width: auto;
  }
}

/* --- Promotional Banner Slider --- */
.promo-slider-section {
  padding: 0;
  max-width: 100%;
  margin: var(--spacing-section) auto;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-deep);
}

.promo-slider-container {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 450px;
  max-height: 800px;
}

.promo-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1.2s ease-in-out;
}

.promo-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.promo-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  max-width: 600px;
}

.promo-content.center-theme {
  align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

.promo-content.light-theme {
  color: #1a1a1a;
}

.promo-content.dark-theme {
  color: #f9f9f9;
}

.promo-logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.promo-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.promo-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Button variants for promo */
.btn-promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
}

.btn-promo.outline {
  border: 2px solid currentColor;
  color: inherit;
  background: transparent;
}

.btn-promo.outline:hover {
  background: currentColor;
  color: #fff;
  /* fallback */
}

.light-theme .btn-promo.outline:hover {
  background: #1a1a1a;
  color: #fff;
}

.btn-promo.solid {
  background: #fff;
  color: #1a1a1a;
  border: 2px solid #fff;
}

.btn-promo.solid:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-promo-dark {
  background: #1a1a1a;
  color: #fff;
  border: 2px solid #1a1a1a;
}

.btn-promo-dark:hover {
  background: transparent;
  color: #1a1a1a;
}

.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.promo-prev {
  left: 2rem;
}

.promo-next {
  right: 2rem;
}

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

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.promo-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .promo-slider-container {
    height: 50vh;
    min-height: 400px;
  }

  .promo-title {
    font-size: 2.5rem;
  }

  .promo-content {
    padding: 0 5%;
    align-items: center;
    text-align: center;
  }

  .promo-logo-img {
    height: 65px;
    margin-bottom: 1rem;
  }

  .promo-arrow {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .promo-prev {
    left: 1rem;
  }

  .promo-next {
    right: 1rem;
  }
}