/* ==========================================================================
   Carrusel de la página principal — Diamante Real
   ========================================================================== */

.carrusel-luxury-section {
    background: var(--dark-pure, #0f0f11);
    padding: 60px 0;
}
@media (min-width: 768px) {
    .carrusel-luxury-section { padding: 100px 0; }
}

.carrusel-luxury {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.carrusel-luxury .carousel-item {
    height: 60vw;
    max-height: 560px;
    min-height: 260px;
}

.carrusel-luxury .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrusel-luxury .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 45%);
}

.carrusel-caption-luxury {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 24px;
    z-index: 5;
    text-align: left;
}
@media (min-width: 768px) {
    .carrusel-caption-luxury { left: 50px; bottom: 40px; }
}
.carrusel-caption-luxury h5 {
    font-family: var(--font-oswald, sans-serif);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin: 0;
}
@media (min-width: 768px) {
    .carrusel-caption-luxury h5 { font-size: 1.4rem; }
}

.carrusel-luxury .carousel-control-prev,
.carrusel-luxury .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.carrusel-luxury .carousel-control-prev { left: 16px; }
.carrusel-luxury .carousel-control-next { right: 16px; }
.carrusel-luxury .carousel-control-prev:hover,
.carrusel-luxury .carousel-control-next:hover {
    background: var(--gold, #bfa67a);
    opacity: 1;
}
.carrusel-luxury .carousel-control-prev-icon,
.carrusel-luxury .carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

.carrusel-luxury .carousel-indicators {
    margin-bottom: 14px;
}
.carrusel-luxury .carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    border: none !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    margin: 0 4px !important;
    transition: all 0.3s ease;
}
.carrusel-luxury .carousel-indicators button.active {
    background-color: var(--gold, #bfa67a) !important;
    width: 22px !important;
    border-radius: 4px;
}

.carrusel-empty-state {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(191, 166, 122, 0.3);
    border-radius: 8px;
    padding: 70px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}
.carrusel-empty-state i {
    font-size: 2.2rem;
    color: var(--gold, #bfa67a);
    opacity: 0.5;
    margin-bottom: 14px;
    display: block;
}
