.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.review-modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.review-modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transform: translateY(30px);
    transition: .3s;
    max-height: 80vh;
    overflow-y: auto
}

.review-modal-overlay.active .review-modal-content {
    transform: translateY(0)
}

.review-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    background: 0 0;
    border: none;
    padding: 0;
    line-height: 1
}

.review-modal-close:hover {
    color: #000
}

.review-modal-header {
    margin-bottom: 15px
}

.review-modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333
}

.review-modal-header p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #999
}

.review-modal-stars {
    color: #fca311;
    margin-bottom: 20px;
    font-size: 14px
}

.review-modal-stars i {
    margin-right: 2px;
    color: var(--bs-warning)
}

.review-modal-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0
}