/* ===== КОММЕНТАРИИ ===== */
.detail-comments-section {
    border-top: 1px solid #e5e5e5;
    padding: 24px 0 40px;
}

.detail-comments-section h2 {
    font-size: 20px;
    margin: 0 0 20px 0;
}

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
}

.comment-form {
    margin-bottom: 32px;
}

.comment-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    font-family: inherit;
    font-size: 15px;
    resize: vertical;
}

.comment-form button {
    background: #40a7e3;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 12px;
}

.guest-message {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 32px;
}

.guest-message .login-link,
.guest-message .register-link {
    display: inline-block;
    background: #40a7e3;
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    margin: 0 5px;
}

.guest-message .register-link {
    background: #6c757d;
}

.comments-list {
    margin-top: 24px;
}

.comment {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    font-size: 15px;
}

.comment-author-name {
    font-weight: 600;
    font-size: 15px;
}

.comment-date {
    font-size: 12px;
    color: #999;
    margin-left: 8px;
}

.comment-text {
    margin: 8px 0 0 46px;
    font-size: 15px;
    line-height: 1.45;
    color: #333;
}

.empty-comments {
    text-align: center;
    color: #999;
    padding: 32px;
}