.comments-section .btn {
    margin-top: 10px;
    padding: 9px;
    font-size: 15px;
}

.comments-section h2 {
    font-size: 22px;
}

.comments-section .without-authentication {
    margin-top: 10px;
    color: var(--text-color);
    margin-bottom: 10px;
    text-align: center;
}

.comments-section .without-authentication a {
    color: #ededed;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s ease;
}

.comments-section .without-authentication a:hover {
    text-decoration-color: #ededed;
}

.comment-form {
    margin-bottom: 1rem;
}

.comment-form textarea {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 7px;
    background: #202025;
    width: 100%;
    color: #bababa;
    min-height: 35px;
    max-height: 150px;
    margin-top: 10px;
}

.comment {
    background: var(--content-bg);;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 1rem;
    margin-bottom: 1rem;
}

.comment.reply {
    margin-left: 3rem;
    margin-top: 0.5rem;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seller-info {
    display: flex;
    gap: 0.5rem;
}

.comment-date {
    color: #586069;
    font-size: 12px;
}

.comment-actions button {
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.comment-actions button img {
    width: 16px;
    filter: brightness(0) saturate(100%) invert(12%) sepia(0%) saturate(7470%) hue-rotate(292deg) brightness(93%) contrast(78%);
}

.comment-body {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.deleted-text {
    color: #6a737d;
    font-style: italic;
}

.comment-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 14px;
}

.comment-reactions {
    display: flex;
    gap: 0.5rem;
}

.reaction-btn {
    font-size: 16px;
    display: flex;
    gap: 5px;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    color: #737276;
    line-height: normal;
    align-items: center;
    padding: 5px;
}

.reaction-btn:hover, .reaction-btn.active {
    color: var(--white);
}

.reaction-btn img {
    width: 19px;
    filter: none;
}

.reaction-btn.active img, .reaction-btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.reply-btn {
    background: none;
    border: none;
    color: #586069;
    cursor: pointer;
    font-size: 14px;
}

.reply-btn:hover {
    color: #fff;
}

.replies-count {
    color: #586069;
    font-size: 12px;
}

.reply-form-container {
    margin-top: 1rem;
    padding: 1rem;
}

.reply-textarea {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 7px;
    background: #202025;
    width: 100%;
    color: #bababa;
    min-height: 35px;
    max-height: 150px;
}

.reply-form-actions {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.no-comments {
    text-align: center;
    padding: 2rem;
    color: #586069;
}

#comments-loader {
    text-align: center;
    padding: 1rem;
    display: none;
}

#load-more-trigger {
    height: 1px;
    visibility: hidden;
}