/* Yorum Sistemi Stilleri */

/* Yorumlar Bölümü */
.comments-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.comments-section h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
}

.comments-list {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.comment-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.comment-date {
    color: #666;
    font-size: 0.9rem;
}

.comment-rating {
    margin: 10px 0;
}

.comment-rating .star {
    font-size: 1.2rem;
    margin-right: 2px;
}

.comment-rating .star.filled {
    color: #ffc107;
}

.comment-content {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.no-comments {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px;
    background: white;
    border-radius: 15px;
    border: 2px dashed #ddd;
}

/* Yorum Formu Bölümü */
.comment-form-section {
    background: white;
    padding: 60px 0;
}

.comment-form-section h3 {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
}

.comment-form-section p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.comment-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Alert Mesajları */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .comments-section,
    .comment-form-section {
        padding: 40px 0;
    }
    
    .comments-section h3,
    .comment-form-section h3 {
        font-size: 2rem;
    }
    
    .comment-form {
        padding: 25px;
        margin: 0 15px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .comment-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .comment-form {
        padding: 20px;
        margin: 0 10px;
    }
    
    .comment-item {
        padding: 15px;
    }
}
