/* Styles pour le sélecteur de pack sur la fiche produit */
.wc-pack-item-label:hover {
    border-color: #a46497 !important;
}

/* Verrouillage visuel de la quantité sur la page Panier (Cart) */
span.wc-pack-locked-qty {
    display: inline-block;
    padding: 6px 12px;
    background: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
    color: #333;
    min-width: 40px;
    text-align: center;
}

/* Layout Horizontal pour le Shortcode de Classement */
.wc-ranking-list.horizontal-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.wc-ranking-list.horizontal-layout .wc-ranking-item {
    flex: 1 1 calc(33.333% - 15px);
    min-width: 250px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
/* Forçage global des avatars ronds dans le classement */
.rank-thumb {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.rank-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}