
.rz-final-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.rz-final-box {
    background:white;
    width:330px;
    padding:28px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    animation: fadeIn .3s ease-out;
}

@keyframes fadeIn {
    from {opacity:0; transform:scale(.7);}
    to {opacity:1; transform:scale(1);}
}

.rz-icon {
    font-size:50px;
    margin-bottom:10px;
}

.rz-final-box button {
    margin-top:15px;
    padding:10px 25px;
    background:#E91E63;
    border:none;
    color:white;
    border-radius:8px;
    cursor:pointer;
}
