/* Global site popup fallback (Kaffen ve popup desteklemeyen temalar) */
.site-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-popup-overlay:has(.site-popup-main.open),
.site-popup-overlay:has([data-site-popup-main].open) {
    opacity: 1;
    visibility: visible;
}

.site-popup-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 24px;
}

.site-popup-main,
.site-popup-overlay [data-site-popup-main] {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(-12px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-popup-main.open,
.site-popup-overlay [data-site-popup-main].open {
    transform: translateY(0);
    opacity: 1;
}

.site-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.site-popup-title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
}

.site-popup-body {
    color: #4b5563;
    line-height: 1.6;
}

.site-popup-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 18px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}
