/* ==========================================================================
   Styles pour les options de contenance dans Bestsellers
   ========================================================================== */

/* Conteneur des options de contenance */
.section-container.lab-ella-bestsellers .section-card.bestseller-product .size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Boutons de contenance - Style cohérent avec version-option */
.section-container.lab-ella-bestsellers .section-card.bestseller-product .size-option {
    padding: 8px 16px;
    border: 1px solid var(--dark);
    border-radius: 5px;
    cursor: pointer;
    background: #fff;
    transition: var(--transition);
    font-size: 12px;
    text-align: center;
    box-shadow: 0 2px 6px var(--light-shadow);
    color: var(--dark);
    font-family: var(--font-primary);
}

/* Hover sur les contenances */
.section-container.lab-ella-bestsellers .section-card.bestseller-product .size-option:hover {
    background: #f5f5f5;
    border-color: var(--dark);
}

/* Contenance active - Style cohérent avec version-option */
.section-container.lab-ella-bestsellers .section-card.bestseller-product .size-option.active {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #fff;
    box-shadow: 0 2px 6px rgba(232, 199, 167, 0.5);
}
