#popup-discount-backdrop,
#popup-discount-modal {
    display: none;
}
#popup-discount-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}
#popup-discount-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    z-index: 9999;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}
#popup-discount-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.popup-btn {
    display: block;
    margin: 10px auto;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    text-align: center;
}
.popup-btn.primary {
    background-color: #d77d2a;
    color: white;
}
.popup-btn.secondary {
    border: 2px solid #d77d2a;
    color: #d77d2a;
    background: none;
}
