/* Kiymik Home — Kampanya hatırlatma popup'ı (lüks koyu tema) */
.kh-promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 8, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}
.kh-promo-overlay.kh-promo-show {
    opacity: 1;
    visibility: visible;
}
.kh-promo-modal {
    width: 600px;
    max-width: 100%;
    height: 400px;
    max-height: 100%;
    background: linear-gradient(180deg, #1f1b16, #2b241c);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: auto;
    text-align: center;
    padding: 34px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(.92);
    transition: transform .25s ease;
}
.kh-promo-overlay.kh-promo-show .kh-promo-modal {
    transform: scale(1);
}
.kh-promo-modal::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(216, 189, 143, 0.35);
    border-radius: 8px;
    pointer-events: none;
}
.kh-promo-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .2s;
}
.kh-promo-close:hover {
    background: rgba(0, 0, 0, 0.35);
}
.kh-promo-crown {
    font-size: 22px;
    margin-bottom: 6px;
    color: #d9bd8f;
}
.kh-promo-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d9bd8f;
    margin-bottom: 10px;
}
.kh-promo-title {
    font-size: 28px;
    margin: 0 0 8px;
    font-weight: 300;
    letter-spacing: .5px;
}
.kh-promo-title strong {
    font-weight: 800;
    color: #d9bd8f;
}
.kh-promo-desc {
    font-size: 12.5px;
    color: #cfc6b5;
    max-width: 420px;
    margin: 0 auto 18px;
    line-height: 1.6;
}
.kh-promo-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.kh-promo-timer .kh-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(216, 189, 143, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 56px;
}
.kh-promo-timer .kh-num {
    font-size: 18px;
    font-weight: 700;
    color: #d9bd8f;
}
.kh-promo-timer .kh-lbl {
    font-size: 9px;
    color: #a99;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.kh-promo-cta {
    background: linear-gradient(90deg, #8a6d3f, #b8935a);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.kh-promo-fine {
    font-size: 10px;
    color: #8a8378;
    margin-top: 12px;
}

/* Mobil uyum — Google'ın "intrusive interstitial" kuralına takılmamak için
   tam ekran modal yerine, ekranın makul bir kısmını kaplayan, kolayca
   kapatılabilen alt köşe kartı kullanılır. */
@media (max-width: 640px) {
    .kh-promo-overlay {
        align-items: flex-end;
        background: rgba(15, 12, 8, 0.25);
        padding: 0;
    }
    .kh-promo-modal {
        width: 100%;
        height: auto;
        max-height: 62vh;
        min-height: 0;
        padding: 22px 20px 20px;
        border-radius: 18px 18px 0 0;
        transform: translateY(16px);
    }
    .kh-promo-overlay.kh-promo-show .kh-promo-modal {
        transform: translateY(0);
    }
    .kh-promo-crown {
        display: none;
    }
    .kh-promo-title {
        font-size: 19px;
    }
    .kh-promo-desc {
        font-size: 11.5px;
        margin-bottom: 14px;
    }
    .kh-promo-timer {
        margin-bottom: 14px;
    }
    .kh-promo-timer .kh-box {
        min-width: 46px;
        padding: 6px 8px;
    }
    .kh-promo-cta {
        width: 100%;
        padding: 13px 20px;
    }
    .kh-promo-fine {
        margin-top: 10px;
    }
}

body.kh-promo-lock {
    overflow: hidden;
}
