.hs_price_container {
    border: 1px solid rgb(228, 228, 228);
    padding: 15px;
    display: inline-flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 30px;

    .hs_price_label {
        font-family: Roboto;
        font-size: 23px;
        font-weight: 300;
    }

    .hs_price {
        font-family: Roboto;
        font-size: 23px;
        font-weight: 400;

        .hs_price_value span {
            font-size: 27px;
            font-weight: 700;
        }
    }

    .hs_price_devis {
        font-family: Roboto;
        font-size: 27px;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 5px;
    }
}

.hs-attr-group {
    margin-bottom: 30px;

    .hs-attr-title {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .hs-attr-values {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;

        .hs-attr-value {
            cursor: pointer;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            padding: 5px 12px;
            font-size: 0.9em;
            transition: border-color 0.2s ease, opacity 0.2s ease, color 0.2s ease;
            user-select: none;

            &:hover:not(.is-disabled):not(.is-selected) {
                border-color: #aaa;
            }

            &.is-selected {
                border-color: var(--e-global-color-primary, #000);
                font-weight: 600;
            }

            &.is-disabled {
                opacity: 0.35;
                cursor: not-allowed;
                text-decoration: line-through;
            }
        }
    }
}

/* --- */

.hs-product-short-description {
    ul {
        list-style-type: disc;
    }

    .hs-variation-description{
        padding-top:30px;
    }
}
