/* =========================================================
   Tahsilat sayfasi
   ========================================================= */

/* HERO */
.th-hero {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 28px;
    border-radius: 22px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #064E3B 0%, #065F46 50%, #0F766E 100%);
    color: #fff;
    box-shadow: 0 18px 50px -10px rgba(6,78,59,0.45);
    overflow: hidden;
}
.th-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(700px 240px at 0% 0%, rgba(16,185,129,0.45) 0%, transparent 60%),
        radial-gradient(600px 280px at 100% 100%, rgba(34,211,238,0.35) 0%, transparent 55%);
    pointer-events: none;
}
.th-hero-icon {
    position: relative;
    width: 60px; height: 60px;
    border-radius: 18px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #10B981, #22D3EE);
    color: #fff;
    box-shadow: 0 12px 30px rgba(16,185,129,0.45),
                inset 0 1px 0 rgba(255,255,255,0.25);
}
.th-hero-text { position: relative; }
.th-hero-text h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.7px;
    background: linear-gradient(135deg, #fff 30%, #A7F3D0 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.th-hero-text p { margin: 4px 0 0; font-size: 13.5px; color: rgba(220,252,231,0.78); font-weight: 500; }

.th-banner { margin-bottom: 18px; }

/* ROW: sol form, sag kart + taksit */
.th-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
    align-items: start;
    margin-top: 18px;
}
@media (max-width: 1100px) { .th-row { grid-template-columns: 1fr; } }
.th-col { display: flex; flex-direction: column; gap: 18px; min-width: 0; }

/* KART (BOLUM) — Genel kart yapisi */
.th-card {
    background: #fff;
    border: 1px solid var(--ja-border);
    border-radius: 16px;
    padding: 22px 26px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
    transition: box-shadow 0.2s, border-color 0.2s;
    margin-bottom: 18px;
}
.th-card:hover { box-shadow: 0 6px 18px rgba(15,23,42,0.06); border-color: rgba(16,185,129,0.18); }
.th-card-head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px; padding-bottom: 14px;
    border-bottom: 1px solid var(--ja-border);
}
.th-card-icon {
    width: 42px; height: 42px; border-radius: 13px;
    color: #fff;
    display: grid; place-items: center;
    flex: 0 0 42px;
    box-shadow: 0 8px 18px rgba(15,23,42,0.20),
                inset 0 1px 0 rgba(255,255,255,0.22);
}
.th-card-head h4 { margin: 0; font-size: 15.5px; font-weight: 800; color: var(--ja-ink); letter-spacing: -0.2px; }
.th-card-head p { margin: 2px 0 0; color: var(--ja-muted); font-size: 12px; }

/* CARI ARAMA (admin) */
.th-arama-wrap { position: relative; }
.th-arama { padding: 10px 14px; border-radius: 14px; border: 1px solid rgba(43,168,224,0.20); }
.th-arama input { font-size: 14px; }
.th-arama-sonuc {
    margin-top: 10px;
    display: flex; flex-direction: column; gap: 6px;
    max-height: 360px; overflow-y: auto;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ja-border);
    padding: 8px;
}
.th-arama-row {
    display: grid; grid-template-columns: 1fr auto; gap: 12px;
    align-items: center;
    appearance: none;
    width: 100%; text-align: left;
    background: #F8FAFC;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer; font-family: inherit;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.th-arama-row:hover { background: #E0F2FE; border-color: rgba(43,168,224,0.4); transform: translateX(2px); }
.th-arama-row-sol { min-width: 0; }
.th-arama-ad { font-size: 13.5px; font-weight: 700; color: var(--ja-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.th-arama-meta { font-size: 11.5px; color: var(--ja-muted); margin-top: 2px; display: flex; gap: 6px; align-items: center; }
.th-arama-kod {
    font-family: 'Plus Jakarta Sans', monospace;
    color: var(--ja-blue); font-weight: 800;
    background: rgba(43,168,224,0.10); padding: 1px 7px; border-radius: 6px; font-size: 10.5px;
}
.th-arama-sep { color: var(--ja-faint); opacity: 0.5; }
.th-arama-bakiye {
    font-size: 14px; font-weight: 800; font-variant-numeric: tabular-nums;
    color: var(--ja-faint);
}
.th-arama-bakiye.is-arti { color: #059669; }
.th-arama-bakiye.is-eksi { color: #DC2626; }
.th-arama-bakiye small { font-size: 11px; opacity: 0.7; margin-left: 2px; }
.th-arama-bos { padding: 16px; text-align: center; color: var(--ja-muted); font-size: 13px; }

/* SECILEN CARI */
.th-cari-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 14px; align-items: end;
}
@media (max-width: 720px) { .th-cari-grid { grid-template-columns: 1fr; } }
.th-readonly {
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
    color: var(--ja-ink-2);
    font-weight: 700;
    cursor: not-allowed;
}
.th-readonly.is-arti { color: #059669; }
.th-readonly.is-eksi { color: #DC2626; }
.th-cari-aksiyon { display: flex; align-items: center; gap: 8px; }
.th-bakiye-btn { white-space: nowrap; }
.th-cari-degistir {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(239,68,68,0.10);
    border: 1px solid rgba(239,68,68,0.25);
    color: #DC2626;
    cursor: pointer;
    display: grid; place-items: center;
    transition: background 0.15s;
}
.th-cari-degistir:hover { background: rgba(239,68,68,0.18); }

/* ============================================================
   KART BILGILERI — premium tasarim
   ============================================================ */
.th-kart-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #fff 0%, #FAFAFF 100%);
    border: 1px solid rgba(139,92,246,0.15);
}
.th-kart-card::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.th-kart-card .th-card-head { position: relative; }

.th-marka-badge {
    margin-left: auto;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: thMarkaIn 0.32s cubic-bezier(.34,1.56,.64,1);
}
.th-marka-visa     { background: linear-gradient(135deg, #1A1F71, #2D3DA3); }
.th-marka-mc       { background: linear-gradient(135deg, #EB001B, #F79E1B); }
.th-marka-amex     { background: linear-gradient(135deg, #2671B7, #1A4E80); }
.th-marka-troy     { background: linear-gradient(135deg, #E94E1B, #B33216); }
.th-marka-discover { background: linear-gradient(135deg, #FF6000, #E55400); }

@keyframes thMarkaIn {
    from { opacity: 0; transform: scale(0.7) rotate(-10deg); }
    to   { opacity: 1; transform: scale(1) rotate(0); }
}

/* FORM GRID */
.th-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    position: relative;
}
.th-col-2 { grid-column: 1 / -1; }
@media (max-width: 720px) { .th-form-grid { grid-template-columns: 1fr; } }

.th-field { display: flex; flex-direction: column; gap: 7px; }
.th-field-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 6px;
}
.th-field-hint {
    display: inline-grid; place-items: center;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #64748B;
    font-size: 10px;
    font-weight: 800;
    cursor: help;
    text-transform: none;
}

.th-field-wrap {
    position: relative;
    display: flex; align-items: center;
    background: #fff;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.th-field-wrap:hover { border-color: #CBD5E1; }
.th-field-wrap:focus-within {
    border-color: #8B5CF6;
    background: #fff;
    box-shadow:
        0 0 0 4px rgba(139,92,246,0.12),
        0 4px 14px rgba(139,92,246,0.10);
}
.th-field-icon {
    display: grid; place-items: center;
    width: 44px;
    flex-shrink: 0;
    color: #94A3B8;
    transition: color 0.2s;
}
.th-field-wrap:focus-within .th-field-icon { color: #8B5CF6; }

.th-input {
    flex: 1; min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    padding: 13px 14px 13px 0;
    font-family: inherit;
    font-size: 14px;
    color: #0F172A;
    font-weight: 600;
}
.th-input::placeholder { color: #94A3B8; font-weight: 500; letter-spacing: 0; }
.th-input-mono {
    font-family: 'Plus Jakarta Sans', 'SF Mono', 'Courier New', monospace;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 14.5px;
}
.th-input-upper { text-transform: uppercase; letter-spacing: 0.6px; }

.th-field-marka {
    margin-right: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
    color: #64748B;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    letter-spacing: 0.8px;
    font-style: italic;
}

/* TUTAR BLOK — biraz daha kabarik */
.th-tutar-blok {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    border: 1.5px solid #BBF7D0;
    position: relative;
    overflow: hidden;
}
.th-tutar-blok::before {
    content: "";
    position: absolute;
    bottom: -30px; right: -30px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
}
.th-tutar-label {
    font-size: 11.5px;
    font-weight: 800;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 6px;
    position: relative;
}
.th-tutar-wrap {
    display: flex; align-items: center; gap: 6px;
    position: relative;
}
.th-tutar-tl {
    font-size: 28px;
    font-weight: 800;
    color: #059669;
    line-height: 1;
}
.th-tutar-input {
    flex: 1; min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    padding: 4px 0;
    font-family: 'Plus Jakarta Sans', 'SF Mono', monospace;
    font-size: 32px;
    font-weight: 800;
    color: #064E3B;
    letter-spacing: -0.5px;
    font-variant-numeric: tabular-nums;
}
.th-tutar-input::placeholder { color: rgba(5,150,105,0.35); }

/* GUVENLIK NOTU */
.th-guvenlik {
    display: flex; align-items: center; gap: 8px;
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(99,102,241,0.05);
    border-left: 3px solid #6366F1;
    border-radius: 0 8px 8px 0;
    color: #4338CA;
    font-size: 11.5px;
    font-weight: 500;
}
.th-guvenlik svg { color: #6366F1; flex-shrink: 0; }


/* BANKA SECIM GRID */
.th-banka-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 720px) { .th-banka-grid { grid-template-columns: repeat(2, 1fr); } }

.th-banka-card {
    appearance: none;
    background: #fff;
    border: 1.5px solid var(--ja-border);
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    display: flex; flex-direction: column;
    gap: 10px;
    align-items: center;
    transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
    min-height: 110px;
    font-family: inherit;
}
.th-banka-card::before {
    content: "";
    position: absolute; left: 0; top: 0; right: 0; height: 3px;
    background: var(--banka-renk, #475569);
    opacity: 0;
    transition: opacity 0.18s;
}
.th-banka-card:hover {
    transform: translateY(-2px);
    border-color: var(--banka-renk, #475569);
    box-shadow: 0 10px 24px rgba(15,23,42,0.10);
}
.th-banka-card.is-secili {
    border-color: var(--banka-renk, #475569);
    box-shadow: 0 8px 22px color-mix(in oklab, var(--banka-renk, #475569) 22%, transparent);
}
.th-banka-card.is-secili::before { opacity: 1; }
.th-banka-taksit {
    font-size: 10.5px; font-weight: 800; letter-spacing: 0.6px;
    color: var(--ja-muted);
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--ja-bg);
    border: 1px solid var(--ja-border);
    text-transform: uppercase;
}
.th-banka-card.is-secili .th-banka-taksit {
    color: #fff;
    background: var(--banka-renk, #475569);
    border-color: transparent;
}
.th-banka-logo {
    flex: 1;
    display: grid; place-items: center;
    width: 100%;
    min-height: 50px;
}
.th-banka-logo img { max-width: 100%; max-height: 42px; object-fit: contain; }
.th-banka-isim { font-size: 13px; font-weight: 800; color: var(--ja-ink); text-align: center; }

/* ============================================================
   KART GORSEL — premium gercekci kredi karti (v2)
   ============================================================ */
.th-kart-gorsel {
    position: relative;
    padding: 22px 26px 20px;
    border-radius: 18px;
    color: #fff;
    aspect-ratio: 1.586 / 1;
    min-height: 230px;
    box-shadow:
        0 28px 60px -10px rgba(0,0,0,0.50),
        0 10px 22px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -2px 0 rgba(0,0,0,0.28),
        inset 1px 0 0 rgba(255,255,255,0.10),
        inset -1px 0 0 rgba(0,0,0,0.15);
    overflow: hidden;
    transition: background 0.5s ease, transform 0.4s cubic-bezier(.2,.8,.2,1);
    margin-bottom: 18px;
    display: flex; flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.th-kart-gorsel:hover {
    transform: translateY(-4px) rotateY(-3deg) rotateX(3deg) scale(1.01);
    box-shadow:
        0 36px 70px -10px rgba(0,0,0,0.55),
        0 14px 30px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.32),
        inset 0 -2px 0 rgba(0,0,0,0.32);
}

/* Cizgili holografik desen */
.th-kart-pattern {
    position: absolute; inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(-45deg,
            rgba(255,255,255,0.05) 0px,
            rgba(255,255,255,0.05) 1px,
            transparent 1px,
            transparent 18px),
        radial-gradient(ellipse 700px 250px at -20% -10%, rgba(255,255,255,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 600px 450px at 130% 110%, rgba(0,0,0,0.45) 0%, transparent 55%);
    opacity: 0.95;
}

/* Dunya / kure deseni (cizgisel) */
.th-kart-globe {
    position: absolute;
    right: -40px; top: 50%;
    transform: translateY(-50%);
    width: 260px; height: 260px;
    pointer-events: none;
    opacity: 0.10;
    background:
        radial-gradient(circle at 30% 35%, transparent 32%, rgba(255,255,255,0.65) 32.4%, transparent 33%),
        radial-gradient(circle at 30% 35%, transparent 46%, rgba(255,255,255,0.55) 46.4%, transparent 47%),
        radial-gradient(circle at 30% 35%, transparent 60%, rgba(255,255,255,0.45) 60.4%, transparent 61%),
        radial-gradient(circle at 30% 35%, transparent 75%, rgba(255,255,255,0.35) 75.4%, transparent 76%);
    border-radius: 50%;
}

/* Parlama animasyonu */
.th-kart-shine {
    position: absolute;
    top: -50%; left: -60%;
    width: 50%; height: 200%;
    background: linear-gradient(115deg,
        transparent 35%,
        rgba(255,255,255,0.25) 50%,
        transparent 65%);
    pointer-events: none;
    transform: rotate(20deg);
    animation: thShine 6s ease-in-out infinite;
}
@keyframes thShine {
    0%, 100% { left: -60%; }
    50%      { left: 160%; }
}

/* UST SATIR: banka + marka */
.th-kart-ust {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 18px;
    position: relative; z-index: 2;
    min-height: 28px;
}
.th-kart-banka {
    flex: 1;
    display: flex; align-items: center;
}
.th-kart-banka-logo {
    max-height: 22px;
    max-width: 95px;
    object-fit: contain;
    background: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.30),
                inset 0 1px 0 rgba(255,255,255,0.5);
}
.th-kart-banka-ad {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    text-transform: uppercase;
}
.th-kart-banka-bos { opacity: 0.55; letter-spacing: 0.6px; text-transform: none; font-style: italic; font-weight: 600; }

.th-kart-marka-wrap {
    display: flex; align-items: center;
    height: 32px;
    min-width: 60px;
    justify-content: flex-end;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
}
.th-kart-marka-svg {
    height: 30px;
    max-width: 90px;
    animation: thMarkaIn 0.35s cubic-bezier(.34,1.56,.64,1);
}
.th-marka-svg-visa { font-style: italic; }

/* ORTA: cip + nfc */
.th-kart-orta {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
    position: relative; z-index: 2;
}
.th-kart-cip-wrap {
    filter:
        drop-shadow(0 4px 8px rgba(0,0,0,0.35))
        drop-shadow(0 1px 0 rgba(255,255,255,0.2));
}
.th-kart-cip {
    transition: transform 0.3s;
}
.th-kart-gorsel:hover .th-kart-cip { transform: scale(1.05); }
.th-kart-nfc {
    opacity: 0.90;
    transform: rotate(90deg);
    margin-left: 4px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* KART NO */
.th-kart-no {
    display: flex; gap: 16px;
    margin-bottom: 22px;
    font-family: 'OCR A Std', 'Courier New', monospace;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2.5px;
    position: relative; z-index: 2;
    text-shadow:
        0 -1px 0 rgba(0,0,0,0.30),
        0 1px 0 rgba(255,255,255,0.25),
        0 2px 4px rgba(0,0,0,0.45);
    color: #fff;
}
.th-kart-no-grup {
    display: inline-block;
    min-width: 74px;
    text-align: left;
}

/* ALT SATIR */
.th-kart-alt {
    display: flex; justify-content: space-between; align-items: flex-end; gap: 16px;
    margin-top: auto;
    position: relative; z-index: 2;
}
.th-kart-label {
    font-size: 8px;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 800;
    margin-bottom: 3px;
}
.th-kart-isim {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    max-width: 220px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    text-shadow:
        0 -1px 0 rgba(0,0,0,0.25),
        0 1px 2px rgba(0,0,0,0.40);
}
.th-kart-alt-sag { text-align: right; }
.th-kart-skt {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Plus Jakarta Sans', monospace;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.th-kart-skt-yan {
    display: flex; flex-direction: column;
    gap: 0;
    line-height: 1;
}
.th-kart-skt-yan small {
    font-size: 6.5px;
    font-weight: 800;
    opacity: 0.65;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.th-kart-skt-ok {
    font-size: 8px;
    opacity: 0.75;
}
.th-kart-skt-deger {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-shadow:
        0 -1px 0 rgba(0,0,0,0.25),
        0 1px 2px rgba(0,0,0,0.40);
}

/* MC karti icin ozel iyilestirme */
.th-kart-gorsel.is-mc .th-kart-marka-wrap { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.50)); }


/* TAKSIT LISTE */
.th-bos {
    padding: 24px;
    text-align: center;
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
    border-radius: 12px;
    border: 1px dashed var(--ja-border);
}
.th-bos-text { color: var(--ja-muted); font-size: 13px; margin-bottom: 6px; }
.th-bos-tutar { font-size: 22px; font-weight: 800; color: var(--ja-ink); }

.th-taksit-liste {
    display: flex; flex-direction: column; gap: 6px;
    max-height: 320px; overflow-y: auto; padding: 2px;
}
.th-taksit-row {
    appearance: none;
    width: 100%; text-align: left;
    background: #F8FAFC;
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer; font-family: inherit;
    display: flex; justify-content: space-between; align-items: center;
    gap: 10px;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.th-taksit-row:hover { background: #E0F2FE; transform: translateX(2px); }
.th-taksit-row.is-secili {
    background: linear-gradient(135deg, rgba(16,185,129,0.10), rgba(34,211,238,0.08));
    border-color: #10B981;
    box-shadow: 0 4px 12px rgba(16,185,129,0.15);
}
.th-taksit-sayi { font-size: 13px; font-weight: 800; color: var(--ja-ink); }
.th-taksit-detay {
    display: flex; flex-direction: column; align-items: flex-end; gap: 1px;
    font-size: 11px; color: var(--ja-muted);
}
.th-taksit-toplam { font-size: 14px; font-weight: 800; color: var(--ja-ink); font-variant-numeric: tabular-nums; }
.th-taksit-row.is-secili .th-taksit-toplam { color: #059669; }

.th-aksiyonlar {
    display: flex; gap: 10px; justify-content: flex-end;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed var(--ja-border);
}

/* OZET — secili banka + tutar x taksit */
.th-ozet {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0F172A 100%);
    color: #fff;
    box-shadow: 0 8px 24px -6px rgba(15,23,42,0.40),
                inset 0 1px 0 rgba(255,255,255,0.10);
    display: flex; justify-content: space-between; align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.th-ozet::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(500px 200px at 0% 0%, rgba(16,185,129,0.18) 0%, transparent 60%),
        radial-gradient(400px 200px at 100% 100%, rgba(34,211,238,0.12) 0%, transparent 55%);
    pointer-events: none;
}

.th-ozet-banka {
    display: flex; align-items: center; gap: 12px;
    position: relative; z-index: 1;
}
.th-ozet-banka img {
    height: 28px;
    max-width: 100px;
    object-fit: contain;
    background: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25),
                inset 0 1px 0 rgba(255,255,255,0.5);
}
.th-ozet-banka-ad {
    display: flex; flex-direction: column;
    gap: 1px;
    line-height: 1.2;
}
.th-ozet-banka-ad small {
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(226,232,240,0.55);
    font-weight: 700;
}
.th-ozet-banka-ad b {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.2px;
}

.th-ozet-hesap {
    position: relative; z-index: 1;
}
.th-ozet-formul {
    display: inline-flex; align-items: baseline; gap: 6px;
    font-family: 'Plus Jakarta Sans', 'SF Mono', monospace;
    font-variant-numeric: tabular-nums;
    color: #fff;
}
.th-ozet-aylik {
    font-size: 14px;
    font-weight: 700;
    color: rgba(226,232,240,0.75);
}
.th-ozet-carpi {
    font-size: 14px;
    font-weight: 800;
    color: #4ADE80;
    margin: 0 2px;
}
.th-ozet-taksit {
    font-size: 18px;
    font-weight: 900;
    color: #4ADE80;
    background: rgba(74,222,128,0.10);
    padding: 1px 9px;
    border-radius: 8px;
    border: 1px solid rgba(74,222,128,0.30);
}
.th-ozet-esit {
    font-size: 14px;
    font-weight: 800;
    color: rgba(226,232,240,0.45);
    margin: 0 4px;
}
.th-ozet-tutar {
    font-size: 22px;
    font-weight: 800;
    color: #4ADE80;
    letter-spacing: -0.4px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.th-ozet-tl {
    font-size: 14px;
    font-weight: 700;
    color: rgba(74,222,128,0.85);
}
.th-ozet-etiket {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(226,232,240,0.70);
    margin-left: 6px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
}

@media (max-width: 720px) {
    .th-ozet { flex-direction: column; align-items: flex-start; }
    .th-ozet-tutar { font-size: 20px; }
}
