/* Styles globaux pour la FAQ (Utilisés sur l'accueil et la page FAQ dédiée) */

.faq-details {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    padding: 20px;
    border-left: 5px solid var(--viking-red, #bf222d);
    transition: all 0.3s ease;
}

.faq-details:hover {
    box-shadow: 0 8px 25px rgba(191,34,45,0.15);
}

.faq-summary {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--viking-dark, #1a1a1a);
    cursor: pointer;
    list-style: none; /* retire la flèche native si supporté */
    position: relative;
    padding-right: 30px;
    margin: 0;
}

/* Cache la flèche native Safari/Chrome/Firefox */
.faq-summary::-webkit-details-marker,
.faq-summary::marker {
    display: none;
    font-size: 0;
}

.faq-summary::after {
    content: '\f078'; /* FontAwesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: var(--viking-red, #bf222d);
}

.faq-details[open] .faq-summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-content {
    margin-top: 15px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 15px;
    animation: fadeIn 0.4s ease;
}

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