﻿/* Container for the entire carousel */
.multi-carousel-container {
    cursor: grab;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

    /* Cursor styles for dragging */
    .multi-carousel-container.dragging,
    #multiCarousel.dragging {
        cursor: grabbing;
    }

/* Wrapper for all slides */
.multi-carousel-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Individual slide */
.multi-carousel-item,
.clone {
    box-sizing: border-box;
    flex: 0 0 33.333333%;
    padding: 0 5px;
    position: relative; /* Essential for item-number positioning */
}

/* Control buttons */
.multi-carousel-control-prev,
.multi-carousel-control-next {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    text-decoration: none;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    width: 40px;
    z-index: 10;
}

    .multi-carousel-control-prev:hover,
    .multi-carousel-control-next:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

.multi-carousel-control-prev {
    left: 10px;
}

.multi-carousel-control-next {
    right: 10px;
}

/* Image container with dynamic height */
.img-container {
    border-radius: 1.5rem;
    height: var(--carousel-height, 80vh);
    overflow: hidden;
    position: relative;
}

    /* Image styling */
    .img-container img,
    #carouselInner img {
        height: 100%;
        object-fit: cover;
        object-position: top;
        pointer-events: none;
        user-drag: none;
        width: 100%;
        -webkit-user-drag: none;
        transition: transform 0.3s ease;
    }

    .img-container:hover img {
        transform: translateZ(0) scale(1.02);
    }

/* Item number styling - guaranteed visibility */
.item-number {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    display: inline-flex;
    font-size: 120%;
    font-weight: bold;
    height: 35px;
    justify-content: center;
    left: 1rem;
    position: absolute;
    top: 1rem;
    width: 35px;
    z-index: 2; /* Higher than default but below controls */
    /* Isolation prevents z-index context issues */
    isolation: isolate;
}

/* Carousel cursor styling */
#multiCarousel {
    cursor: grab;
    touch-action: pan-y;
}

    /* Disable text selection during drag */
    #multiCarousel.dragging {
        user-select: none;
        -webkit-user-select: none;
    }

/* Responsive adjustments for screens smaller than 720px (45em) */
@media (max-width: 45em) {
    .multi-carousel-item,
    .clone {
        flex: 0 0 100%;
    }
