.custom-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    scroll-behavior: smooth;
}

.carousel-slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-carousel-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.carousel-prev,
.carousel-next {
    background-color: #FFD93B; /* Żółty */
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: #e6bf34; /* Ciemniejszy żółty przy najechaniu */
}

.custom-carousel-dots .dot {
    width: 10px;
    height: 10px;
    background: #aaa;
    border-radius: 50%;
    cursor: pointer;
}

.custom-carousel-dots .dot.active {
    background: #000;
}
