/* ═══════════════════════════════════════════
   HERO — Full-screen product slideshow
   One soap fills the frame; slides cycle R→L
═══════════════════════════════════════════ */

.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #091580 0%, var(--blue-deep) 55%, #2244E8 100%);
  padding-top: 80px;
  display: flex;
  align-items: center;
}

/* ── Ambient glow blobs ─────────────────── */
.hero-glow-1 {
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(41,196,240,0.10) 0%, transparent 65%);
  top: -200px; right: -120px; pointer-events: none; z-index: 0;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  bottom: -60px; left: -100px; pointer-events: none; z-index: 0;
}

/* ═══════════════════════════════════════════
   SLIDES
═══════════════════════════════════════════ */

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  pointer-events: none;
}

/* Active slide */
.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Outgoing slide — exits left */
.hero-slide.exiting {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

/* Instant reset (no flicker) */
.hero-slide.no-transition {
  transition: none !important;
  opacity: 0;
  transform: translateX(50px);
}

/* ── Product image ────────────────────────
   Large, fills the right 65 % of the hero */
.hero-slide-img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-slide-img-wrap img {
  height: 88vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 90px rgba(0, 0, 0, 0.40));
  user-select: none;
}

/* ── Product caption — bottom-right ─────── */
.hero-caption {
  position: absolute;
  bottom: 88px;
  right: 60px;
  text-align: right;
  z-index: 3;
}

.hpc-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #5DD8F5;
  display: block;
  margin-bottom: 6px;
}

.hpc-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  display: block;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* ═══════════════════════════════════════════
   HERO TEXT  (tag + title, left side)
═══════════════════════════════════════════ */

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 60px;
  align-self: center;
}

.hero-content-inner { max-width: 520px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41,196,240,0.15);
  border: 1px solid rgba(41,196,240,0.4);
  color: #5DD8F5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #29C4F0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,0.40);
}
.hero-title em {
  color: #29C4F0;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   DOT NAVIGATION
═══════════════════════════════════════════ */

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none; padding: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
  position: relative;
}
.hero-dot::after { content: ''; position: absolute; inset: -10px; }
.hero-dot.active, .hero-dot:hover {
  background: #29C4F0;
  width: 26px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   OTHER REUSABLE HELPERS
═══════════════════════════════════════════ */
.about-features { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.about-feature  { display: flex; gap: 16px; align-items: flex-start; }
.feature-title  { font-weight: 700; font-size: 15px; color: #0d1a6e; margin-bottom: 5px; }
.feature-text   { font-size: 14px; color: var(--gray-text); line-height: 1.6; }
.rls-logo-svg   { display: block; }

.filter-btn {
  padding: 10px 24px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  cursor: pointer; letter-spacing: 0.5px;
  border: 1.5px solid var(--blue-deep);
  color: var(--blue-deep); background: transparent;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--blue-deep); color: white;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .hero-slide-img-wrap { width: 72%; }
  .hero-content { padding: 0 40px; }
  .hpc-name     { font-size: 24px; }
  .hero-caption { right: 40px; }
}
@media (max-width: 768px) {
  .hero-slide-img-wrap {
    width: 100%;
    opacity: 0.35;
    top: auto;
    height: 60vh;
    bottom: 0;
    align-items: flex-end;
  }
  .hero-slide-img-wrap img { height: 55vh; }
  .hero-content  { padding: 0 24px; }
  .hero-content-inner { max-width: 100%; }
  .hero-caption  { right: 24px; bottom: 70px; }
}
@media (max-width: 480px) {
  .hero-title    { font-size: 34px; }
  .hpc-name      { font-size: 20px; }
}
