/* ==========================================
   PAZARIX FAQ PAGE - MINIMAL MODERN
   Sık Sorulan Sorular Sayfası
   ========================================== */

/* ═══════════════════════════════════════════════════════════════
   PAGE CONTAINER
   ═══════════════════════════════════════════════════════════════ */
.pzx-faq-page {
    min-height: 100vh;
    background: #f5f5f5 !important;
}

body.pzx-faq-page {
    background: #f5f5f5 !important;
}

/* ═══════════════════════════════════════════════════════════════
   HERO - MİNİMAL SİYAH HEADER
   ═══════════════════════════════════════════════════════════════ */
.pzx-faq-hero {
    background: #000;
    padding: 48px 0;
}

.pzx-faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
}

.pzx-faq-hero h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.pzx-faq-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.pzx-faq-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.pzx-faq-breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.pzx-faq-breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.pzx-faq-breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTAINER
   ═══════════════════════════════════════════════════════════════ */
.pzx-faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px;
}

/* With Sidebar Layout */
.pzx-faq-container.pzx-faq-with-sidebar {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
}

/* ═══════════════════════════════════════════════════════════════
   SIDEBAR - MİNİMAL (Hesabım sayfası ile aynı)
   ═══════════════════════════════════════════════════════════════ */
.pzx-faq-sidebar {
    position: sticky;
    top: 24px;
}

.pzx-faq-sidebar .subpage-nav-desktop {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.pzx-faq-sidebar .subpage_navigation {
    padding: 0 !important;
    background: transparent !important;
}

.pzx-faq-sidebar .subpage_navigation-box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 24px 0 !important;
    margin: 0 !important;
}

.pzx-faq-sidebar .subpage_navigation_header {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #888 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 0 0 12px 0 !important;
    margin: 0 0 8px 0 !important;
    border: none !important;
    border-bottom: 1px solid #e5e5e5 !important;
    background: transparent !important;
    display: block !important;
}

.pzx-faq-sidebar .subpage_navigation_header i {
    display: none !important;
}

.pzx-faq-sidebar .subpage_navigation_a {
    display: block !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
    font-weight: 450 !important;
    color: #444 !important;
    text-decoration: none !important;
    border: none !important;
    background: transparent !important;
    transition: color 0.15s ease !important;
}

.pzx-faq-sidebar .subpage_navigation_a:hover {
    color: #000 !important;
    background: transparent !important;
}

.pzx-faq-sidebar .subpage_navigation_a i {
    display: none !important;
}

/* Mobile Nav */
.pzx-faq-sidebar .subpage-nav-mobile-main {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION - MİNİMAL
   ═══════════════════════════════════════════════════════════════ */
.pzx-faq-list {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

/* Accordion Item */
.pzx-faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.pzx-faq-item:last-child {
    border-bottom: none;
}

/* Question Header */
.pzx-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.pzx-faq-question:hover {
    background: #fafafa;
}

/* Arrow Icon */
.pzx-faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: #999;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.pzx-faq-item.active .pzx-faq-question::after {
    content: '−';
    color: #000;
}

.pzx-faq-item.active .pzx-faq-question {
    background: #fafafa;
}

/* Answer Body */
.pzx-faq-answer {
    display: none;
    padding: 0 24px 24px;
    background: #fafafa;
}

.pzx-faq-item.active .pzx-faq-answer {
    display: block;
}

.pzx-faq-answer-content {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.pzx-faq-answer-content p {
    margin: 0 0 1em;
}

.pzx-faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* Answer Image */
.pzx-faq-answer-img {
    margin-bottom: 16px;
}

.pzx-faq-answer-img img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   BOŞ DURUM
   ═══════════════════════════════════════════════════════════════ */
.pzx-faq-empty {
    text-align: center;
    padding: 80px 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

.pzx-faq-empty-icon {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
}

.pzx-faq-empty-text {
    font-size: 15px;
    color: #888;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSİVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .pzx-faq-container.pzx-faq-with-sidebar {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .pzx-faq-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 24px;
        padding: 20px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 4px;
    }
    
    .pzx-faq-sidebar .subpage_navigation {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
    }
    
    .pzx-faq-sidebar .subpage_navigation-box {
        margin-bottom: 0;
        flex: 1;
        min-width: 180px;
    }
}

@media (max-width: 600px) {
    .pzx-faq-hero {
        padding: 32px 0;
    }
    
    .pzx-faq-hero h1 {
        font-size: 22px;
    }
    
    .pzx-faq-container {
        padding: 24px 16px;
    }
    
    .pzx-faq-question {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .pzx-faq-answer {
        padding: 0 20px 20px;
    }
    
    .pzx-faq-sidebar {
        padding: 16px;
    }
    
    .pzx-faq-sidebar .subpage_navigation {
        flex-direction: column;
        gap: 20px;
    }
}
