/* Основной контейнер карусели */
.listing-carousel {
    margin: 48px 0;
}

/* Заголовок и навигация */
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.carousel-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--black--black10, #222324);
}

.carousel-navigation {
    display: flex;
    gap: 8px;
}

.carousel-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--grey--grey90, #F7F7F7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
    background: var(--grey--grey80, #D7D7D7);
}

.carousel-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Контейнер карусели */
.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
}

.carousel-item {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: 0;
}

@media (max-width: 1024px) {
    .carousel-item {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 100%;
    }

    .carousel-title {
        font-size: 20px;
    }

    .listing-carousel {
        margin-top: 24px;
        margin-bottom: 0;
    }
}