.comments-section {
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.comments-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.comments-title i {
    font-size: 28px;
    color: #007bff;
}

.comments-title h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

/* Форма комментария */
.comment-form {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.comment-form-avatar {
    flex-shrink: 0;
}

.comment-form-avatar i {
    font-size: 48px;
    color: #6c757d;
}

.comment-form-main {
    flex: 1;
}

.comment-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    resize: vertical;
    transition: all 0.3s;
    background: white;
}

.comment-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0,123,255,0.1);
}

.comment-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.comment-form-hint {
    font-size: 13px;
    color: #6c757d;
}

.comment-form-hint i {
    margin-right: 5px;
    font-size: 12px;
}

.comment-submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.comment-submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.comment-submit-btn i {
    font-size: 14px;
}

/* Список комментариев */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.comment-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.comment-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.comment-item.comment-reply {
    margin-left: 60px;
    background: #f8f9fa;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar i {
    font-size: 40px;
    color: #adb5bd;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 600;
    color: #212529;
    font-size: 16px;
}

.comment-date {
    font-size: 13px;
    color: #868e96;
}

.comment-text {
    color: #495057;
    line-height: 1.5;
    margin-bottom: 12px;
    font-size: 15px;
}

.comment-actions {
    display: flex;
    gap: 20px;
}

.comment-action {
    color: #868e96;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.comment-action:hover {
    color: #007bff;
}

.comment-action i {
    font-size: 14px;
}

/* Кнопка загрузки */
.comments-load-more {
    text-align: center;
    margin-top: 20px;
}

.load-more-btn {
    background: transparent;
    border: 2px solid #e9ecef;
    padding: 12px 32px;
    border-radius: 30px;
    color: #495057;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.load-more-btn:hover {
    border-color: #007bff;
    color: #007bff;
    background: #f8f9fa;
}

.load-more-btn i {
    font-size: 14px;
    transition: transform 0.3s;
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .comment-form {
        flex-direction: column;
    }
    
    .comment-item.comment-reply {
        margin-left: 20px;
    }
    
    .comment-form-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .comment-submit-btn {
        justify-content: center;
    }
    
    .comments-title h3 {
        font-size: 20px;
    }
}