/* ========== YORUMLAR SAYFASI CSS ========== */

.yorumlar-page {
    padding: 40px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.yorumlar-page .container {
    max-width: 1200px;
}

/* Breadcrumb */
.yorumlar-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.yorumlar-breadcrumb a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

.yorumlar-breadcrumb a:hover {
    color: #333;
}

.yorumlar-breadcrumb span {
    color: #dee2e6;
}

/* Ürün Özeti */
.yorumlar-urun-ozet {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    display: flex;
    gap: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.urun-ozet-resim {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.urun-ozet-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.urun-ozet-bilgi {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.urun-ozet-baslik {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.urun-ozet-puan {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.urun-ozet-puan .yildizlar {
    display: flex;
    gap: 4px;
}

.urun-ozet-puan .yildizlar i {
    color: #ffc107;
    font-size: 16px;
}

.urun-ozet-puan .puan-sayi {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.urun-ozet-puan .yorum-sayi {
    color: #6c757d;
    font-size: 14px;
}

.urun-git-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    width: fit-content;
}

.urun-git-btn:hover {
    background: #000;
    color: white;
    transform: translateX(2px);
}

.urun-git-btn i {
    font-size: 14px;
}

/* Filtreler */
.yorumlar-filtre {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.yorumlar-filtre-left {
    flex: 1;
    min-width: 300px;
}

.yorumlar-filtre-right {
    display: flex;
    align-items: center;
}

.yorum-yaz-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.yorum-yaz-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
}

.yorum-yaz-btn i {
    font-size: 16px;
}

.yorumlar-baslik {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.yorumlar-baslik .yorum-count {
    color: #6c757d;
    font-weight: 400;
    font-size: 18px;
}

.filtre-grup {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filtre-btn {
    padding: 10px 20px;
    border: 1px solid #dee2e6;
    background: white;
    color: #6c757d;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filtre-btn:hover {
    border-color: #333;
    color: #333;
}

.filtre-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

/* Yorumlar Listesi */
.yorumlar-liste {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.yorum-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.2s;
}

.yorum-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.yorum-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.yorum-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.yorum-bilgi {
    flex: 1;
}

.yorum-isim {
    font-weight: 600;
    color: #333;
    font-size: 15px;
    margin-bottom: 4px;
}

.yorum-tarih {
    font-size: 13px;
    color: #6c757d;
}

.yorum-yildizlar {
    display: flex;
    gap: 4px;
}

.yorum-yildizlar i.bi-star-fill {
    color: #ffc107;
    font-size: 16px;
}

.yorum-yildizlar i.bi-star {
    color: #dee2e6;
    font-size: 16px;
}

.yorum-text {
    color: #495057;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Daha Fazla Yükle */
.daha-fazla-wrapper {
    text-align: center;
    margin-top: 32px;
}

.daha-fazla-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: white;
    color: #333;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.daha-fazla-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.daha-fazla-btn i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .yorumlar-page {
        padding: 20px 0 40px;
    }

    .yorumlar-urun-ozet {
        flex-direction: column;
        padding: 16px;
    }

    .urun-ozet-resim {
        flex: 0 0 100%;
        height: 200px;
    }

    .urun-ozet-baslik {
        font-size: 18px;
    }

    .yorumlar-filtre {
        padding: 16px;
        flex-direction: column;
    }

    .yorumlar-filtre-left {
        min-width: 100%;
    }

    .yorumlar-filtre-right {
        width: 100%;
        justify-content: center;
    }

    .yorum-yaz-btn {
        width: 100%;
        justify-content: center;
    }

    .yorumlar-baslik {
        font-size: 18px;
    }

    .filtre-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .yorum-card {
        padding: 16px;
    }

    .yorum-card-header {
        flex-wrap: wrap;
    }

    .yorum-yildizlar {
        width: 100%;
        order: 3;
        margin-top: 8px;
    }

    .yorumlar-filtre {
        flex-direction: column;
        gap: 16px;
    }

    .yorumlar-filtre-left {
        width: 100%;
    }

    .yorumlar-filtre-right {
        width: 100%;
    }

    .yorum-yaz-btn {
        width: 100%;
    }
}

/* ========== YORUM YAZ BUTONU ========== */
.yorumlar-filtre {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.yorumlar-filtre-left {
    flex: 1;
}

.yorumlar-filtre-right {
    flex: 0 0 auto;
}

.yorum-yaz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
}

.yorum-yaz-btn:hover {
    background: linear-gradient(135deg, #e082ea 0%, #e4465b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 87, 108, 0.4);
}

.yorum-yaz-btn i {
    font-size: 18px;
}

/* ========== YORUM MODAL STİLLERİ ========== */
.yorum-yildiz-SecICI {
    display: flex;
    gap: 8px;
    font-size: 28px;
}

.yildiz-secim {
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s;
}

.yildiz-secim:hover,
.yildiz-secim.hover {
    color: #ff9800;
    transform: scale(1.1);
}

.yildiz-secim.bi-star-fill {
    color: #ff9800;
}

/* ========== BAŞARI MESAJI ANIMASYONLARI ========== */
.yorum-basarili-content {
    display: none;
}

.yorum-basarili-content.active {
    display: block;
}

.yorum-form-content.hidden {
    display: none;
}

.yorum-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: yorumSuccessPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yorum-success-icon i {
    font-size: 40px;
    color: #fff;
}

.yorum-basarili-content h3 {
    color: #f5576c;
    margin-bottom: 10px;
    font-weight: 600;
}

.yorum-basarili-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.yorum-basarili-content .btn-success {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    padding: 10px 32px;
    font-weight: 600;
}

.yorum-basarili-content .btn-success:hover {
    background: linear-gradient(135deg, #e082ea 0%, #e4465b 100%);
}

@keyframes yorumSuccessPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
