/* Base container */
.pinto-carousel-container {
    height: 100vh;
    width: 100%; 
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Track containing slides */
.pinto-carousel-track {
    display: flex;
    height: 100vh;
    width: 100%; 

    transition: transform 0.5s ease-in-out;
}

/* Individual slide */
.pinto-carousel-slide {
    min-width: 100%;
    height: 100%;  /* Ensure slide fills container height */
    position: relative;
}
/* Controls */
.pinto-carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 50;
    padding: 8px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(3px);
}

/* Navigation dots */
.pinto-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
    margin: 0 3px;
}

.pinto-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.pinto-carousel-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Navigation arrows */
.pinto-carousel-prev,
.pinto-carousel-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    margin: 0 5px;
}

.pinto-carousel-prev:hover,
.pinto-carousel-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.pinto-carousel-prev:active,
.pinto-carousel-next:active {
    transform: scale(0.95);
    background-color: rgba(255, 255, 255, 0.6);
}

/* Play/Pause buttons */
.pinto-carousel-play-pause {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pinto-carousel-play-pause:hover {
    background-color: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.pinto-carousel-play-pause:active {
    transform: scale(0.95);
}

.pinto-carousel-play-pause .pinto-carousel-pause,
.pinto-carousel-play-pause .pinto-carousel-play {
    display: none;
    color: white;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.pinto-carousel-play-pause svg {
    width: 16px;
    height: 16px;
    fill: white;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

/* Show pause icon when playing (default state) */
.pinto-carousel-play-pause:not(.paused) .pinto-carousel-pause {
    display: flex;
}

/* Show play icon when paused */
.pinto-carousel-play-pause.paused .pinto-carousel-play {
    display: flex;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pinto-carousel-controls {
        bottom: 15px;
        padding: 6px 12px;
    }
    
    .pinto-carousel-dot {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }
    
    .pinto-carousel-prev,
    .pinto-carousel-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .pinto-carousel-play-pause {
        bottom: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}