/* Overlay */
#weorex-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    z-index: 9998;
}

/* Popup box */
#weorex-popup {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    animation: fadeIn 0.5s ease;
}

.weorex-popup-content {
    background: #fff;
    color: #333;
    text-align: center;
    border-radius: 16px;
    padding: 30px 25px;
    max-width: 400px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.weorex-popup-content h2 {
    margin-bottom: 10px;
    color: #004aad;
}

.weorex-popup-content p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.weorex-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.weorex-btn {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.weorex-btn.domestic { background: #0073e6; }
.weorex-btn.international { background: #2ecc71; }

.weorex-btn:hover {
    opacity: 0.9;
}

#weorex-close-btn {
    background: #ccc;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

#weorex-close-btn:hover {
    background: #aaa;
}

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

/* Responsive */
@media (max-width: 480px) {
    .weorex-popup-content {
        width: 90%;
        padding: 20px;
    }
}
