/* Review Popup Modal */
.review-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.review-modal__content {
    background: var(--color-card-bg, #1a2a3a);
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: scale(0.8);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.review-modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.review-modal__close:hover {
    color: var(--color-primary, #ff6b00);
}

.review-modal__qr {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    background: white;
    padding: 10px;
    border-radius: 12px;
}

.review-modal__qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.review-modal h2 {
    color: #fff;
    margin-bottom: 10px;
}

.review-modal p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.review-modal .orange-text {
    color: var(--color-primary, #ff6b00);
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
