/**
 * RkAiMagicCatalogSuite - Front FAQs Accordion Styles
 */
.easyseo-faqs-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 20px;
    border: 1px solid #f0f0f0;
}

.easyseo-accordion details {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.easyseo-accordion details:last-child {
    border-bottom: none;
}

.easyseo-accordion details[open] {
    background: #fcfcfc;
    padding-bottom: 15px;
}

.easyseo-faq-question {
    padding: 15px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    list-style: none; /* Elimina flecha nativa */
    display: flex;
    align-items: center;
    position: relative;
    user-select: none;
}

.easyseo-faq-question::-webkit-details-marker {
    display: none; /* Ocultar marcador en Safari */
}

.easyseo-faq-icon {
    color: #3498db;
    margin-right: 12px;
    font-size: 20px;
}

/* Flecha animada personalizada */
.easyseo-faq-toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-right: 2px solid #3498db;
    border-bottom: 2px solid #3498db;
    transition: transform 0.3s ease;
    transform-origin: center;
    transform: translateY(-50%) rotate(45deg);
}

details[open] .easyseo-faq-toggle-icon {
    transform: translateY(-50%) rotate(-135deg);
}

.easyseo-faq-answer {
    padding: 0 10px 10px 42px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    animation: faqsFadeIn 0.4s ease-out;
}

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