/* SONIC STOREFRONT — FAQ Page Styles */

.faq-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(var(--accent-rgb), 0.03) 0%, transparent 100%);
}

.faq-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.faq-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.faq-category {
    margin-top: 60px;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    transition: var(--transition);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.faq-item.active .faq-question h4 {
    color: var(--accent);
}

.faq-item.active .faq-icon {
    background: var(--accent);
    color: var(--btn-primary-text);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255,255,255,0.01);
}

.faq-answer-content {
    padding: 0 30px 30px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

@media (max-width: 600px) {
    .faq-hero h1 { font-size: 2.2rem; }
    .faq-question { padding: 20px; }
    .faq-answer-content { padding: 0 20px 20px; }
}
