/* -----------------------------------------
   CAROUSEL — Infinite Loop Version
   ----------------------------------------- */

.carousel {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Лента */
.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    will-change: transform;
}

/* Карточка */
.carousel-card {
    flex: 0 0 260px;
    max-width: 260px;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Тёмный режим */
.carousel-card.dark {
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
}

/* Светлый режим */
.carousel-card.light {
    background: #fff;
    color: #000;
}

/* Изображение */
.carousel-card-image {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 12px;
}

/* Заголовок */
.carousel-card-title {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Список брендов */
.carousel-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel-card-list li {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}
.carousel {
    margin-bottom: 60px;
}
