#welcome-offer-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 300px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 24px 20px 20px;
    z-index: 99999;
    font-family: inherit;
    display: none;
}

#welcome-offer-popup.popup-visible {
    display: block;
    animation: slideInPopup 0.4s ease;
}

@keyframes slideInPopup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#welcome-offer-popup .popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0;
}

#welcome-offer-popup .popup-close:hover {
    color: #333;
}

#welcome-offer-popup .popup-tag {
    display: inline-block;
    background: #f0faf4;
    color: #002f65;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

#welcome-offer-popup .popup-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.2;
}

#welcome-offer-popup .popup-heading span {
    color: #002f65;
}

#welcome-offer-popup .popup-text {
    font-size: 13px;
    color: #666;
    margin: 0 0 18px;
    line-height: 1.5;
}

#welcome-offer-popup .popup-btn {
    display: block;
    width: 100%;
    background: #002f65;
    color: #ffffff !important;
    text-align: center;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease;
    box-sizing: border-box;
}

#welcome-offer-popup .popup-btn:hover {
    background: #235f3f;
}

#welcome-offer-popup .popup-footer {
    text-align: center;
    font-size: 11px;
    color: #aaa;
    margin-top: 10px;
}

/* Responsive */
@media ( max-width: 480px ) {
    #welcome-offer-popup {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 12px 12px 0 0;
    }
}
