.review-list-wrapper {
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    color: #1a1a1a;
    background: #fff;
    position: relative;
}

.review-list-wrapper--loading {
    pointer-events: none;
}

.review-list-wrapper--loading .review-list__loader {
    opacity: 1;
    visibility: visible;
}

.review-list__loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.review-list__loader::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 3px solid #e5e5e5;
    border-top-color: #1a1a1a;
    border-radius: 50%;
    animation: review-list-spin 0.7s linear infinite;
}

@keyframes review-list-spin {
    to { transform: rotate(360deg); }
}

.review-list__filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.review-list__filter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-list__filter-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-list__filter label {
    font-size: 13px;
    color: #2d2d2d;
}

.review-list__select {
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    font-size: 13px;
    color: #1a1a1a;
    background: #fff;
}

.review-list__select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.review-list__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2d2d2d;
    cursor: pointer;
}

.review-list {
    list-style: none;
    margin: 0;
    padding: 0 1rem;
    border: 1px solid #e8e8e8;
}

.review-list.review-list--empty {
    padding: 0;
}

.review-item {
    padding: 18px 0;
    border-bottom: 1px solid #e8e8e8;
}

.review-item:last-child {
    border-bottom: none;
}

.review-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.review-item__meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.review-item__name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.review-item__date {
    font-size: 13px;
    font-weight: 400;
    color: #666;
}

.review-item__stars {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}

.review-item__star {
    width: 16px;
    height: 16px;
    background: #dddddd;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-item__star--filled {
    background: #e6c553;
}

.review-item__text {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.55;
    color: #2d2d2d;
}

.review-item__block {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.55;
    color: #2d2d2d;
}

.review-item__label {
    display: inline;
    font-weight: 600;
    color: #1a1a1a;
}

.review-item__block .review-item__label::after {
    content: ': ';
}

.review-item__photos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.review-item__photo {
    display: block;
    line-height: 0;
}

.review-item__photo img {
    max-width: 120px;
    max-height: 120px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
}

.review-store-reply {
    margin-top: 14px;
    padding: 14px;
    background: #f8f8f8;
    border-left: 3px solid black;
}

.review-store-reply strong {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: black;
}

.review-store-reply p {
    margin: 6px 0 0;
    color: #2d2d2d;
}

.review-item__footer {
    margin-top: 12px;
}

.review-item__reply {
    font-size: 13px;
    color: #2563eb;
    text-decoration: underline;
}

.review-item__reply:hover {
    color: #1d4ed8;
}

.review-list__empty {
    margin: 0;
    padding: 20px;
    color: #666;
    background: #fafafa;
    border: 1px solid #e8e8e8;
}

.review-list__load-more {
    margin-top: 20px;
    text-align: center;
}

.review-list__load-more-btn {
    padding: 12px 28px;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #e8e8e8;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.review-list__load-more-btn:hover {
    background: #f5f5f5;
    border-color: #1a1a1a;
}

.review-list__load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
