/**
 * Styles pour la section "Notre sélection du moment"
 * Harmonisé avec le style de la bannière promo
 */

/* Section principale */
.selection-moment-section {
    width: 100%;
    padding: 60px 0 60px 0;
    background: #ffffff; 
}

.selection-moment-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header de la section - CENTRÉ */
.selection-moment-header {
    text-align: center;
    margin-bottom: 48px;
}

.selection-moment-title {
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 14px 0;
    color: #303938;
    line-height: 1.2;
}

.selection-moment-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #737373;
    margin: 0;
    line-height: 1.4;
}

/* Grille de produits (hérite de Shoptimizer) */
.selection-moment-products {
    margin: 0 0 48px 0;
}

/* Footer avec bouton - CENTRÉ */
.selection-moment-footer {
    text-align: center;
    margin-top: 48px;
}

.selection-moment-button {
    display: inline-block;
    padding: 15px 38px;
    background-color: #456754;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #456754;
}

.selection-moment-button:hover {
    background-color: transparent;
    color: #456754;
    border-color: #456754;
    background-color: #ffffff;
}

.selection-moment-button:focus {
    outline: 3px solid #456754;
    outline-offset: 4px;
}

/* ===============================================
   RESPONSIVE
   =============================================== */

/* Desktop Large (≥ 960px) */
@media (min-width: 960px) {
    .selection-moment-section {
        padding: 90px 0 70px 0;
    }

    .selection-moment-title {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .selection-moment-subtitle {
        font-size: 19px;
    }

    .selection-moment-button {
        font-size: 17px;
        padding: 14px 36px;
    }
}

/* Tablette (640px - 959px) */
@media (min-width: 640px) and (max-width: 959px) {
    .selection-moment-section {
        padding: 70px 0 60px 0;
    }

    .selection-moment-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .selection-moment-subtitle {
        font-size: 18px;
    }

    .selection-moment-button {
        font-size: 16px;
        padding: 14px 32px;
    }
}

/* Mobile (≤ 639px) */
@media (max-width: 639px) {
    .selection-moment-section {
        padding: 60px 0 50px 0;
    }

    .selection-moment-container {
        padding: 0 16px;
    }

    .selection-moment-header {
        margin-bottom: 32px;
    }

    .selection-moment-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .selection-moment-subtitle {
        font-size: 16px;
    }

    .selection-moment-footer {
        margin-top: 32px;
    }

    .selection-moment-button {
        padding: 14px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 320px;
    }

    .selection-moment-products {
        margin-bottom: 32px;
    }
}

/* Animation au chargement (respect prefers-reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
    .selection-moment-section {
        animation: fadeIn 0.6s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}