/* ========================================
   CSS MANQUANT POUR AICORA PAGE
   À ajouter à assets/product-page.css
   ======================================== */

/* ============================================
   1. COMPTE À REBOURS STYLISÉ
   ============================================ */

.countdown-container {
    text-align: center;
    margin: 30px auto;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.countdown-title {
    color: #ffffff;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-block {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.countdown-block:hover {
    transform: translateY(-5px);
}

.countdown-number {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Séparateur entre les blocs */
.countdown-separator {
    font-size: 2em;
    color: #ffffff;
    align-self: center;
    font-weight: bold;
    margin: 0 5px;
}

/* ============================================
   2. SECTIONS AVEC FOND COLORÉ
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .subtitle {
    font-size: 1.2em;
    opacity: 0.95;
    margin-bottom: 20px;
}

/* Section Bonus - Fond dégradé rose/rouge */
.bonus-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 50px 30px;
    border-radius: 15px;
    color: white;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
}

.bonus-section h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.bonus-card {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.25);
}

.bonus-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.bonus-value {
    font-size: 1.1em;
    font-weight: 600;
    color: #ffeb3b;
    margin-bottom: 15px;
}

/* ============================================
   3. BOUTONS CTA AMÉLIORÉS
   ============================================ */

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.3em;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(238, 90, 36, 0.4);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(238, 90, 36, 0.6);
}

.cta-button::after {
    content: " →";
    margin-left: 8px;
}

.cta-button-secondary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.cta-button-secondary:hover {
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.6);
}

/* ============================================
   4. CARDS DE PRIX STYLISÉES
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 3px solid #667eea;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "RECOMMANDÉ";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-title {
    font-size: 1.6em;
    color: #333;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.5em;
    color: #667eea;
    font-weight: 700;
}

.pricing-period {
    font-size: 0.9em;
    color: #999;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1.05em;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.3em;
}

/* ============================================
   5. TÉMOIGNAGES STYLISÉS
   ============================================ */

.testimonials-section {
    margin: 50px 0;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    border-left: 5px solid #667eea;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateX(10px);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4em;
    color: #667eea;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
    text-align: right;
    font-size: 1.05em;
}

.testimonial-author::before {
    content: "— ";
}

/* ============================================
   6. BADGES ET GARANTIES
   ============================================ */

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    margin: 20px 0;
}

.guarantee-badge::before {
    content: "🛡️";
    margin-right: 10px;
    font-size: 1.5em;
}

/* ============================================
   7. SECTIONS ALTERNÉES
   ============================================ */

.section-light {
    background-color: #f8f9fa;
    padding: 50px 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.section-dark {
    background-color: #2c3e50;
    color: white;
    padding: 50px 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.section-dark h2 {
    color: white;
}

/* ============================================
   8. ALERTES ET URGENCE
   ============================================ */

.urgency-alert {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px 25px;
    border-radius: 5px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.2);
}

.urgency-alert::before {
    content: "⚠️";
    font-size: 2em;
    margin-right: 15px;
}

.urgency-alert strong {
    color: #856404;
}

/* ============================================
   9. LISTE DE FONCTIONNALITÉS AVEC ICÔNES
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
}

.feature-title {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* ============================================
   10. FAQ STYLISÉE
   ============================================ */

.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1em;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question::after {
    content: "+";
    font-size: 1.5em;
    color: #667eea;
    font-weight: bold;
}

.faq-answer {
    padding: 20px 25px;
    color: #666;
    line-height: 1.7;
    border-top: 1px solid #e9ecef;
}

/* ============================================
   11. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .countdown-timer {
        gap: 10px;
    }

    .countdown-block {
        min-width: 70px;
        padding: 15px 20px;
    }

    .countdown-number {
        font-size: 2em;
    }

    .countdown-separator {
        display: none;
    }

    .hero-section h1 {
        font-size: 1.8em;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
        width: 100%;
    }

    .pricing-grid,
    .features-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .countdown-number {
        font-size: 1.6em;
    }

    .countdown-label {
        font-size: 0.75em;
    }

    .hero-section {
        padding: 40px 15px;
    }
}

/* ============================================
   12. ANIMATIONS
   ============================================ */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Effet de glow sur les boutons importants */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(238, 90, 36, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(238, 90, 36, 0.7);
    }
}

.cta-button.glow {
    animation: glow 2s infinite;
}

/* ================================================
   CORRECTION TEXTE BLANC - HERO AICORA
   Ajouté pour corriger la lisibilité
   ================================================ */

/* Forcer tout le texte en BLANC sur la section .hero */
.hero h1,
.hero .tagline,
.hero .meta-info,
.hero .meta-info span,
.hero .rating,
.hero .date,
.hero .read-time,
.hero .breadcrumb,
.hero .breadcrumb a,
.hero .badge {
    color: white !important;
}

/* Quick Verdict - Texte blanc */
.quick-verdict h4 {
    color: white !important;
}

.quick-verdict ul li {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Target Audience - Texte blanc */
.target-audience h4 {
    color: white !important;
}

.target-audience p {
    color: rgba(255, 255, 255, 0.95) !important;
}