/* ============================================================
   POPUP PREMIUM CSS — CoreV2
   Tema: Karanlık Glassmorphism · Mor Işık Efektleri
   Font: Bricolage Grotesque (başlık) + Inter (gövde)
   ============================================================ */

/* ── Google Fonts ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600&display=swap');

/* ── Kök değişkenler ─────────────────────────────────────── */
:root {
    --cv-p:            var(--CoreV2-primary);
    --cv-p-rgb:        var(--CoreV2-primary-rgb);
    --cv-grad:         var(--CoreV2-primary-gradient);
    --cv-surface:      var(--CoreV2-card);
    --cv-dark:         var(--CoreV2-surface);
    --cv-border:       var(--CoreV2-border);
    --cv-text:         var(--CoreV2-text);
    --cv-text-soft:    var(--CoreV2-text-secondary);
    --cv-muted:        var(--CoreV2-text-muted);
    --cv-radius-xl:    24px;
    --cv-radius-lg:    14px;
    --cv-radius-md:    12px;
    --cv-radius-sm:    10px;
    --cv-font-head:    var(--font-family-base, 'Bricolage Grotesque'), sans-serif;
    --cv-font-body:    var(--font-family-base, 'Inter'), sans-serif;
    --cv-glow:         0 0 28px rgba(var(--CoreV2-primary-rgb), 0.50),
                       0 0 0 1px rgba(var(--CoreV2-primary-rgb), 0.30);
    --cv-glow-hover:   0 0 42px rgba(var(--CoreV2-primary-rgb), 0.70),
                       0 0 0 1px rgba(var(--CoreV2-primary-rgb), 0.45)
}

/* ─────────────────────────────────────────────────────────── */
/*  POPUP 1 — Kompakt Popup                                   */
/* ─────────────────────────────────────────────────────────── */

/* Backdrop */
#core-popupmp-backdrop {
    position: fixed;
    inset: 0;
    padding: 50px 16px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
    overflow-y: auto
}

[data-theme="dark"] #core-popupmp-backdrop {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6)
}

#core-popupmp-backdrop.core-popupmp-visible {
    opacity: 1;
    pointer-events: auto
}

/* Animasyonlar */
@keyframes core-popupmp-fadeInUp {
    from { opacity: 0; transform: translateY(28px) scale(0.97) }
    to   { opacity: 1; transform: translateY(0)    scale(1)    }
}

@keyframes core-popupmp-fadeOutScale {
    from { opacity: 1; transform: scale(1)    }
    to   { opacity: 0; transform: scale(0.96) }
}

@keyframes core-popupmp-tick {
    0%   { opacity: 0.3; transform: translateY(7px) }
    100% { opacity: 1;   transform: translateY(0)   }
}

@keyframes core-popupmp-glow-pulse {
    0%, 100% { opacity: 0.7 }
    50%       { opacity: 1   }
}

/* Ana kart */
.core-popupmp {
    position: relative;
    width: min(480px, calc(100vw - 32px));
    max-width: 480px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--cv-text);
    text-align: center;
    animation: core-popupmp-fadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    font-family: var(--cv-font-body);
    margin: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08),
               0 0 0 1px rgba(0, 0, 0, 0.04)
}

/* Üst ışıltı çizgi */
.core-popupmp::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(var(--CoreV2-primary-rgb), 0.50) 40%,
        rgba(var(--CoreV2-primary-rgb), 0.70) 60%,
        transparent 100%
    );
    z-index: 10;
    pointer-events: none
}

/* İç parlaklık halkası */
.core-popupmp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(
        ellipse 80% 40% at 50% 0%,
        rgba(var(--CoreV2-primary-rgb), 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0
}

[data-theme="dark"] .core-popupmp::before {
    background: radial-gradient(
        ellipse 80% 40% at 50% 0%,
        rgba(var(--CoreV2-primary-rgb), 0.12) 0%,
        transparent 70%
    )
}

[data-theme="dark"] .core-popupmp::after {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(var(--CoreV2-primary-rgb), 0.70) 40%,
        rgba(var(--CoreV2-primary-rgb), 0.90) 60%,
        transparent 100%
    )
}

.core-popupmp.closing {
    animation: core-popupmp-fadeOutScale 0.36s ease-out forwards
}

.core-popupmp.hidden-by-user { display: none }
.core-popupmp:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06) }

/* İçerik sarmalayıcı */
.core-popupmp__content {
    padding: 28px 26px 24px;
    position: relative;
    z-index: 2
}

/* Üst satır: başlık + kapat */
.core-popupmp__header {
    position: relative;
    margin-bottom: 18px;
    padding-right: 40px
}

/* Rozet */
.core-popupmp__badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 13px;
    border-radius: 30px;
    background: rgba(var(--cv-p-rgb), 0.12);
    border: 1px solid rgba(var(--cv-p-rgb), 0.28);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--cv-p);
    letter-spacing: 0.04em
}

.core-popupmp__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cv-p);
    box-shadow: 0 0 7px rgba(var(--CoreV2-primary-rgb), 0.9);
    animation: core-popupmp-glow-pulse 2s ease-in-out infinite
}

/* Kapatma butonu */
.core-popupmp__close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 80%;
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.15);
    background: rgba(var(--CoreV2-primary-rgb), 0.04);
    font-size: 18px;
    line-height: 1;
    color: var(--CoreV2-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 12
}

.core-popupmp__close-btn svg {
    width: 15px;
    height: 15px;
    stroke-width: 3
}

.core-popupmp__close-btn:hover {
    background: rgba(var(--CoreV2-primary-rgb), 0.15);
    color: var(--CoreV2-primary)
}

[data-theme="dark"] .core-popupmp__close-btn {
    border-color: rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    color: #6B6490
}

[data-theme="dark"] .core-popupmp__close-btn:hover {
    background: rgba(var(--CoreV2-primary-rgb), 0.15);
    color: var(--CoreV2-primary)
}

/* Başlık */
.core-popupmp__title {
    font-family: var(--cv-font-head);
    font-size: 26px;
    font-weight: 800;
    color: var(--CoreV2-text-primary);
    letter-spacing: -0.04em;
    line-height: 1.18;
    margin: 0 0 8px 0;
    text-align: left
}

.core-popupmp__title-accent {
    color: var(--CoreV2-primary)
}

[data-theme="dark"] .core-popupmp__title {
    color: #ffffff
}

[data-theme="dark"] .core-popupmp__title-accent {
    background: linear-gradient(135deg, var(--cv-p) 0%, rgba(var(--CoreV2-primary-rgb), 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.core-popupmp__description {
    font-size: 13.5px;
    color: var(--CoreV2-text-secondary);
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: left
}

/* ── Toggle ── */
.core-popupmp__toggle {
    position: relative;
    display: flex;
    background: rgba(var(--CoreV2-primary-rgb), 0.06);
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.18);
    border-radius: 14px;
    padding: 4px;
    margin-bottom: 18px
}

.core-popupmp__toggle-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--CoreV2-primary-gradient);
    border-radius: 11px;
    box-shadow: 0 0 18px rgba(var(--CoreV2-primary-rgb), 0.35);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1
}

.core-popupmp__toggle.yearly-active .core-popupmp__toggle-indicator {
    transform: translateX(100%)
}

.core-popupmp__toggle-btn {
    flex: 1;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.25s;
    color: var(--CoreV2-text-secondary);
    z-index: 2;
    border-radius: 11px;
    text-align: center
}

.core-popupmp__toggle-btn.active {
    color: #ffffff
}

/* Yıllık indirim rozeti (toggle içi) */
.core-popupmp__badge {
    background: rgba(var(--CoreV2-primary-rgb), 0.12);
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.22);
    color: var(--CoreV2-primary);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 7px;
    font-weight: 700;
    vertical-align: middle;
    letter-spacing: 0.03em;
    transition: background 0.25s, color 0.25s, border-color 0.25s
}

.core-popupmp__toggle-btn.active .core-popupmp__badge {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.30);
    color: #ffffff
}

/* ── Geri sayım ── */
.core-popupmp__countdown {
    margin-bottom: 18px;
    text-align: center
}

.core-popupmp__countdown-label {
    font-size: 11px;
    color: var(--CoreV2-primary);
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(var(--CoreV2-primary-rgb), 0.08);
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.15);
    border-radius: 20px;
    padding: 5px 14px;
    width: auto;
    margin-left: auto;
    margin-right: auto
}

.core-popupmp__countdown-label i {
    font-size: 13px;
    color: var(--CoreV2-primary)
}

.core-popupmp__countdown-label span {
    font-size: 10.5px;
    letter-spacing: 0.05em
}

.core-popupmp__countdown-blocks {
    display: flex;
    justify-content: center;
    gap: 10px
}

.core-popupmp__countdown-block {
    flex: 1;
    background: rgba(var(--CoreV2-primary-rgb), 0.04);
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.14);
    border-radius: 12px;
    padding: 11px 6px 9px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.core-popupmp__countdown-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 100% 50% at 50% 0%,
        rgba(var(--CoreV2-primary-rgb), 0.08) 0%,
        transparent 70%
    )
}

.core-popupmp__countdown-value {
    font-family: var(--cv-font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--CoreV2-primary);
    letter-spacing: -0.02em;
    display: block;
    position: relative
}

.core-popupmp__countdown-unit {
    font-size: 9px;
    color: var(--CoreV2-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-weight: 600;
    margin-top: 3px;
    display: block;
    position: relative
}

.core-popupmp__countdown-value.updated {
    animation: core-popupmp-tick 0.4s ease-out
}

/* Ayırıcı çizgi */
.core-popupmp__separator {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--CoreV2-primary-rgb), 0.15),
        transparent
    );
    margin: 18px 0
}

/* ── Özellikler ── */
.core-popupmp__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    text-align: left
}

.core-popupmp__feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(var(--CoreV2-primary-rgb), 0.03);
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.08);
    border-radius: 14px;
    padding: 14px;
    transition: border-color 0.2s, background 0.2s;
    cursor: default
}

.core-popupmp__feature-item:hover {
    border-color: rgba(var(--CoreV2-primary-rgb), 0.30);
    background: rgba(var(--CoreV2-primary-rgb), 0.05)
}

.core-popupmp__feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        rgba(var(--CoreV2-primary-rgb), 0.25) 0%,
        rgba(var(--CoreV2-primary-rgb), 0.10) 100%
    );
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.core-popupmp__feature-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--CoreV2-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.core-popupmp__feature-icon i {
    font-size: 18px;
    color: var(--CoreV2-primary);
    line-height: 1
}

.core-popupmp__feature-text { min-width: 0 }

.core-popupmp__feature-text strong {
    display: block;
    font-family: var(--cv-font-head);
    font-weight: 600;
    font-size: 12.5px;
    color: var(--CoreV2-text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.core-popupmp__feature-text span {
    font-size: 10.5px;
    color: var(--CoreV2-text-secondary);
    line-height: 1.35;
    display: block;
    margin-top: 2px
}


.core-popupmp__action-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center
}

/* Footer: toggle + fiyat/CTA yan yana */
.core-popupmp__footer {
    display: flex;
    flex-direction: column;
    gap: 0
}

.core-popupmp__foot-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.core-popupmp__price {
    text-align: left;
    line-height: 1
}

.core-popupmp__price-original {
    font-size: 12px;
    color: var(--CoreV2-text-secondary);
    text-decoration: line-through;
    display: block;
    margin-bottom: 3px
}

.core-popupmp__price-main {
    display: flex;
    align-items: baseline;
    gap: 5px
}

.core-popupmp__price-current {
    font-family: var(--cv-font-head);
    font-size: 32px;
    font-weight: 800;
    color: var(--CoreV2-primary);
    letter-spacing: -0.04em
}

.core-popupmp__price-period {
    font-size: 12px;
    color: var(--CoreV2-text-secondary)
}

/* Fiyat + CTA yan yana */
.core-popupmp__action-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

/* CTA butonu */
.core-popupmp__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: rgba(255,255,255,.18);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.38);
    padding: 15px 28px;
    border-radius: 50px;
    font-family: var(--cv-font-head);
    font-size: 15px;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform 0.2s;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    outline: 2px solid rgba(255,255,255,.2);
    outline-offset: 3px;
    box-shadow: none;
    justify-content: center;
    width: 100%;
}

.core-popupmp__cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.20) 0%, transparent 50%);
    pointer-events: none
}

.core-popupmp__cta:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,.28);
    border-color: rgba(255,255,255,.58);
    color: #fff;
    box-shadow: none;
}

/* CTA ikon */
.core-popupmp__cta-icon {
    font-size: 20px;
    transition: transform 0.22s
}
.core-popupmp__cta:hover .core-popupmp__cta-icon {
    transform: scale(1.1)
}

/* ── Kupon ── */
.core-popupmp__promo-bar {
    margin-top: 14px;
    margin-bottom: 18px;
    position: relative
}

.core-popupmp__coupon {
    background: linear-gradient(
        135deg,
        rgba(var(--CoreV2-primary-rgb), 0.08) 0%,
        rgba(var(--CoreV2-primary-rgb), 0.04) 100%
    );
    border: 1.5px dashed rgba(var(--CoreV2-primary-rgb), 0.32);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.2s
}

.core-popupmp__coupon:hover {
    border-color: rgba(var(--CoreV2-primary-rgb), 0.70);
    background: rgba(var(--CoreV2-primary-rgb), 0.12);
    box-shadow: 0 0 20px rgba(var(--CoreV2-primary-rgb), 0.12);
    transform: translateY(-1px)
}

/* Kupon sol grup */
.core-popupmp__coupon-left {
    display: flex;
    align-items: center;
    gap: 12px
}

/* Kupon kutusundaki <p> ve <strong> */
.core-popupmp__coupon p {
    margin: 0;
    font-size: 12px;
    color: var(--CoreV2-text-secondary);
    text-align: left;
    line-height: 1.4
}

.core-popupmp__coupon p strong {
    font-family: var(--cv-font-head);
    font-size: 15px;
    font-weight: 800;
    color: var(--CoreV2-primary);
    margin-left: 2px;
    letter-spacing: 0.10em;
    display: inline-block;
    margin-top: 1px
}

.core-popupmp__coupon-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        rgba(var(--CoreV2-primary-rgb), 0.20) 0%,
        rgba(var(--CoreV2-primary-rgb), 0.08) 100%
    );
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.core-popupmp__coupon-icon {
    width: 18px;
    height: 18px;
    stroke: var(--CoreV2-primary);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s
}

.core-popupmp__coupon:hover .core-popupmp__coupon-icon {
    opacity: 1
}

.core-popupmp__coupon-label {
    font-size: 11px;
    color: var(--CoreV2-text-secondary);
    display: block;
    margin-bottom: 2px
}

.core-popupmp__coupon-code-text {
    font-family: var(--cv-font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--CoreV2-primary);
    letter-spacing: 0.10em
}

/* Kopyala butonu */
.core-popupmp__copy-btn {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--CoreV2-text-secondary);
    background: rgba(var(--CoreV2-primary-rgb), 0.07);
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.15);
    padding: 5px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0
}

.core-popupmp__copy-btn:hover {
    background: rgba(var(--CoreV2-primary-rgb), 0.16);
    color: var(--CoreV2-primary);
    border-color: rgba(var(--CoreV2-primary-rgb), 0.35)
}

.core-popupmp__copy-feedback {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--CoreV2-primary);
    border: none;
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.28s ease;
    white-space: nowrap;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(var(--CoreV2-primary-rgb), 0.30)
}

.core-popupmp__copy-feedback.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px)
}

/* Hatırlat linki */
.core-popupmp__remind-link {
    display: block;
    text-align: center;
    margin-top: 14px;
    color: var(--CoreV2-text-secondary);
    text-decoration: none;
    font-size: 12.5px;
    cursor: pointer;
    transition: color 0.2s
}

.core-popupmp__remind-link:hover { color: var(--cv-p) }

/* Toast */
.core-popupmp__toast {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--CoreV2-primary);
    border: none;
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(var(--CoreV2-primary-rgb), 0.35)
}

.core-popupmp__toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -58%)
}

/* ─────────────────────────────────────────────────────────── */
/*  POPUP 2 — Geniş Banner                                    */
/* ─────────────────────────────────────────────────────────── */

:root {
    --core-popup2-primary:    var(--cv-p);
    --core-popup2-light-bg:   rgba(var(--cv-p-rgb), 0.08);
    --core-popup2-text:       #FFFFFF;
    --core-popup2-muted:      #6B6490;
    --core-popup2-font:       var(--cv-font-body)
}

@keyframes core-popup2-banner-fadeIn {
    from { opacity: 0; transform: translateY(28px) scale(0.97) }
    to   { opacity: 1; transform: translateY(0)    scale(1)    }
}

@keyframes core-popup2-banner-fadeOut {
    from { opacity: 1; transform: scale(1)    }
    to   { opacity: 0; transform: scale(0.97) }
}

@keyframes core-popup2-banner-tick {
    0%   { opacity: 0.3; transform: translateY(7px) }
    100% { opacity: 1;   transform: translateY(0)   }
}

/* Backdrop */
.core-popup2-banner__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5)
}

.core-popup2-banner__backdrop.visible {
    opacity: 1;
    pointer-events: auto
}

/* Banner kart */
.core-popup2-banner {
    position: relative;
    display: flex;
    width: min(940px, 100%);
    background: var(--cv-surface);
    border-radius: var(--cv-radius-xl);
    border: 1px solid var(--cv-border);
    overflow: hidden;
    font-family: var(--core-popup2-font);
    visibility: hidden;
    transform: translateY(28px);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: none
}

/* Üst ışık çizgisi */
.core-popup2-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent   0%,
        rgba(var(--CoreV2-primary-rgb), 0.70) 40%,
        rgba(var(--CoreV2-primary-rgb), 0.90) 60%,
        transparent 100%
    );
    z-index: 10;
    pointer-events: none
}

/* İç parlaklık */
.core-popup2-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 55% 50% at 70% 50%,
        rgba(var(--CoreV2-primary-rgb), 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0
}

.core-popup2-banner.visible {
    visibility: visible;
    animation: core-popup2-banner-fadeIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.core-popup2-banner:hover { box-shadow: none }

.core-popup2-banner.closing {
    animation: core-popup2-banner-fadeOut 0.36s ease-out forwards
}

.core-popup2-banner--hidden { display: none !important }

/* Stagger */
.core-popup2-banner.visible [data-animation-order] {
    opacity: 0;
    animation: core-popup2-banner-fadeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--order) * 90ms)
}

/* ── Sol içerik ── */
.core-popup2-banner__content {
    position: relative;
    flex: 1;
    padding: 44px 36px 44px 48px;
    text-align: left;
    z-index: 2
}

/* Rozet */
.core-popup2-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(var(--cv-p-rgb), 0.12);
    border: 1px solid rgba(var(--cv-p-rgb), 0.28);
    color: var(--cv-p);
    font-weight: 600;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.03em
}

.core-popup2-banner__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cv-p);
    box-shadow: 0 0 7px rgba(var(--CoreV2-primary-rgb), 0.9);
    animation: core-popupmp-glow-pulse 2s ease-in-out infinite
}

/* Başlık */
.core-popup2-banner__title {
    font-family: var(--cv-font-head);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--CoreV2-text);
    margin: 0 0 12px 0;
    line-height: 1.18;
    letter-spacing: -0.04em
}

[data-theme="dark"] .core-popup2-banner__title {
    background: linear-gradient(135deg, #ffffff 30%, var(--cv-p) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.core-popup2-banner__description {
    font-size: 15px;
    color: var(--cv-muted);
    margin: 0 0 26px 0;
    max-width: 400px;
    line-height: 1.65
}

/* Geri sayım */
.core-popup2-banner__countdown { margin-bottom: 28px }

.core-popup2-banner__countdown-blocks {
    display: flex;
    gap: 10px
}

.core-popup2-banner__countdown-block {
    background: var(--cv-dark);
    border: 1px solid rgba(var(--cv-p-rgb), 0.14);
    border-radius: var(--cv-radius-md);
    padding: 11px 12px 9px;
    min-width: 60px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.core-popup2-banner__countdown-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 100% 50% at 50% 0%,
        rgba(var(--CoreV2-primary-rgb), 0.08) 0%,
        transparent 70%
    )
}

.core-popup2-banner__countdown-value {
    font-family: var(--cv-font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--cv-p);
    letter-spacing: -0.02em;
    display: block;
    position: relative;
    margin-bottom: 4px
}

.core-popup2-banner__countdown-value.updated {
    animation: core-popup2-banner-tick 0.4s ease-out
}

.core-popup2-banner__countdown-unit {
    font-size: 9px;
    color: var(--cv-muted);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 600;
    position: relative
}

/* CTA */
.core-popup2-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: var(--cv-grad);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: var(--cv-radius-lg);
    font-family: var(--cv-font-head);
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
    transition: box-shadow 0.25s, transform 0.22s;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    box-shadow: var(--cv-glow)
}

.core-popup2-banner__cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%);
    pointer-events: none
}

.core-popup2-banner__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--cv-glow-hover)
}

/* Kupon */
.core-popup2-banner__coupon {
    margin-top: 22px;
    max-width: 300px;
    background: linear-gradient(
        135deg,
        rgba(var(--CoreV2-primary-rgb), 0.07) 0%,
        rgba(var(--CoreV2-primary-rgb), 0.04) 100%
    );
    border: 1.5px dashed rgba(var(--CoreV2-primary-rgb), 0.28);
    border-radius: var(--cv-radius-lg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s
}

.core-popup2-banner__coupon:hover {
    border-color: var(--cv-p);
    background: rgba(var(--cv-p-rgb), 0.10)
}

.core-popup2-banner__coupon-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(var(--CoreV2-primary-rgb), 0.12);
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.core-popup2-banner__coupon-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--cv-p);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.9
}

.core-popup2-banner__coupon p {
    margin: 0;
    color: var(--cv-muted);
    font-size: 13px
}

.core-popup2-banner__coupon p strong {
    font-family: var(--cv-font-head);
    color: var(--cv-p);
    font-size: 15px;
    font-weight: 800;
    margin-left: 8px;
    letter-spacing: 0.10em
}

.core-popup2-banner__copy-label {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: var(--cv-muted);
    background: rgba(var(--CoreV2-primary-rgb), 0.08);
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.18);
    padding: 4px 10px;
    border-radius: 7px;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s
}

.core-popup2-banner__coupon:hover .core-popup2-banner__copy-label {
    background: rgba(var(--CoreV2-primary-rgb), 0.18);
    color: var(--cv-p)
}

.core-popup2-banner__copy-feedback {
    position: absolute;
    bottom: 80px;
    left: 48px;
    background: #1a1930;
    border: 1px solid rgba(var(--cv-p-rgb), 0.25);
    color: var(--cv-p);
    padding: 7px 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.28s ease;
    white-space: nowrap;
    z-index: 30
}

.core-popup2-banner__copy-feedback.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-8px)
}

/* ── Sağ görsel panel ── */
.core-popup2-banner__image-wrapper {
    flex-basis: 36%;
    position: relative;
    overflow: hidden;
    clip-path: path('M 55 0 H 520 V 520 H 55 C 16 455 0 355 0 260 C 0 165 16 55 55 0 Z');
    min-height: 300px
}

/* Arka plan gradient */
.core-popup2-banner__background-blobs {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1A1535 0%, #2D235A 50%, #1A1240 100%);
    z-index: 0
}

/* Grid doku */
.core-popup2-banner__image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 118, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 118, 255, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 1
}

.core-popup2-banner__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1)
}

.core-popup2-banner__image-wrapper:hover img {
    transform: scale(1.04)
}

/* Kapatma butonu */
.core-popup2-banner__close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(var(--CoreV2-primary-rgb), 0.20);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 18px;
    color: var(--cv-muted);
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center
}

.core-popup2-banner__close-btn:hover {
    background: rgba(var(--CoreV2-primary-rgb), 0.16);
    color: var(--cv-p);
    transform: scale(1.06)
}

/* ─────────────────────────────────────────────────────────── */
/*  Dark mode overrides                                       */
/* ─────────────────────────────────────────────────────────── */

[data-theme="dark"] .core-popupmp {
    background: rgba(23, 22, 34, 0.96);
    border-color: rgba(var(--CoreV2-primary-rgb), 0.18);
    box-shadow: none;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px)
}

[data-theme="dark"] .core-popupmp:hover {
    box-shadow: none
}

[data-theme="dark"] .core-popupmp__feature-item {
    background: #0E0D14;
    border-color: rgba(255, 255, 255, 0.06)
}

[data-theme="dark"] .core-popupmp__feature-item:hover {
    border-color: rgba(var(--CoreV2-primary-rgb), 0.30);
    background: #13121C
}

[data-theme="dark"] .core-popupmp__feature-icon {
    background: linear-gradient(
        135deg,
        rgba(var(--CoreV2-primary-rgb), 0.25) 0%,
        rgba(var(--CoreV2-primary-rgb), 0.10) 100%
    );
    border-color: rgba(var(--CoreV2-primary-rgb), 0.18)
}

[data-theme="dark"] .core-popupmp__feature-icon svg {
    stroke: var(--CoreV2-primary)
}

[data-theme="dark"] .core-popupmp__feature-icon i {
    color: var(--CoreV2-primary)
}

[data-theme="dark"] .core-popupmp__feature-text strong {
    color: #D4CEFC
}

[data-theme="dark"] .core-popupmp__feature-text span {
    color: #3D3A58
}

[data-theme="dark"] .core-popupmp__countdown-block {
    background: #0E0D14;
    border-color: rgba(var(--CoreV2-primary-rgb), 0.14)
}

[data-theme="dark"] .core-popupmp__toggle {
    background: #0E0D14;
    border-color: rgba(var(--CoreV2-primary-rgb), 0.18)
}

[data-theme="dark"] .core-popupmp__toggle-btn:not(.active) {
    color: #5A5478
}

[data-theme="dark"] .core-popupmp__price-current {
    background: linear-gradient(135deg, #ffffff, var(--cv-p));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

[data-theme="dark"] .core-popupmp__price-original {
    color: #3D3A58
}

[data-theme="dark"] .core-popupmp__price-period {
    color: #5A5478
}

[data-theme="dark"] .core-popupmp__description {
    color: #6B6490
}

[data-theme="dark"] .core-popupmp__countdown-label {
    color: #5A5478
}

[data-theme="dark"] .core-popupmp__countdown-unit {
    color: #3D3A58
}

[data-theme="dark"] .core-popupmp__coupon {
    background: linear-gradient(135deg, rgba(var(--CoreV2-primary-rgb), 0.06), rgba(var(--CoreV2-primary-rgb), 0.04));
    border-color: rgba(var(--CoreV2-primary-rgb), 0.28)
}

[data-theme="dark"] .core-popupmp__coupon:hover {
    border-color: rgba(var(--CoreV2-primary-rgb), 0.60);
    background: rgba(var(--CoreV2-primary-rgb), 0.10)
}

[data-theme="dark"] .core-popupmp__coupon p {
    color: #5A5478
}

[data-theme="dark"] .core-popupmp__separator {
    background: linear-gradient(90deg, transparent, rgba(var(--CoreV2-primary-rgb), 0.15), transparent)
}

[data-theme="dark"] .core-popupmp__cta {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.3);
    box-shadow: none;
}

[data-theme="dark"] .core-popupmp__cta:hover {
    background: rgba(255,255,255,.25);
    border-color: rgba(255,255,255,.5);
    box-shadow: none;
}

[data-theme="dark"] .core-popup2-banner {
    background: rgba(20, 18, 32, 0.95);
    border-color: rgba(var(--CoreV2-primary-rgb), 0.20)
}

[data-theme="dark"] .core-popup2-banner__countdown-block {
    background: rgba(14, 13, 20, 0.8)
}

/* ─────────────────────────────────────────────────────────── */
/*  Mobil — Kompakt Popup                                     */
/* ─────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
    #core-popupmp-backdrop {
        align-items: flex-start;
        padding: 36px 12px
    }

    .core-popupmp {
        border-radius: 20px;
        width: calc(100vw - 24px)
    }

    .core-popupmp__content { padding: 22px 18px 20px }

    .core-popupmp__title { font-size: 21px }
    .core-popupmp__description { font-size: 12.5px }

    .core-popupmp__countdown-block { padding: 9px 5px 7px }
    .core-popupmp__countdown-value { font-size: 20px }

    .core-popupmp__features {
        grid-template-columns: 1fr 1fr;
        gap: 7px
    }

    .core-popupmp__feature-item { padding: 10px }

    .core-popupmp__feature-icon {
        width: 30px;
        height: 30px;
        min-width: 30px
    }

    .core-popupmp__feature-icon svg { width: 14px; height: 14px }
    .core-popupmp__feature-text strong { font-size: 11px }
    .core-popupmp__feature-text span   { font-size: 9.5px }

    .core-popupmp__foot-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px
    }
    .core-popupmp__foot-row .core-popupmp__price { text-align: left }
    .core-popupmp__cta { padding: 13px 18px; font-size: 13.5px; justify-content: center }
    .core-popupmp__price-current { font-size: 26px }
}

@media (max-width: 480px) {
    .core-popupmp__description { display: none }
    .core-popupmp__content { padding: 18px 14px 16px }
    .core-popupmp__title { font-size: 19px }
}

/* ─────────────────────────────────────────────────────────── */
/*  Mobil — Geniş Banner                                      */
/* ─────────────────────────────────────────────────────────── */

@media (max-width: 760px) {
    .core-popup2-banner { flex-direction: column }

    .core-popup2-banner__image-wrapper {
        flex-basis: auto;
        height: 180px;
        clip-path: none;
        order: -1;
        min-height: unset;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .core-popup2-banner__content {
        padding: 26px 22px 30px
    }

    .core-popup2-banner__title { font-size: 24px }
    .core-popup2-banner__description { font-size: 14px; margin-bottom: 20px }

    .core-popup2-banner__cta {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 15px
    }

    .core-popup2-banner__coupon { max-width: 100% }
    .core-popup2-banner__copy-feedback { left: 22px }
}

@media (max-width: 480px) {
    .core-popup2-banner__backdrop { padding: 12px }
    .core-popup2-banner { border-radius: 18px }
    .core-popup2-banner__content { padding: 20px 16px 24px }
    .core-popup2-banner__title { font-size: 21px }
    .core-popup2-banner__description { font-size: 13px }
    .core-popup2-banner__countdown-block { min-width: 50px; padding: 8px 6px }
    .core-popup2-banner__countdown-value { font-size: 19px }
}