.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-image {
    width: 100%;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    border: none;

    box-shadow: 0 4px 10px rgba(0,0,0,0.15);

    cursor: pointer;

    transition: 
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.carousel-btn:hover{
    background: white;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.carousel-btn svg{
    width: 20px;
    height: 20px;
    stroke: #333;
}

.prev{
    left: 12px;
}

.next{
    right: 12px;
}