/* Değerlendirmeler CSS */
.reviews-section {
    margin-top: 40px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.reviews-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #343a40;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-title i {
    color: #e83e8c;
    font-size: 1.6rem;
}

/* Değerlendirme Özeti */
.reviews-summary {
    margin-bottom: 40px;
}

.rating-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.average-rating {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid #e9ecef;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e83e8c;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.average-stars {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.average-stars i {
    font-size: 1.5rem;
    color: #ffc107;
}

.rating-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-count {
    font-weight: 600;
    color: #343a40;
    font-size: 1.1rem;
}

.verified-count {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Puanlama Dağılımı */
.rating-breakdown {
    padding: 20px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.star-label {
    min-width: 60px;
    color: #6c757d;
    font-weight: 500;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #e83e8c, #ffc107);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.rating-bar .count {
    min-width: 30px;
    text-align: right;
    color: #343a40;
    font-weight: 600;
}

/* Yorum Listesi */
.reviews-list {
    margin-top: 30px;
}

.review-item {
    padding: 25px;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: white;
}

.review-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.review-item.verified {
    border-left: 4px solid #28a745;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer-name {
    font-weight: 600;
    color: #343a40;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verified-badge {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge i {
    font-size: 0.8rem;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    font-size: 1rem;
    color: #ffc107;
}

.rating-value {
    font-weight: 600;
    color: #e83e8c;
    font-size: 1rem;
}

.review-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f8f9fa;
}

.review-content p {
    margin: 0;
    line-height: 1.6;
    color: #495057;
    font-size: 0.95rem;
}

/* Boş Değerlendirme */
.no-reviews {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-reviews i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-reviews h3 {
    margin-bottom: 10px;
    color: #495057;
}

.no-reviews p {
    margin: 0;
    opacity: 0.8;
}

/* Yıldız Stilleri */
.stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.stars i.far {
    color: #dee2e6;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .reviews-section {
        padding: 20px;
        margin-top: 20px;
    }
    
    .reviews-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .rating-overview {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .average-rating {
        padding: 20px;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .reviewer-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .reviews-title {
        font-size: 1.4rem;
    }
    
    .rating-bar {
        gap: 10px;
        font-size: 0.8rem;
    }
    
    .star-label {
        min-width: 50px;
    }
    
    .review-item {
        padding: 15px;
    }
} 