/* 
 * AB-Carousel Structural CSS v2.3 (Ultra-Light)
 * Core functionality only. Design should be applied externally.
 */

:root {
    --ab-transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.ab-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ab-carousel-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.ab-carousel-container:active {
    cursor: grabbing;
}

.ab-carousel-track {
    display: flex;
    transition: var(--ab-transition);
    will-change: transform;
}

.ab-carousel-item {
    flex-shrink: 0;
    box-sizing: border-box;
    will-change: transform, opacity;
}

/* Base Navigation Positioning (No Design) */
.ab-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.ab-carousel-nav.prev {
    left: 10px;
}

.ab-carousel-nav.next {
    right: 10px;
}

.ab-carousel-nav.hidden {
    display: none;
}

.ab-carousel-nav svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Base Dots Positioning (No Design) */
.ab-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.ab-carousel-dot {
    cursor: pointer;
    border: none;
    padding: 0;
}