/* === Structure principale === */
.carousel-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.carousel-title {
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #000;
}

/* === Style des produits === */
.carousel-inner {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap; /* 🔥 BLOQUER SUR UNE SEULE LIGNE */
    overflow: hidden; /* 🔥 CACHER LES PRODUITS EN TROP */
}

.carousel-item,
.product-card {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px); /* 🔥 FORCER LA LARGEUR MAXIMALE */
    box-sizing: border-box;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
    position: relative; /* 🔥 POUR L'EFFET HOVER DES IMAGES */
    overflow: hidden; /* 🔥 POUR CACHER LE DÉBORDEMENT DE L'IMAGE HOVER */
}

/* Conteneur d'image pour l'effet hover */
.product-image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.carousel-item img,
.product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/4; /* 🔥 FORMAT PORTRAIT COMME LE RESTE DU SITE */
    display: block;
}

/* Image hover */
.product-card img.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover img.hover-image {
    opacity: 1;
}

/* Lien image produit */
.product-image-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.product-image-link:hover {
    text-decoration: none;
}

/* === Titre produit === */
.carousel-item h3,
.product-card h4 {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0 0 5px;
    min-height: 40px;
    line-height: 1.4;
}

/* === Prix === */
.carousel-item .price,
.product-card .price {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
}

/* === Bouton Ajouter au panier === */
.carousel-item .add-to-cart-button,
.product-card .add-to-cart-btn {
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 0;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background 0.3s ease;
    display: block;
    text-align: center;
}

.carousel-item .add-to-cart-button:hover,
.product-card .add-to-cart-btn:hover {
    background-color: #333;
}

/* === Description (masquée dans le carousel) === */
.product-card .description {
    display: none; /* 🔥 MASQUER LA DESCRIPTION POUR ÉCONOMISER L'ESPACE */
}

/* === Menu catégories (simulé) === */
.carousel-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 8px;
}

.carousel-menu a {
    padding: 8px 16px;
    border: none;
    color: #666;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    background: none;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.carousel-menu a.active,
.carousel-menu a:hover {
    color: #000;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .carousel-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .carousel-item {
        flex: 0 0 100%;
    }
}

/* === Styles Swiper pour mobile === */
@media (max-width: 768px) {
    /* Menu des catégories - CENTRER SUR MOBILE */
    .category-menu,
    [id^="category-menu-carousel"] {
        display: flex !important;
        justify-content: center !important;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
        gap: 10px;
        flex-wrap: wrap; /* Au cas où il y a beaucoup de catégories */
        text-align: center;
    }
    
    /* Boutons du menu catégories */
    .category-menu button {
        padding: 8px 16px;
        border: 1px solid #ddd;
        background: white;
        border-radius: 20px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .category-menu button.active {
        background: #000;
        color: white;
        border-color: #000;
    }
    
    /* Container Swiper - classe .swiper au lieu de .swiper-container */
    .swiper-mobile-carousel {
        width: 100%;
        padding-bottom: 50px;
        position: relative;
        overflow: hidden; /* Important pour le centrage */
    }
    
    /* Wrapper */
    .swiper-wrapper {
        display: flex;
        align-items: stretch;
        /* Le centrage est géré par Swiper avec centeredSlides */
    }
    
    /* Slides - largeur automatique pour centeredSlides */
    .swiper-slide {
        width: auto;
        height: auto;
        display: flex;
        justify-content: center;
    }
    
    /* Carte produit dans Swiper */
    .swiper-slide .product-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        flex: none; /* Override le flex du carousel normal */
        display: flex;
        flex-direction: column;
        min-height: 420px; /* Hauteur minimum pour cohérence */
    }
    
    /* Pagination centrée */
    .swiper-pagination {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
        z-index: 10;
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ccc;
        opacity: 1;
        margin: 0;
        border-radius: 50%;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .swiper-pagination-bullet-active {
        background: #000;
        width: 20px;
        border-radius: 4px;
    }
    
    /* Améliorer le touch sur mobile */
    .swiper-container {
        touch-action: pan-y; /* Permet le swipe horizontal mais garde le scroll vertical */
        user-select: none; /* Empêche la sélection de texte pendant le swipe */
        -webkit-user-select: none;
    }
    
    /* Container du carousel */
    .carousel-container {
        overflow: visible;
        padding: 0;
    }
    
    /* S'assurer que les images gardent leur aspect ratio */
    .swiper-slide .product-image-container {
        width: 100%;
        position: relative;
    }
    
    .swiper-slide .product-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
    }
    
    /* Transition plus douce */
    .swiper-wrapper {
        transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }

}
