/* High-priority overlay */
.hm-popup-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2147483647 !important; /* Maximum possible Z-index */
    justify-content: center;
    align-items: center;
}

.hm-popup-container {
    position: relative;
    width: 90%;
    max-width: 420px;
    background: #fff;
    padding: 4px;
    border-radius: 12px;
}

.hm-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Close Button - Placed at the top-right corner */
.hm-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    background: #478ac9; /* Matches your site blue */
    color: #ffffff;
    border-radius: 50%;
    border: 3px solid #ffffff;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2147483648 !important;
}

/* Mobile Fixes */
@media (max-width: 480px) {
    .hm-popup-close { top: -10px; right: 0px; }
}