/* === ALIGNER LES TAILLES HORIZONTAL === */
.product-variants .product-variants-item .attribute-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

/* Chaque taille */
.product-variants .product-variants-item .attribute-item {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 45px;
}

/* Style bouton propre */
.product-variants .product-variants-item .attribute-item label {
    border: 1px solid #ddd;
    padding: 8px 14px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    background: #fff;
}

/* Hover */
.product-variants .product-variants-item .attribute-item label:hover {
    border-color: #000;
}

/* Sélectionné */
.product-variants .product-variants-item input:checked + span,
.product-variants .product-variants-item input:checked + label {
    background: #000;
    color: #fff;
    border-color: #000;
}