/* ============================================================
   HOME NOUVEAUTÉS — Slider produits
   ============================================================ */

.home-new-products {
    padding: 60px 0;
    background-color: var(--color-bg);
}

/* Header : titre + bouton alignés */
.home-new-products__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
    padding: 0 var(--gutter);
}

.home-new-products__title {
    font-size: var(--text-3xl);
    margin-bottom: 4px;
}

.home-new-products__subtitle {
    font-size: var(--text-sm);
    color: var(--color-white);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}

/* Slider */
.home-new-products__slider {
    overflow: hidden;
    padding: 0 var(--gutter);
}

/* Pagination */
.home-new-products__pagination.swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 30px;
    text-align: center;
}

.home-new-products__pagination .swiper-pagination-bullet {
    background: #333;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 4px;
}

.home-new-products__pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

/* ============================================================
   PRODUCT CARD (slider spécifique)
   ============================================================ */

.home-new-products__card {
    display: flex;
    flex-direction: column;
    height: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 767px) {
    .home-new-products {
        padding: 40px 0;
    }

    .home-new-products__header {
        flex-direction: column;
        gap: 16px;
    }

    .home-new-products__title {
        font-size: var(--text-2xl);
    }
}
