﻿
section.wrap-click-and-collect {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.header-click-and-collect {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.content-click-and-collect {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 56px;
    align-self: stretch;
}

.wrap-description-click-and-collect {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}

.content-description-click-and-collect {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
}

.content-description-click-and-collect p {
    color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.infos-description-click-and-collect {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex: 1 0 0;
}

.date-and-hour-cac, .link-services-cac {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.wrap-product-click_and_collect {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

/* Filtre catégorie de produits boutique */

nav.product-list-filter {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    position: relative;
    flex-wrap: wrap;
}

nav.product-list-filter span {
    display: flex;
    width: 222.667px;
    padding-bottom: 8px;
    align-items: center;
    color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    border-bottom: 1px solid var(--Colors-BE-GRIS, #EAEAEA);
    cursor: pointer;
}

nav.product-list-filter span.active {
    border-bottom: 1px solid var(--Colors-BE-GRIS, #EAEAEA);
    color: var(--MAIN-COLOR);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

/* On n'utilise plus le ::after pour l'underline sur les span */
nav.product-list-filter span::after {
    display: none;
}

/* L'underline mobile */
.underlineProduct {
    position: absolute;
    height: 3px;
    width: 0;
    background-color: var(--MAIN-COLOR);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    /* Assurez-vous qu'il soit visible, pas de display: none */
}

/* Liste des produits */

.wrap-shop-products-content {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 16px;
    align-self: stretch;
    flex-wrap: wrap;
}

.wrap-shop-products-content .list-shop-products {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Produit */
.bloc-shop-product {
    display: flex;
    width: 330px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    border: 1px solid var(--Colors-BE-GRIS, #EAEAEA);
    background: var(--Colors-BE-BLANC, #FFF);
}

.bloc-shop-product img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.bloc-shop-product-content {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.bloc-title-shop-product .bloc-title {
    display: flex;
    height: 50px;
}

.bloc-title-shop-product h4 {
    color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.wrap-price-shop-product {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    align-self: stretch;
}

.bloc-price-shop-product {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
}

.bloc-price-shop-product .price strong {
    color: var(--Colors-BE-NOIR, #000);
    text-align: right;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.bloc-price-shop-product .price span {
    color: var(--Colors-BE-NOIR, #000);
    text-align: right;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}

.addShodProductToCartButton {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--MAIN-COLOR);
    background: var(--MAIN-COLOR-LIGHT);
    transition: all .4S ease-out;
    cursor: pointer;
}

.addShodProductToCartButton:hover {
    background: var(--MAIN-COLOR);
}

.addShodProductToCartButton span {
    color: var(--MAIN-COLOR);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

.addShodProductToCartButton:hover span {
        color: var(--color-white);
} 

.addShodProductToCartButton.disabled {
    border: 1px solid var(--Colors-BE-GRIS-D, #BFBFBF);
    background: var(--Colors-BE-BLANC, #FFF);
    cursor: inherit;
}

.addShodProductToCartButton.disabled span {
    color: var(--Colors-BE-GRIS-D, #BFBFBF);
    cursor: inherit;
}

