/* ==========================================================================
   NAIEL PERFUMERÍA - HERO PROMOTIONAL SLIDER (THE ECLIPSE LUXURY STYLE)
   Faithful to Image 1: Bold Uppercase Title, Italic Subtitle, Outline Button,
   Protagonist Bottle on Pedestal, and 3 Simple Pagination Dots
   ========================================================================== */

.hero-slider-section {
  position: relative;
  background-color: #050B14;
  background: radial-gradient(circle at 62% 48%, rgba(207, 163, 88, 0.16) 0%, rgba(10, 24, 40, 0.95) 45%, #030810 100%);
  color: var(--color-ivory);
  overflow: hidden;
  border-bottom: 1px solid rgba(207, 163, 88, 0.2);
}

.eclipse-hero-slider {
  position: relative;
  width: 100%;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Slider Track & Slides */
.eclipse-slider-track {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0 var(--space-3xl) 0;
}

.eclipse-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.eclipse-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

.eclipse-slide-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
  width: 100%;
}

/* Slide Left: Typography & Discover Button */
.eclipse-slide-text {
  position: relative;
  z-index: 3;
}

.eclipse-title {
  font-family: var(--font-display), 'Jost', sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #E8CFAB;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.eclipse-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: rgba(232, 207, 171, 0.85);
  line-height: 1.45;
  margin-bottom: var(--space-2xl);
  max-width: 480px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Minimal Outline Button (Image 1 Style) */
.eclipse-btn-discover {
  display: inline-block;
  padding: 13px 36px;
  background: transparent;
  border: 1.5px solid rgba(232, 207, 171, 0.65);
  color: #E8CFAB;
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 2px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.eclipse-btn-discover:hover {
  background: #E8CFAB;
  color: #030810;
  border-color: #E8CFAB;
  box-shadow: 0 0 24px rgba(232, 207, 171, 0.45);
  transform: translateY(-2px);
}

/* Slide Right: Protagonist Perfume Bottle Visual on Pedestal */
.eclipse-slide-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 440px;
  cursor: pointer;
}

.eclipse-pedestal-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(207, 163, 88, 0.28) 0%, rgba(207, 163, 88, 0.06) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.eclipse-bottle-wrapper {
  position: relative;
  z-index: 2;
  transition: transform var(--transition-smooth);
}

.eclipse-slide-visual:hover .eclipse-bottle-wrapper {
  transform: translateY(-6px) scale(1.03);
}

.eclipse-bottle-img {
  max-height: 400px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.7));
}

.eclipse-pedestal-base {
  width: 240px;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(207, 163, 88, 0.35) 0%, rgba(207, 163, 88, 0.08) 50%, transparent 80%);
  border-radius: 50%;
  margin-top: -8px;
  z-index: 1;
  filter: blur(3px);
}

/* 3 Simple Centered Dots (Image 1 Style) */
.eclipse-dots-container {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  padding: 6px 14px;
}

.eclipse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eclipse-dot:hover {
  background: rgba(232, 207, 171, 0.6);
  transform: scale(1.2);
}

.eclipse-dot.active {
  background: #E8CFAB;
  box-shadow: 0 0 10px rgba(232, 207, 171, 0.9);
  transform: scale(1.35);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .eclipse-slide-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .eclipse-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .eclipse-slide-visual {
    order: -1;
    min-height: 300px;
  }

  .eclipse-bottle-img {
    max-height: 290px;
  }
}
