.reviews-wrap {
    max-width: 1430px;
    margin: 40px auto 0;
    padding: 0 24px 80px;
    font-family: 'Inter', Arial, sans-serif;
}
.breadcrumbs {
    margin-bottom: 22px;
    font-size: 15px;
    color: #bbb;
}
.breadcrumbs__item + .breadcrumbs__item::before {
    content: '→';
    margin: 0 6px;
    color: #df1e23;
}
.reviews-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
}

.review-form-glass {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    box-shadow: 0 4px 28px 0 rgba(34,34,34,0.10), 0 1.5px 5px rgba(223,30,35,0.09);
    padding: 32px 26px;
    margin-bottom: 44px;
    border: 1.5px solid #f5f5fa;
    max-width: 675px;
}
.review-form-glass h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #df1e23;
    letter-spacing: 0.02em;
}
.review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.review-form-row {
    display: flex;
    gap: 14px;
}
.review-form-row input, .review-form-row textarea {
    font-size: 1rem;
    border-radius: 10px;
    padding: 12px;
    background: #f9f9f9;
    border: 1.5px solid #eee;
    outline: none;
    flex: 1;
    transition: border 0.2s;
}
.review-form-row input:focus,
.review-form-row textarea:focus {
    border: 1.5px solid #df1e23;
    background: #fff;
}
.review-form-row textarea {
    resize: vertical;
    min-height: 80px;
}

@media (max-width: 503px) {
    .review-form-row {flex-direction: column}
}

.review-form-rating {
    align-items: center;
}
.rating {
    display: flex;
    gap: 7px;
    margin-top: 2px;
}
.star {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}
.star.hover, .star.selected, .star.active {
    color: #df1e23;
}
.review-form-checkbox {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 6px 0 8px 2px;
    gap: 10px;
}
.review-form-checkbox input[type="checkbox"] {
    accent-color: #df1e23;
    width: 18px;
    height: 18px;
}
.review-form-checkbox a {
    color: #111;
    text-decoration: underline;
    transition: color 0.2s;
}
.review-form-checkbox a:hover {
    color: #df1e23;
}
.review-btn {
    background: linear-gradient(95deg, #df1e23, #222 90%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 11px;
    padding: 15px 0;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.15s;
    box-shadow: 0 1.5px 8px 0 rgba(223,30,35,0.09);
}
.review-btn:hover {
    background: linear-gradient(95deg, #df1e23 40%, #5e2326 95%);
    box-shadow: 0 6px 22px 0 rgba(223,30,35,0.13);
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.review-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(34,34,34,0.11);
    padding: 26px 22px 18px 22px;
    display: flex;
    flex-direction: column;
    min-height: 210px;
    position: relative;
    border: 1.5px solid #f5f5fa;
    transition: box-shadow 0.18s;
}
.review-card:hover {
    box-shadow: 0 8px 34px rgba(223,30,35,0.13), 0 4px 20px rgba(34,34,34,0.09);
}
.review-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-author {
    font-size: 1.12rem;
    font-weight: 700;
    color: #111;
}

.review-rating {
    display: inline-flex;
    min-width: 120px;
    justify-content: flex-end;
}

.review-rating .star {
    font-size: 20px;
    text-align: center;
    display: inline-block;
    color: #bbb;
}
.review-rating .star.active {
    color: #df1e23;
}
.review-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    margin-top: 2px;
    word-break: break-word;
    white-space: pre-line;
}
.video-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f7e7ea;
    border: none;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 14px;
    color: #df1e23;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 6px;
    margin-top: 8px;
    transition: background 0.2s;
}
.video-button:hover {
    background: #fbdede;
}
.review-date {
    font-size: 13px;
    color: #aaa;
    margin-top: auto;
    display: block;
}

.reviews-empty {
    grid-column: 1/-1;
    color: #999;
    text-align: center;
    padding: 60px 0 30px 0;
    font-size: 18px;
}

.pagination-wrapper {
    margin: 44px 0 0 0;
    display: flex;
    justify-content: center;
}
.pagination {
    display: flex;
    gap: 8px;
    font-size: 17px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(34,34,34,0.06);
    padding: 10px 24px;
}

.pagination .active span,
.pagination .active a {
    background: #df1e23;
    color: #fff;
    border-radius: 7px;
    padding: 7px 15px;
    font-weight: 700;
}
.pagination a, .pagination span {
    color: #222;
    padding: 7px 13px;
    border-radius: 7px;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
}

.pagination__nav-item.--active,
.pagination__nav-item.--active:visited {
    background: #df1e23;
    color: #fff;
    border-radius: 7px;
    padding: 7px 15px;
    font-weight: 700;
    box-shadow: 0 2px 12px 0 rgba(34,34,34,0.10);
}

.video-modal-content {
    background: white;
    padding: 24px 18px;
    border-radius: 12px;
    max-width: 700px;
    width: 94vw;
    position: relative;
}
.video-modal video {
    width: 100%;
    max-height: 75vh;
    border-radius: 8px;
}
.video-modal-close {
    position: absolute;
    top: 10px; right: 17px;
    font-size: 28px;
    color: #df1e23;
    cursor: pointer;
    user-select: none;
}

.pagination__prev {
    background: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.21967 6.71967C-0.073223 7.01256 -0.073223 7.48744 0.21967 7.78033L6.21967 13.7803C6.51256 14.0732 6.98744 14.0732 7.28033 13.7803C7.57322 13.4874 7.57322 13.0126 7.28033 12.7197L1.81066 7.25L7.28033 1.78033C7.57322 1.48744 7.57322 1.01256 7.28033 0.71967C6.98744 0.426776 6.51256 0.426776 6.21967 0.71967L0.21967 6.71967Z" fill="%23192F24"/></svg>') center no-repeat;
}

.pagination__next {
    background: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.78033 6.71967C8.07322 7.01256 8.07322 7.48744 7.78033 7.78033L1.78033 13.7803C1.48744 14.0732 1.01256 14.0732 0.719669 13.7803C0.426776 13.4874 0.426776 13.0126 0.719669 12.7197L6.18934 7.25L0.71967 1.78033C0.426777 1.48744 0.426777 1.01256 0.71967 0.71967C1.01256 0.426776 1.48744 0.426776 1.78033 0.71967L7.78033 6.71967Z" fill="%23192F24"/></svg>') center no-repeat;
}

@media (max-width: 650px) {
    .review-form-glass, .review-card {
        padding: 13vw 5vw 7vw 5vw;
    }
    .reviews-header h1 {
        font-size: 1.18rem;
    }
}
@media (max-width: 450px) {
    .reviews-wrap {
        padding: 0 2vw 36vw 2vw;
    }
    .review-card {
        font-size: 15px;
    }
}
