/* ── CAROUSEL STYLES ────────────────────────────────── */

/* Carousel Container */
.hero-carousel {
  width: 100%;
  height: 70%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid rgba(184,150,62,.2);
  box-shadow: 0 20px 60px rgba(0,0,0,.4),inset 0 1px 0 rgba(255,255,255,.1);
}

/* Carousel Track */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

/* Carousel Slides */
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(240, 235, 224, 0.4);
  border: 2px solid rgba(240, 235, 224, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(240, 235, 224, 0.6);
}

.carousel-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(28, 26, 20, 0.8);
  color: var(--text-cream);
  border: 2px solid rgba(184,150,62,.3);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

.carousel-nav:hover {
  background: rgba(184, 150, 62, 0.9);
  transform: translateY(-50%) scale(1.1);
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(184,150,62,.4);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* Mobile Responsive */
@media (max-width: 860px) {
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  
  .carousel-controls {
    bottom: 15px;
    gap: 8px;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .carousel-prev {
    left: 8px;
  }
  
  .carousel-next {
    right: 8px;
  }
  
  .carousel-controls {
    bottom: 10px;
    gap: 6px;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
  }
}
