/* Aura Carousel Styles */

.aura-carousel-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.aura-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: transparent;
}

.aura-carousel-track {
    display: flex;
    height: 100%;
    gap: 25px ;
    cursor: grab;
    user-select: none;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.aura-carousel-track.dragging {
    cursor: grabbing;
    transition: none;
}

.aura-carousel-slide {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.aura-carousel-slide img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Error and Empty States */
.aura-carousel-error,
.aura-carousel-empty {
    padding: 40px;
    text-align: center;
    color: #666;
    font-size: 16px;
    background: #f5f5f5;
    border-radius: 8px;
}

/* Lightbox */
.aura-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aura-lightbox.active {
    display: flex;
    opacity: 1;
}

.aura-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.aura-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aura-lightbox-content img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.aura-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 3;
    background: none;
    border: none;
    color: white;
    font-size: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    font-weight: 300;
}

.aura-lightbox-close:hover {
    transform: scale(1.2);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .aura-carousel-wrapper {
        height: 50vh;
    }

    .aura-carousel-track {
        gap: 0;
    }

    .aura-carousel-slide {
        width: 100% !important;
    }

    .aura-lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .aura-carousel-wrapper {
        height: 50vh;
    }

    .aura-carousel-slide {
        width: 100% !important;
    }

    .aura-lightbox-close {
        font-size: 45px;
        top: 15px;
        right: 20px;
    }
}
