/* ==========================================
   PAZARIX COMMENTS PAGE - MINIMAL MODERN
   Müşteri Yorumları Sayfası
   ========================================== */

/* ═══════════════════════════════════════════════════════════════
   PAGE CONTAINER
   ═══════════════════════════════════════════════════════════════ */
.pzx-comments-page {
    min-height: 100vh;
    background: #f5f5f5 !important;
}

body.pzx-comments-page {
    background: #f5f5f5 !important;
}

/* ═══════════════════════════════════════════════════════════════
   HERO - MİNİMAL SİYAH HEADER
   ═══════════════════════════════════════════════════════════════ */
.pzx-comments-hero {
    background: #000;
    padding: 48px 0;
}

.pzx-comments-hero-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
}

.pzx-comments-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-comments-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.pzx-comments-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.pzx-comments-breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.pzx-comments-breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.pzx-comments-breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTAINER
   ═══════════════════════════════════════════════════════════════ */
.pzx-comments-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
}

/* Stats Header */
.pzx-comments-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.pzx-comments-count {
    font-size: 14px;
    color: #666;
}

.pzx-comments-count strong {
    color: #000;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   YORUM GRİD - MİNİMAL KARTLAR
   ═══════════════════════════════════════════════════════════════ */
.pzx-comments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Yorum Kartı */
.pzx-comment-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 28px;
    transition: border-color 0.15s ease;
}

.pzx-comment-card:hover {
    border-color: #ddd;
}

/* Kart Header - Avatar + İsim */
.pzx-comment-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.pzx-comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.pzx-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pzx-comment-meta {
    flex: 1;
    min-width: 0;
}

.pzx-comment-name {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 0 0 2px;
}

.pzx-comment-position {
    font-size: 12px;
    color: #888;
}

/* Yıldız Rating */
.pzx-comment-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.pzx-comment-stars .star {
    font-size: 14px;
    color: #e0e0e0;
}

.pzx-comment-stars .star.filled {
    color: #000;
}

/* Yorum İçeriği */
.pzx-comment-text {
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SAYFALAMA - MİNİMAL
   ═══════════════════════════════════════════════════════════════ */
.pzx-comments-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
}

.pzx-comments-pagination a,
.pzx-comments-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.15s ease;
}

.pzx-comments-pagination a:hover {
    color: #000;
}

.pzx-comments-pagination .active {
    background: #000;
    color: #fff;
}

.pzx-comments-pagination .disabled {
    color: #ccc;
    pointer-events: none;
}

/* Nav Buttons */
.pzx-comments-pagination .nav-btn {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════
   BOŞ DURUM
   ═══════════════════════════════════════════════════════════════ */
.pzx-comments-empty {
    text-align: center;
    padding: 80px 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

.pzx-comments-empty-icon {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
}

.pzx-comments-empty-text {
    font-size: 15px;
    color: #888;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSİVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .pzx-comments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .pzx-comments-hero {
        padding: 32px 0;
    }
    
    .pzx-comments-hero h1 {
        font-size: 22px;
    }
    
    .pzx-comments-container {
        padding: 32px 16px;
    }
    
    .pzx-comments-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pzx-comment-card {
        padding: 20px;
    }
    
    .pzx-comments-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
