/* ===== CAROUSEL CONTROLS - POMPEIAN EDITION ===== */

/* Navigation Buttons (Left/Right Arrows) */
.carousel-controls {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid var(--color-gold-bright);
    color: var(--color-ivory);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    user-select: none;
}

.carousel-controls:hover {
    background: var(--color-gold-bright);
    color: var(--color-bg-deep);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

.carousel-prev {
    left: 40px;
}

.carousel-next {
    right: 40px;
}

/* Indicators Container */
.carousel-indicators {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
    padding: 12px 25px;
    background: rgba(26, 23, 20, 0.85);
    /* Dark charcoal glass */
    border: 1px solid var(--color-gold-muted);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
}

/* Indicator Dots (Generated by JS) */
.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--color-gold-muted);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.indicator-dot.active {
    background: var(--color-gold-bright);
    border-color: var(--color-gold-bright);
    width: 20px; /* Slightly shorter pill */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.indicator-dot:hover {
    background: rgba(197, 160, 89, 0.4);
}

/* Responsive Controls */
@media (max-width: 768px) {
    .carousel-controls {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        background: rgba(0, 0, 0, 0.4);
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }

    .carousel-indicators {
        bottom: 15px;
        padding: 8px 18px;
        gap: 10px;
    }
}