/* ── Father's Day Popup ─────────────────────────────────────── */

#ssp-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

#ssp-popup-overlay.ssp-popup-active {
    display: flex;
}

#ssp-popup-inner {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: calc(100vh - 32px);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
    animation: ssp-popup-in 0.3s ease;
    box-sizing: border-box;
        width: 800px;
    max-width: fit-content;
}

@keyframes ssp-popup-in {
    from { opacity: 0; transform: scale(0.93); }
    to   { opacity: 1; transform: scale(1); }
}

#ssp-popup-inner a {
    display: block;
    line-height: 0;
    width: 100%;
}

#ssp-popup-inner img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 32px);
    object-fit: contain;
    display: block;
}

#ssp-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    padding: 0;
    transition: background 0.2s;
}

#ssp-popup-close:hover {
    background: rgba(0, 0, 0, 0.85);
}
