/* Infinite Carousel */
.carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    margin: 0 12px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 41, 22, 0.2);
    transition: background 0.3s;
}

.carousel-item:hover .overlay {
    background: rgba(58, 41, 22, 0.4);
}

.carousel-item .label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.carousel-item .label h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (min-width: 1024px) {
    .carousel-item {
        width: 220px;
        height: 220px;
        margin: 0 16px;
    }
}

    background: rgba(255, 255, 255, 1);
}

.carousel-toggle svg {
    width: 16px;
    height: 16px;
}

    background: rgba(255, 255, 255, 1);
    transform: translateX(4px);
}

.skip-btn svg {
    width: 16px;
    height: 16px;
}

/* Skip button - English */
.carousel-skip-en {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}
