/* Styles pour prix promotionnel */
.price {
    position: relative;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.8em;
    margin-right: 8px;
    opacity: 0.7;
}

.new-price {
    color: #dc2626;
    font-weight: bold;
    font-size: 1.1em;
}

/* FAQ Section Styles */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.faq .section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.2rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer.active {
    border-top: 1px solid #e2e8f0;
}

.faq-answer p {
    padding: 24px 28px;
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq .section-header h2 {
        font-size: 2rem;
    }
    
    .faq .section-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .faq-container {
        margin: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-answer p {
        padding: 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq .section-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .faq-question h3 {
        padding-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }
    
    .faq-icon {
        align-self: flex-end;
        margin-top: -24px;
    }
    
    .faq-answer p {
        padding: 16px;
    }
}