/* ============================================
   RACLE - SÉLECTEUR DE TAILLE
   Dépendances : core.css, components.css, product-base.css
   Taille : ~1 KB (au lieu de 3 KB)
   ============================================ */

/* =============================================================
    SÉLECTEUR DE TAILLE - GLASSMORPHISM SPÉCIFIQUE PRODUIT RACLE
   ============================================================= */

.product-sizes {
    margin-bottom: 20px;
    width: 100%;
}

.product-sizes__label {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-align: center;
}

.product-sizes__options {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Utilise .card de components.css comme base */
.product-size {
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.product-size.active {
    border-color: rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.9);
}

.product-size__image {
    width: 80px;
    height: auto;
    display: block;
}

.product-size__text {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: #1a1a1a;
}

/* ==========================================
   RESPONSIVE SPÉCIFIQUE RACLE
   ========================================== */

@media (max-width: 768px) {
    .product-size {
        min-width: 100px;
        padding: 12px;
    }
    
    .product-size__image {
        width: 60px;
    }
}
/* ==========================================
   MODAL RACLE - EN SAVOIR +
   ========================================== */

.modal-racle-content {
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
}

/* Masquer scrollbar */
.modal-racle-content::-webkit-scrollbar {
    display: none;
}

.modal-racle-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-title-racle {
    font-size: 2.3125rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: left;
}

.modal-title-racle strong {
    font-weight: 700;
}

/* Bloc 3 photos verticales */
.modal-section-benefits-racle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.modal-benefit-card-racle {
    display: flex;
    flex-direction: column;
}

.modal-benefit-image-racle {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    margin-bottom: 16px;
}

.modal-benefit-image-racle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-benefit-overlay-racle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.modal-benefit-overlay-racle h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.modal-benefit-overlay-racle p {
    font-size: 30px;
    line-height: 1.2;
    margin: 0;
    font-weight: 500;
}

.modal-benefit-text-racle {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.modal-benefit-text-racle strong {
    font-weight: 700;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-racle-content {
        max-width: 95%;
        padding: 30px 20px;
    }
    
    .modal-title-racle {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .modal-section-benefits-racle {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-benefit-image-racle {
        height: 350px;
    }
    
    .modal-benefit-overlay-racle p {
        font-size: 20px;
    }
}

/* ==========================================
   HINT SOUS LES TAILLES
   ========================================== */

.product-size-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.product-size__hint {
    font-size: 0.75rem;
    font-weight: 400;
    color: #999;
    text-align: center;
    line-height: 1.3;
}