.review__reply {
    padding-inline-start: 5.5rem;
    border: none;
}

/* Добавляем отступ между отзывами */
.review:not(.review__reply) {
    margin-bottom: 2rem;
}

/* Последний отзыв не должен иметь нижний отступ */
.review:not(.review__reply):last-child {
    margin-bottom: 0;
}

/* Стили для кнопки Reply */
.review__actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--black-01);
}

.review__actions .rfBtn._link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0rem;
    background-color: var(--black-005);
    color: var(--black-06);
    transition: all 0.3s ease;
}

.review__actions .rfBtn._link:hover {
    background-color: var(--brand);
    color: var(--white);
}

.review__actions .icon {
    width: 1rem;
    height: 1rem;
}

/* Стили для заголовка формы ответа */
.comment-reply-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Стиль для кнопки отмены */
.comment-reply-title small {
    margin-left: auto;
}

.comment-reply-title small a {
    color: var(--black-06);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.comment-reply-title small a:hover {
    color: var(--brand);
} 