/* === WRAPPER GLOBAL === */
.fa-homeproduct-wrapper {
   
    overflow: hidden;
    margin-top: 30px;
    margin-left: -15px;
    margin-right: -15px;
}

.fa-homeproduct-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 700;
}

/* === BOUTONS DES CATÉGORIES === */
.fa-homeproduct-buttons {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
    gap: 20px;
}

.fa-homeproduct-buttons a.fa-homeproduct-btn {
    border: 1px solid #999999;
    color: #999999;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    background-color: transparent;
    text-transform: uppercase;
}

a.fa-homeproduct-btn.active,
a.fa-homeproduct-btn:hover {
    color: #000;
    border-color: #000;
}

/* === PRODUITS SLIDER === */
.products-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 25px;
    padding-bottom: 10px;
    padding-top: 15px;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
   
}

.products-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}


/* === PRODUITS === */
.fa-products-row {
    display: flex;
    flex-wrap: nowrap;
}

.fa-product-item {
    flex: 0 0 calc((100vw - 95px) / 5);
    scroll-snap-align: start;
    /* Snap pour que produit ne se coupe pas */
    box-sizing: border-box;
    padding: 0 15px;
}

/* Masquer les blocs inactifs */
.hidden {
    display: none !important;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .fa-product-item {
        flex: 0 0 calc((100vw - 100px) / 2);
        /* 3 produits visibles max */
    }
}

@media (max-width: 768px) {
    .fa-product-item {
        flex: 0 0 100vw;
        /* 2 produits visibles max */
    }
}