/* Conteneur des blocs d'attributs */
.custom-attribute-selector {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

/* Style des blocs carrés */
.custom-attribute-block {
    width: 150px;
    height: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    border: 2px solid #000;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: 12px 10px 0 10px;
    box-sizing: border-box;
    color:#000;
    background-image: url(../images/picto-arrow-down-small-cta.svg);
    background-size: 11px;
    background-position: right 8px  bottom 8px;
    background-repeat: no-repeat;
}

/* Effet au survol */
.custom-attribute-block:hover {
    background-color: #000;
    color:#fff;
    background-image: url(../images/picto-arrow-down-small-cta-white.svg);
}

/* Bloc actif (sélectionné) */
.custom-attribute-block.active {
    background-color: #000;
    color: #fff;
    background-image: url(../images/picto-arrow-down-small-cta-white.svg);
}
.custom-attribute-block .label {
    font-size: 25px;
    line-height: 30px;
    font-family: "Outfit-Regular", serif;
}
.custom-attribute-block .your-arrow-class {
    background-image: url(../images/picto-arrow-down-small-cta.svg) !important;
    filter: none !important;
}




/* Affichage des prix */
.custom-attribute-block .price {
    margin-top: 10px;
    display: flex
;
    align-items: center;
    justify-content: center;
    width: 126px;
}
.custom-attribute-block .price del .woocommerce-Price-amount{
    font-size: 13px;
    line-height: 20px;
}
.custom-attribute-block .price ins .woocommerce-Price-amount{
    font-size: 14px;
    line-height: 20px;
    padding-left: 5px;
}
.custom-attribute-selector .wcsatt-options-wrapper{
    display:none;
}

.variations{
    display:none;
}


/*.woocommerce-variation-price{
    display:none;
}

 */
.variations th.label{
    display:none;
}
.reset_variations{
    display:none!important;
}
.wcsatt-options-prompt-radios{
    display:none;
}
.subscription-container{
    margin-bottom:40px;
}
#subscription-options{
    margin-top:15px;
}
#subscription_duration{
    width: 309px;
    height: 45px;
    font-family: "NunitoSans-Regular", serif;
    font-size: 16px;
    padding-left: 10px;
}
.subscription-toggle{
    font-size:20px;
}
.custom-attribute-block .subscription-details{
    display:none;
}
@media all and (max-width:850px) {
    .custom-attribute-block {
        width: 32%;
        height: inherit;
        aspect-ratio: 1;
        padding: 20px 5px 0 5px;
        box-sizing:border-box;
    }
    .custom-attribute-selector{
        gap: 10px;
    }
}
@media all and (max-width:750px) {
    .custom-attribute-block {
        width: 32%;
        height: inherit;
        aspect-ratio: 1;
        padding: 20px 5px 0 5px;
        box-sizing:border-box;
    }

    .custom-attribute-block .label {
        font-size: 18px;
        line-height: 22px;
    }

    .custom-attribute-block .price {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1;
        width: 100%;
    }

    .custom-attribute-selector {
        gap: 7px;
        justify-content: start;
    }
}
@media all and (max-width:500px) {
    .custom-attribute-block:hover,
    .custom-attribute-block.active,
    .custom-attribute-block {
        background-image: none;
    }
   
}