/* QR Popup */
.qr-popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 300px;
    border: 2px solid white; /* Initial border */
    animation: glitter 1.5s infinite alternate; /* Apply the glitter effect */
}

/* Glitter Effect Animation */
@keyframes glitter {
    0% {
        box-shadow: 0px 0px 5px white;
        border-color: rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0px 0px 10px white, 0px 0px 20px rgba(255, 255, 255, 0.6);
        border-color: rgba(255, 255, 255, 1);
    }
    100% {
        box-shadow: 0px 0px 15px white, 0px 0px 30px rgba(255, 255, 255, 0.8);
        border-color: rgba(255, 255, 255, 0.9);
    }
}

/* QR Code Image */
.qr-popup img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

/* Close Button */
.qr-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* QR Button */
.qr-btn {
    background-color: #ff6600;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Payment Button in Popup */
#contactPopup .pay-now-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: black; /* Black Text */
    background: yellow; /* Yellow Background */
    border: 2px solid white; /* White Outline */
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
#contactPopup .pay-now-btn:hover {
    background: black;
    color: white;
}