/* ============================================================
   Ragnarok — tema stili (koyu + yeşil vurgu)
   ============================================================ */

:root {
    --bg:          #0d0d10;
    --bg-topbar:   #101014;
    --bg-header:   #131318;
    --bg-catbar:   #101014;
    --card:        #1b1b20;
    --card-2:      #202027;
    --input:       #26262d;
    --input-focus: #2c2c35;
    --border:      #2a2a32;
    --border-soft: #23232a;

    --text:        #f4f4f6;
    --muted:       #9a9aa6;
    --muted-2:     #6f6f7b;

    --primary:      #22c55e;
    --primary-600:  #1eae53;
    --primary-700:  #189247;
    --primary-glow: rgba(34, 197, 94, .35);

    --radius:    12px;
    --radius-sm: 9px;
    --radius-lg: 16px;

    --container: 1240px;
    --font: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.site-main { min-height: 60vh; }

/* ---------- ÜST BAR ---------- */
.topbar {
    background: var(--bg-topbar);
    border-bottom: 1px solid var(--border-soft);
    font-size: 13px;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
}
.topbar__socials { display: flex; gap: 18px; align-items: center; }
.topbar__socials a { color: var(--muted); display: inline-flex; transition: color .15s; }
.topbar__socials a:hover { color: var(--text); }
.topbar__links { display: flex; gap: 22px; }
.topbar__links a { color: var(--muted); font-weight: 500; transition: color .15s; }
.topbar__links a:hover { color: var(--text); }

/* ---------- ANA HEADER ---------- */
.header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-soft);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 11px;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-700) 100%);
    box-shadow: 0 6px 16px -6px var(--primary-glow);
}
.brand__name {
    font-size: 22px; font-weight: 700; letter-spacing: -.5px;
    color: var(--text);
}
.brand__logo {
    height: 40px; width: auto; max-width: 200px; display: block; object-fit: contain;
    /* Beyaz giydirme: logo hangi renkte yüklenirse yüklensin saf beyaza çevrilir */
    filter: brightness(0) invert(1);
}

.search {
    flex: 1;
    max-width: 520px;
    position: relative;
    display: flex;
    align-items: center;
}
.search__icon { position: absolute; left: 16px; color: var(--muted-2); }
.search input {
    width: 100%;
    height: 48px;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    padding: 0 16px 0 46px;
    font-size: 14px;
    outline: none;
    transition: border-color .15s, background .15s;
}
.search input::placeholder { color: var(--muted-2); }
.search input:focus { border-color: var(--primary); background: var(--input-focus); }

.header__auth { display: flex; gap: 10px; margin-left: auto; }

/* ---------- BUTONLAR ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform .12s, background .15s, border-color .15s, box-shadow .15s;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-600) 100%);
    color: #06210f;
    box-shadow: 0 8px 20px -10px var(--primary-glow);
}
.btn--primary:hover { box-shadow: 0 10px 26px -8px var(--primary-glow); }

.btn--dark {
    background: var(--card-2);
    color: var(--text);
    border-color: var(--border);
}
.btn--dark:hover { background: #2a2a33; }

.btn--ghost {
    background: transparent;
    color: var(--primary);
    border-color: rgba(34, 197, 94, .45);
}
.btn--ghost:hover { background: rgba(34, 197, 94, .08); }
.btn--add { height: 48px; }

.btn--block { width: 100%; height: 50px; font-size: 15px; }

/* ---------- KATEGORİ BARI ---------- */
.catbar {
    background: var(--bg-catbar);
    border-bottom: 1px solid var(--border-soft);
}
.catbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 56px;
    overflow-x: auto;
}
.catbar__left, .catbar__right { display: flex; align-items: center; gap: 6px; }

.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid transparent;
    background: transparent;
    transition: background .15s, color .15s;
}
.cat-chip:hover { background: var(--card); color: var(--text); }
.cat-chip svg { color: var(--muted-2); }
.cat-chip:hover svg { color: var(--text); }

.cat-chip--all { color: var(--text); font-weight: 600; }
.cat-chip--accent { color: var(--primary); }
.cat-chip--accent svg { color: var(--primary); }

.cat-chip__badge {
    width: 30px; height: 30px;
    border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.cat-chip__badge--img { overflow: hidden; padding: 3px; }
.cat-chip__badge--img img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Kategori sayfası (ön yüz) ---------- */
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); transition: color .15s; }
.crumbs a:hover { color: var(--primary); }
.crumbs__sep { color: var(--muted-2); }
.crumbs__cur { color: var(--text); font-weight: 600; }
.cat-card__ph {
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 1 / 1; border-radius: 12px;
    font-size: 34px; font-weight: 800; color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}
.cat-empty { text-align: center; padding: 50px 20px; color: var(--muted); }
.cat-empty p { margin: 0 0 16px; font-size: 15px; }

/* Kategori hero banner */
.cat-hero {
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    padding: 46px 24px 40px;
    margin-bottom: 28px;
    overflow: hidden;
}
.cat-hero__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cat-hero__title { margin: 0 0 12px; font-size: 30px; font-weight: 800; color: var(--text); letter-spacing: -.5px; }
.cat-hero__desc { margin: 0 auto 22px; max-width: 560px; font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.cat-hero__search {
    position: relative; display: flex; align-items: center;
    background: rgba(13, 13, 16, .55); border: 1px solid var(--border);
    border-radius: 12px; padding: 0 16px; height: 52px;
    backdrop-filter: blur(6px);
}
.cat-hero__search svg { color: var(--muted-2); flex-shrink: 0; }
.cat-hero__search input {
    flex: 1; min-width: 0; height: 100%; margin-left: 12px;
    background: none; border: none; outline: none;
    color: var(--text); font-family: inherit; font-size: 15px;
}
.cat-hero__search input::placeholder { color: var(--muted-2); }

/* Kategori ürün listesi (yatay satırlar) */
.plist { display: flex; flex-direction: column; gap: 12px; }
.prow {
    display: flex; align-items: center; gap: 16px;
    background: var(--card); border: 1px solid var(--border-soft);
    border-radius: 14px; padding: 12px 18px;
    transition: border-color .15s, background .15s;
}
.prow:hover { border-color: #5b7cfa; background: var(--card-2); }
.prow__link { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 0; color: inherit; }
.prow__thumb {
    width: 56px; height: 56px; flex-shrink: 0; border-radius: 10px;
    background-color: var(--card-2); background-size: cover; background-position: center; background-repeat: no-repeat;
    position: relative; overflow: hidden; border: 1px solid var(--border);
}
.prow__badge {
    position: absolute; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, .6); color: #fff; font-size: 9px; font-weight: 700;
    text-align: center; padding: 2px 0; letter-spacing: .3px;
}
.prow__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.prow__name { display: block; margin: 0 0 3px; font-size: 15px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .15s; }
.prow:hover .prow__name { color: #7d92f5; }
.prow__note { font-size: 13px; color: var(--muted); }
.prow__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.prow__prices { text-align: right; display: flex; flex-direction: column; line-height: 1.25; }
.prow__old { font-size: 12.5px; color: var(--muted-2); text-decoration: line-through; }
.prow__new { font-size: 16px; font-weight: 800; color: var(--primary); }
.prow__buy {
    display: inline-flex; align-items: center; justify-content: center;
    height: 44px; padding: 0 24px; border-radius: 10px;
    background: linear-gradient(180deg, #f6bf3e, #e8a41f); color: #3a2600;
    font-weight: 800; font-size: 13px; letter-spacing: .3px; white-space: nowrap;
    box-shadow: 0 6px 16px -8px rgba(232, 164, 31, .6); transition: filter .15s;
}
.prow__buy:hover { filter: brightness(1.06); }
@media (max-width: 680px) {
    .prow { flex-wrap: wrap; }
    .prow__actions { width: 100%; justify-content: space-between; }
}

/* ================= ÜRÜN DETAY SAYFASI ================= */
.pd { padding-top: 26px; padding-bottom: 50px; }
.pd-hero {
    display: grid; grid-template-columns: 360px 1fr; gap: 26px;
    background: var(--card); border: 1px solid var(--border-soft);
    border-radius: 18px; padding: 22px; margin-bottom: 22px;
}
.pd-hero__media {
    position: relative; aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    border: 1px solid var(--border);
}
.pd-hero__gameicon {
    position: absolute; top: 12px; right: 12px; width: 40px; height: 40px;
    border-radius: 10px; background: rgba(0, 0, 0, .45); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pd-hero__gameicon img { width: 28px; height: 28px; object-fit: contain; }
.pd-hero__badge {
    position: absolute; left: 16px; bottom: 14px;
    font-size: 26px; font-weight: 800; color: #fff; text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}
.pd-hero__body { min-width: 0; }
.pd-hero__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pd-cat { font-size: 13px; color: var(--muted); font-weight: 600; }
.pd-cat:hover { color: var(--primary); }
.pd-official { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--primary); }
.pd-title { margin: 12px 0 18px; font-size: 25px; font-weight: 800; letter-spacing: -.4px; }
.pd-chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 16px; }
.pd-chip {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--card-2); border: 1px solid var(--border-soft);
    border-radius: 11px; padding: 11px 14px; font-size: 13px; font-weight: 500; color: var(--muted);
}
.pd-chip svg { color: var(--primary); flex-shrink: 0; }
.pd-viewers { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.pd-viewers__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px var(--primary-glow); }
.pd-purchase { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pd-price { display: flex; align-items: center; gap: 12px; background: var(--card-2); border: 1px solid var(--border-soft); border-radius: 12px; padding: 10px 16px; }
.pd-price__bag { color: var(--primary); display: inline-flex; }
.pd-price__vals { display: flex; flex-direction: column; line-height: 1.2; }
.pd-price__old { font-size: 12.5px; color: var(--muted-2); text-decoration: line-through; }
.pd-price__new { font-size: 19px; font-weight: 800; color: var(--primary); }
.pd-qty { display: inline-flex; align-items: center; background: var(--card-2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; height: 50px; }
.pd-qty__btn { width: 44px; height: 100%; background: none; border: none; color: var(--muted); font-size: 20px; cursor: pointer; }
.pd-qty__btn:hover { color: var(--text); background: var(--input); }
.pd-qty__val { width: 46px; height: 100%; text-align: center; background: none; border: none; color: var(--text); font-weight: 700; font-size: 15px; }
.pd-buy {
    display: inline-flex; align-items: center; gap: 8px; flex: 1; min-width: 200px; justify-content: center;
    height: 50px; padding: 0 26px; border-radius: 12px;
    background: linear-gradient(180deg, var(--primary), var(--primary-700)); color: #06210f;
    font-weight: 800; font-size: 15px; box-shadow: 0 8px 20px -8px var(--primary-glow);
    transition: filter .15s;
}
.pd-buy:hover { filter: brightness(1.06); }

/* Sekmeler */
.pd-tabs { display: flex; gap: 8px; background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 8px; margin-bottom: 18px; }
.pd-tab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px; border-radius: 10px; background: none; border: none;
    color: var(--muted); font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: .15s;
}
.pd-tab svg { color: var(--muted-2); }
.pd-tab:hover { color: var(--text); }
.pd-tab.is-active { background: rgba(34, 197, 94, .12); color: var(--primary); }
.pd-tab.is-active svg { color: var(--primary); }

.pd-panel { margin-bottom: 22px; }
.pd-desc {
    background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px;
    padding: 26px 30px; color: var(--muted); font-size: 14.5px; line-height: 1.75;
}
.pd-desc h3 { color: var(--text); font-size: 17px; margin: 18px 0 8px; }
.pd-desc h3:first-child { margin-top: 0; }
.pd-desc p { margin: 0 0 14px; }
.pd-desc p:last-child { margin-bottom: 0; }
.pd-desc ul, .pd-desc ol { margin: 0 0 14px; padding-left: 22px; }
.pd-desc li { margin-bottom: 8px; }
.pd-desc li:last-child { margin-bottom: 0; }
.pd-desc strong, .pd-desc b { color: var(--text); font-weight: 700; }
.pd-desc a { color: var(--primary); text-decoration: underline; }
.pd-muted { color: var(--muted-2); }

/* Benzer ürünler */
.pd-similar__title { display: flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 700; margin: 0 0 14px; }
.pd-similar__title svg { color: var(--primary); }
.pd-similar__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.simcard {
    display: flex; align-items: center; gap: 12px;
    background: var(--card); border: 1px solid var(--border-soft); border-radius: 13px; padding: 12px;
    transition: border-color .15s, transform .15s;
}
.simcard:hover { border-color: var(--primary); transform: translateY(-2px); }
.simcard__thumb {
    width: 52px; height: 52px; flex-shrink: 0; border-radius: 10px; position: relative; overflow: hidden;
    background-color: var(--card-2); background-size: cover; background-position: center; border: 1px solid var(--border);
}
.simcard__badge { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, .6); color: #fff; font-size: 8px; font-weight: 700; text-align: center; padding: 1px 0; }
.simcard__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.simcard__name { font-size: 13.5px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.simcard__prices { display: flex; align-items: center; gap: 8px; }
.simcard__new { font-size: 14px; font-weight: 800; color: var(--primary); }
.simcard__old { font-size: 11.5px; color: var(--muted-2); text-decoration: line-through; }
.simcard__arrow { color: var(--muted-2); font-size: 20px; flex-shrink: 0; }

/* Mobilde benzer ürünler: yatay kaydırmalı şerit (kartlar yan yana, bir sonraki göz kırpar) */
@media (max-width: 640px) {
    .pd-similar__grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }
    .pd-similar__grid .simcard { flex: 0 0 80%; scroll-snap-align: start; }
}

@media (max-width: 820px) {
    .pd-hero { grid-template-columns: 1fr; }
    .pd-hero__media { max-width: 300px; }
    .pd-chips { grid-template-columns: 1fr; }
    .pd-buy { min-width: 0; width: 100%; }
}

/* Alt kategori renkli kartları (kategori rengine göre) */
.subcat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.subcat-card {
    position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 16px;
    aspect-ratio: 1 / 1.05;
    border-radius: 18px;
    padding: 20px 14px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 26px -14px rgba(0, 0, 0, .6);
    transition: transform .15s, box-shadow .15s;
}
.subcat-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(0, 0, 0, .18));
    pointer-events: none;
}
.subcat-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -16px rgba(0, 0, 0, .7); }
.subcat-card__icon {
    position: relative; z-index: 1;
    width: 68px; height: 68px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    backdrop-filter: blur(2px);
}
.subcat-card__icon img {
    width: 44px; height: 44px; object-fit: contain;
    /* İkonu beyaz göster (renginden bağımsız); şeffaf kısımlar korunur */
    filter: brightness(0) invert(1);
}
.subcat-card__name {
    position: relative; z-index: 1;
    font-weight: 700; font-size: 16px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}

/* ---------- AUTH ÜST BAR ---------- */
.auth-header {
    padding: 26px 0;
    display: flex;
    justify-content: center;
}
.brand--center { justify-content: center; }
body.is-auth { background: var(--bg); }

/* ---------- AUTH KART ---------- */
.auth-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 16px 80px;
}
.auth-card {
    width: 100%;
    max-width: 470px;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 40px 38px;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6);
}
.auth-card--wide { max-width: 620px; }

.auth-card__head { text-align: center; margin-bottom: 26px; }
.auth-card__head h1 { font-size: 24px; font-weight: 700; margin: 0 0 8px; }
.auth-card__head p { color: var(--muted); font-size: 14px; margin: 0; }
.auth-card__head { position: relative; padding-bottom: 22px; border-bottom: 1px solid var(--border-soft); }

.auth-form { margin-top: 26px; }

/* ---------- FORM ---------- */
.form-group { margin-bottom: 16px; }
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--muted-2);
    margin-bottom: 7px;
}

.input {
    width: 100%;
    height: 52px;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    padding: 0 16px;
    font-size: 14px;
    outline: none;
    transition: border-color .15s, background .15s;
}
.input::placeholder { color: var(--muted-2); }
.input:focus { border-color: var(--primary); background: var(--input-focus); }

/* Tarayıcı otomatik doldurma — koyu temayı koru (beyaz arka planı engelle) */
.input:-webkit-autofill,
.input:-webkit-autofill:hover,
.input:-webkit-autofill:focus,
.search input:-webkit-autofill {
    -webkit-text-fill-color: var(--text);
    -webkit-box-shadow: 0 0 0 1000px var(--input) inset;
    box-shadow: 0 0 0 1000px var(--input) inset;
    caret-color: var(--text);
    transition: background-color 9999s ease-in-out 0s;
}

.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap .input { padding-right: 48px; }
.input-eye {
    position: absolute; right: 6px;
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; border: none;
    color: var(--muted-2);
    border-radius: 8px;
    transition: color .15s;
}
.input-eye:hover { color: var(--text); }

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0 22px;
}
.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--muted);
    cursor: pointer;
}
.checkbox input {
    width: 18px; height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}
.checkbox--terms { margin: 6px 0 22px; }
.checkbox--terms span { color: var(--muted); }

.link-muted { color: var(--muted); font-size: 14px; transition: color .15s; }
.link-muted:hover { color: var(--text); }
.link-accent { color: var(--primary); font-weight: 600; }
.link-accent:hover { text-decoration: underline; }

.auth-alt {
    text-align: center;
    margin: 24px 0 0;
    font-size: 14px;
    color: var(--muted);
}

/* ---------- HERO SLIDER ---------- */
.hero-slider {
    position: relative;
    width: 100%;
    height: clamp(300px, 34vw, 470px);
    overflow: hidden;
    background: var(--bg);
    cursor: grab;
    touch-action: pan-y;              /* dikey kaydırma serbest, yatayı biz yönetiyoruz */
    -webkit-user-select: none;
    user-select: none;
}
.hero-slider.is-dragging { cursor: grabbing; }
.hero-slider__track {
    display: flex;
    height: 100%;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}
.hero-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.hero-slide__inner { position: relative; z-index: 2; width: 100%; }
.hero-slide__content { max-width: 540px; }
.hero-slide__title {
    font-size: clamp(30px, 4.4vw, 58px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -1.2px;
    margin: 0 0 14px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .55);
}
.hero-slide__sub {
    font-size: clamp(13px, 1.1vw, 16px);
    color: rgba(255, 255, 255, .78);
    margin: 0 0 28px;
}
.hero-slide__btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    height: 56px;
    padding: 0 10px 0 24px;
    border-radius: 12px;
    background: rgba(15, 17, 22, .68);
    border: 1px solid rgba(255, 255, 255, .12);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: background .15s, border-color .15s, transform .12s;
}
.hero-slide__btn:hover { background: rgba(15, 17, 22, .9); border-color: var(--primary); }
.hero-slide__btn:active { transform: translateY(1px); }
.hero-slide__btn svg {
    width: 34px;
    height: 34px;
    padding: 8px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .08);
    flex-shrink: 0;
}


/* Noktalar */
.hero-slider__dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.hero-slider__dots button {
    width: 26px;
    height: 5px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background .25s, width .25s;
}
.hero-slider__dots button:hover { background: rgba(255, 255, 255, .5); }
.hero-slider__dots button.is-active { width: 36px; background: var(--primary); }

/* Geri sayım halkası */
.hero-slider__timer {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 4;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(10, 12, 16, .38);
    border: 1px solid rgba(255, 255, 255, .10);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .5);
}
.hero-slider__timer svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);   /* saat 12'den başlasın */
}
.hero-slider__timer-track {
    fill: none;
    stroke: rgba(255, 255, 255, .16);
    stroke-width: 3;
}
.hero-slider__timer-bar {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 4px var(--primary-glow));
}
.hero-slider__timer-num {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

/* ---------- BÖLÜM BAŞLIĞI (ortak) ---------- */
.section { padding: 46px 0; }
.section__head {
    text-align: center;
    padding-bottom: 18px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-soft);
}
.section__head h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .2px;
}

/* ---------- POPÜLER KATEGORİLER ---------- */
.pop-cats.container,
.products.container { max-width: 1400px; padding-left: 24px; padding-right: 24px; }
/* İki bölüm arasındaki boşluğu azalt */
.pop-cats.section { padding-bottom: 14px; }
.products.section { padding-top: 12px; }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
}
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.6;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: var(--card);
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -16px rgba(0, 0, 0, .65);
    border-color: rgba(34, 197, 94, .45);
}
.cat-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cat-card__name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 10px 14px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .9) 20%, rgba(0, 0, 0, 0));
    text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

/* ---------- ÜRÜN SEKMELERİ ---------- */
.ptabs {
    display: flex;
    gap: 4px;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 8px;
    margin-bottom: 22px;
    overflow-x: auto;
}
.ptab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 18px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 9px;
    position: relative;
    transition: color .15s, background .15s;
}
.ptab svg { color: var(--muted-2); transition: color .15s; }
.ptab:hover { color: var(--text); background: var(--card-2); }
.ptab.is-active { color: var(--primary); }
.ptab.is-active svg { color: var(--primary); }
.ptab.is-active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 2px;
    height: 3px;
    border-radius: 3px;
    background: var(--primary);
}

/* ---------- ÜRÜN KARTLARI ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.product {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 14px;
    transition: border-color .15s, background .15s;
}
.product:hover { border-color: rgba(34, 197, 94, .35); background: var(--card-2); }

.product__thumb {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--card-2);
}
.product__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product__badge {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3px 4px;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .3px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .88), transparent);
}
.product__tag {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(34, 197, 94, .92);
    color: #06210f;
}

.product__info { flex: 1; min-width: 0; }
.product__name a { color: inherit; transition: color .15s; }
.product__name a:hover { color: var(--primary); }
.product__name {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product__prices { display: flex; align-items: baseline; gap: 10px; }
.product__old { color: #e06b6b; font-size: 13px; text-decoration: line-through; opacity: .85; }
.product__new { color: var(--primary); font-size: 16px; font-weight: 700; }

.product__qty {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: var(--card-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.qty__btn {
    width: 38px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 18px;
    line-height: 1;
    transition: background .15s, color .15s;
}
.qty__btn:hover { background: var(--card); color: var(--text); }
.qty__val {
    width: 44px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}
.product__buy { flex-shrink: 0; height: 44px; padding: 0 20px; color: #fff; }

@media (max-width: 1024px) { .product-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) {
    .product { flex-wrap: wrap; }
    .product__info { flex: 1 1 calc(100% - 92px); }
    .product__qty { margin-left: 92px; }
    .product__buy { flex: 1; }
}

/* ---------- PLATFORMLAR ---------- */
.platforms.container { max-width: 1400px; padding-left: 24px; padding-right: 24px; }
.plat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.plat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1.05;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px 12px;
    box-shadow: 0 10px 26px -14px rgba(0, 0, 0, .6);
    transition: transform .15s, box-shadow .15s;
}
.plat-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -16px rgba(0, 0, 0, .7); }
.plat-card__icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plat-card__name {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
    padding-bottom: 4px;
}
.plat-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.plat-card--img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0) 55%);
}
.plat-card--img .plat-card__name { position: relative; z-index: 1; margin-top: auto; }
@media (max-width: 1024px) { .plat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .plat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- GÜNÜN FIRSATLARI ---------- */
.deals-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(120deg, #0a1430 0%, #12285e 45%, #1b3d8a 100%);
    overflow: hidden;
    padding: 46px 0;
    text-align: center;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.deals-banner::before,
.deals-banner::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 155, 245, .35), transparent 70%);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.deals-banner::before { left: -90px; }
.deals-banner::after { right: -90px; }
.deals-banner__inner { position: relative; z-index: 1; }
.deals-banner__title { margin: 0 0 12px; font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: #fff; }
.deals-banner__sub {
    max-width: 640px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    line-height: 1.6;
}
.deals-timer {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(8, 14, 30, .55);
    border: 1px solid rgba(255, 255, 255, .14);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 12px 22px;
    border-radius: 12px;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 600;
}
.deals-timer__clock {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    font-variant-numeric: tabular-nums;
    letter-spacing: .5px;
}

.deals-section.container { max-width: 1400px; padding-left: 24px; padding-right: 24px; }
.deal-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.deal-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .15s, border-color .15s, box-shadow .15s;
}
.deal-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, .4);
    box-shadow: 0 16px 32px -16px rgba(0, 0, 0, .6);
}
.deal-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-color: var(--card-2);
}
.deal-card__flag {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .4);
}
.deal-card__logo { position: absolute; top: 9px; right: 9px; opacity: .85; }
.deal-card__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 8px 10px;
    text-align: center;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .5px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}
.deal-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 12px 14px;
    text-align: center;
}
.deal-card__stars { color: #f5b638; font-size: 13px; letter-spacing: 2px; }
.deal-card__name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}
.deal-card__prices { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.deal-card__qty { display: flex; width: 100%; }
.deal-card__qty .qty__btn { flex: 1; min-width: 0; }
.deal-card__qty .qty__val { flex: 1.4; width: auto; min-width: 0; }
.deal-card__buy { width: 100%; height: 42px; color: #fff; margin-top: 2px; }

@media (max-width: 1024px) { .deal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .deal-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- SEO METİN ALANI ---------- */
.seo.container,
.features.container { max-width: 1400px; padding-left: 24px; padding-right: 24px; }
.seo-box {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 28px 32px;
    max-height: 320px;
    overflow-y: auto;
}
.seo-box h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.seo-box h3:first-child { margin-top: 0; }
.seo-box p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }
.seo-box::-webkit-scrollbar { width: 8px; }
.seo-box::-webkit-scrollbar-track { background: transparent; margin: 8px 0; }
.seo-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }
.seo-box::-webkit-scrollbar-thumb:hover { background: #3a3a44; }

/* ---------- NEDEN RAGNAROK ---------- */
.features__head { text-align: center; margin-bottom: 42px; }
.features__head h2 { margin: 0 0 10px; font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; }
.features__head p { margin: 0; color: var(--muted); font-size: 15px; }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature { text-align: center; padding: 6px 28px; }
.feature + .feature { border-left: 1px solid var(--border-soft); }
.feature__icon { display: inline-flex; color: var(--text); margin-bottom: 18px; }
.feature__title { margin: 0 0 10px; font-size: 17px; font-weight: 700; }
.feature__desc { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
@media (max-width: 860px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
    .feature { border-left: none; padding: 6px 16px; }
}
@media (max-width: 480px) { .features__grid { grid-template-columns: 1fr; } }

/* ---------- AUTH HATA KUTUSU ---------- */
.auth-alert {
    background: rgba(224, 107, 107, .12);
    border: 1px solid rgba(224, 107, 107, .4);
    color: #f0a5a5;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.auth-alert--success {
    background: rgba(87, 197, 130, .12);
    border-color: rgba(87, 197, 130, .4);
    color: #7fd6a1;
}

/* ---------- GİRİŞ YAPILMIŞ HEADER ---------- */
/* Avatar kutularında görsel gösterimi */
.uchip__avatar, .udrop__avatar, .csb__avatar { overflow: hidden; }
.uchip__avatar img, .udrop__avatar img, .csb__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.header__user { display: flex; align-items: center; gap: 10px; }
.hicon {
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--card-2);
    border: 1px solid var(--border-soft);
    color: var(--muted);
    transition: background .15s, color .15s, border-color .15s;
}
.hicon:hover { background: var(--card); color: var(--primary); border-color: rgba(34, 197, 94, .4); }
.hicon__dot {
    position: absolute;
    top: 9px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--card-2);
}

/* Bildirimler dropdown (header) */
.hnotif { position: relative; }
.ndrop {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 300px;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .15s, transform .15s, visibility .15s;
    z-index: 60;
    overflow: hidden;
}
.hnotif.is-open .ndrop { opacity: 1; visibility: visible; transform: translateY(0); }
.ndrop__head { padding: 13px 16px; font-weight: 700; font-size: 14px; border-bottom: 1px solid var(--border-soft); }
.ndrop__empty { padding: 30px 20px; text-align: center; }
.ndrop__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; margin-bottom: 12px; color: var(--muted-2); background: var(--card-2); }
.ndrop__title { margin: 0 0 4px; font-size: 14px; font-weight: 600; color: var(--text); }
.ndrop__sub { margin: 0; font-size: 12.5px; color: var(--muted); }

.uchip {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 4px;
    padding: 5px 10px 5px 5px;
    border-radius: 12px;
    background: var(--card-2);
    border: 1px solid var(--border-soft);
    cursor: pointer;
    user-select: none;
    transition: border-color .15s, background .15s;
}
.uchip:hover { border-color: rgba(34, 197, 94, .4); }
.uchip__avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #06210f;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-700) 100%);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, .25), 0 0 14px -2px var(--primary-glow);
}
.uchip__meta { display: flex; flex-direction: column; line-height: 1.15; }
.uchip__name { font-size: 13.5px; font-weight: 600; color: var(--text); }
.uchip__balance { font-size: 12.5px; font-weight: 700; color: var(--primary); }
.uchip__caret { color: var(--muted-2); transition: transform .18s; flex-shrink: 0; }
.uchip.is-open .uchip__caret { transform: rotate(180deg); }

.udrop {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 210px;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .15s, transform .15s, visibility .15s;
    z-index: 60;
}
.uchip.is-open .udrop { opacity: 1; visibility: visible; transform: translateY(0); }
.udrop__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: background .15s, color .15s;
}
.udrop__item svg { color: var(--muted-2); transition: color .15s; }
.udrop__item:hover { background: var(--card-2); color: var(--text); }
.udrop__item:hover svg { color: var(--primary); }
.udrop__item--logout {
    margin-top: 4px;
    border-top: 1px solid var(--border-soft);
    color: #e06b6b;
}
.udrop__item--logout svg { color: #e06b6b; }
.udrop__item--logout:hover { background: rgba(224, 107, 107, .12); color: #f0a5a5; }
.udrop__item--logout:hover svg { color: #f0a5a5; }

/* Zengin kullanıcı menüsü */
.udrop--rich {
    min-width: 296px;
    padding: 0;
    overflow: hidden;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
}
.udrop__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(34, 197, 94, .12), rgba(34, 197, 94, 0));
    border-bottom: 1px solid var(--border-soft);
}
.udrop__avatar {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #06210f;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-700) 100%);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, .3), 0 0 18px -2px var(--primary-glow);
}
.udrop__hmeta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.udrop__hname { font-weight: 700; font-size: 15px; color: var(--text); }
.udrop__hbalance { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--primary); }
.balance-eye {
    background: none;
    border: 0;
    padding: 0;
    display: inline-flex;
    color: var(--muted-2);
    cursor: pointer;
    transition: color .15s;
}
.balance-eye:hover { color: var(--text); }

.udrop__wallet {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-bottom: 1px solid var(--border-soft);
}
.wbtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 46px;
    padding: 0 16px;
    border-radius: 10px;
    background: rgba(34, 197, 94, .10);
    border: 1px solid rgba(34, 197, 94, .35);
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    transition: background .15s, border-color .15s;
}
.wbtn:hover { background: rgba(34, 197, 94, .18); border-color: var(--primary); }
.wbtn svg { color: var(--primary); }
.udrop__list { padding: 8px; }

@media (max-width: 860px) {
    .header__user .hicon { display: none; }
    .uchip__meta { display: none; }
}

/* ================= CLIENT (ÜYE PANELİ) ================= */
.client {
    display: grid;
    grid-template-columns: 288px 1fr;
    gap: 24px;
    align-items: start;
    padding-top: 30px;
    padding-bottom: 60px;
}
.client__main { min-width: 0; }

/* --- Sabit sidebar --- */
.client__sidebar {
    position: sticky;
    top: 20px;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    overflow: hidden;
}
.csb__user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(34, 197, 94, .14), rgba(34, 197, 94, 0));
    border-bottom: 1px solid var(--border-soft);
}
.csb__avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 19px;
    color: #06210f;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-700) 100%);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, .3), 0 0 16px -2px var(--primary-glow);
}
.csb__umeta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.csb__uname { font-weight: 700; font-size: 14.5px; color: var(--text); }
.csb__ubalance { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--primary); }
.csb__wallet { display: flex; flex-direction: column; gap: 8px; padding: 12px; border-bottom: 1px solid var(--border-soft); }
.csb__nav { padding: 10px; }
.csb__label {
    padding: 14px 10px 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    color: var(--muted-2);
}
.csb__label:first-child { padding-top: 4px; }
.csb__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 500;
    transition: background .15s, color .15s;
}
.csb__item svg { color: var(--muted-2); flex-shrink: 0; transition: color .15s; }
.csb__item:hover { background: var(--card-2); color: var(--text); }
.csb__item:hover svg { color: var(--primary); }
.csb__item.is-active { background: rgba(34, 197, 94, .12); color: var(--primary); }
.csb__item.is-active svg { color: var(--primary); }
.csb__item.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 3px;
    background: var(--primary);
}
.csb__item--logout { color: #e06b6b; }
.csb__item--logout svg { color: #e06b6b; }
.csb__item--logout:hover { background: rgba(224, 107, 107, .12); color: #f0a5a5; }

/* --- İçerik kartları --- */
.cpanel-card {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 20px;
}
.cpanel-card__head { margin-bottom: 18px; }
.cpanel-card__head h2 { margin: 0 0 4px; font-size: 17px; font-weight: 700; }
.cpanel-card__head p { margin: 0; color: var(--muted); font-size: 13px; }

/* Doğrulama kutuları */
.verif-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.verif {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(245, 182, 56, .08);
    border: 1px solid rgba(245, 182, 56, .25);
}
.verif__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 182, 56, .16);
    color: #f5b638;
}
.verif__title { font-weight: 600; font-size: 14px; color: #f5b638; margin-bottom: 2px; }
.verif__sub { font-size: 12.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.verif__text { flex: 1 1 auto; min-width: 0; }
a.verif { text-decoration: none; cursor: pointer; transition: border-color .15s; }
a.verif:hover { border-color: rgba(245, 182, 56, .55); }
.verif__check { flex-shrink: 0; color: #22c55e; display: inline-flex; align-items: center; }
/* Doğrulanmış (yeşil) */
.verif--on { background: rgba(34, 197, 94, .09); border-color: rgba(34, 197, 94, .28); }
.verif--on .verif__icon { background: rgba(34, 197, 94, .16); color: #22c55e; }
.verif--on .verif__title { color: #22c55e; }
a.verif--on:hover { border-color: rgba(34, 197, 94, .55); }
/* Yakında (nötr) */
.verif--soon { background: var(--card-2); border-color: var(--border-soft); }
.verif--soon .verif__icon { background: rgba(255, 255, 255, .05); color: var(--muted); }
.verif--soon .verif__title { color: var(--text); }

/* Bildirim tercih satırı */
.npref {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border-radius: 12px;
    background: var(--card-2);
    border: 1px solid var(--border-soft);
    margin-bottom: 12px;
}
.npref:last-child { margin-bottom: 0; }
.npref__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.npref__icon--blue { background: rgba(58, 123, 213, .16); color: #5b9bf0; }
.npref__icon--green { background: rgba(34, 197, 94, .16); color: var(--primary); }
.npref__text { flex: 1; min-width: 0; }
.npref__title { font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.npref__sub { font-size: 12.5px; color: var(--muted); }
.npref-saved { margin: 4px 2px 0; font-size: 12.5px; color: var(--primary); }
.npref-saved.is-error { color: #ff6b6b; }

/* Toggle anahtarı */
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch__slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: var(--border);
    cursor: pointer;
    transition: background .2s;
}
.switch__slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: #fff;
    transition: transform .2s;
}
.switch input:checked + .switch__slider { background: var(--primary); }
.switch input:checked + .switch__slider::before { transform: translateX(20px); }

/* Referans kodu */
.refcode { display: flex; gap: 12px; }
.refcode .input { flex: 1; }
.refcode .btn { flex-shrink: 0; padding: 0 26px; }

/* Boş/placeholder sayfa */
.cpanel-empty { text-align: center; padding: 54px 22px; }
.cpanel-empty__icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--card-2);
    color: var(--muted-2);
    margin-bottom: 16px;
}
.cpanel-empty h2 { margin: 0 0 6px; font-size: 18px; }
.cpanel-empty p { margin: 0; color: var(--muted); font-size: 14px; }

@media (max-width: 900px) {
    .client { grid-template-columns: 1fr; }
    .client__sidebar { position: static; }
    .verif-grid { grid-template-columns: 1fr; }
    .refcode { flex-direction: column; }
    .refcode .btn { width: 100%; }
}

/* ---------- CLIENT: PROFİL & DOĞRULAMA ---------- */
.cpanel-head {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 20px;
}
.cpanel-head__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary), var(--primary-700));
    color: #06210f;
}
.cpanel-head h2 { margin: 0 0 3px; font-size: 16px; font-weight: 700; }
.cpanel-head p { margin: 0; color: var(--muted); font-size: 13px; }

.cnotice { padding: 12px 16px; border-radius: 10px; font-size: 13.5px; margin-bottom: 18px; }
.cnotice--success { background: rgba(34, 197, 94, .12); border: 1px solid rgba(34, 197, 94, .4); color: #7fe0a0; }
.cnotice--error { background: rgba(224, 107, 107, .12); border: 1px solid rgba(224, 107, 107, .4); color: #f0a5a5; }
.cnotice--info { background: rgba(245, 182, 56, .1); border: 1px solid rgba(245, 182, 56, .38); color: #f5c869; }

.cpanel-form__actions { display: flex; justify-content: flex-end; margin-top: 6px; }

.verify-list { display: flex; flex-direction: column; gap: 12px; }
.vrow {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 15px 18px;
    transition: border-color .15s, background .15s;
}
a.vrow:hover { border-color: rgba(34, 197, 94, .4); background: var(--card-2); }
.vrow__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card-2);
    color: var(--muted);
    transition: color .15s;
}
a.vrow:hover .vrow__icon { color: var(--primary); }
.vrow__text { flex: 1; min-width: 0; }
.vrow__title { font-weight: 600; font-size: 14.5px; color: var(--text); margin-bottom: 2px; }
.vrow__status { font-size: 12.5px; color: var(--muted); }
.vrow__arrow, .vrow__lock { color: var(--muted-2); flex-shrink: 0; }
.vrow--disabled { opacity: .55; cursor: not-allowed; }

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .6);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    padding: 20px;
}
.modal.is-open { display: flex; }
.modal__box {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7);
}
.modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: 0;
    color: var(--muted-2);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
.modal__close:hover { color: var(--text); }
.modal__title { margin: 0 0 18px; font-size: 18px; font-weight: 700; }
.modal__box .form-label { display: block; margin-bottom: 8px; }
.modal__box .input { margin-bottom: 16px; }
.modal__note { margin: 12px 0 0; font-size: 12.5px; color: var(--muted-2); text-align: center; display: none; }

/* ---------- DOĞRULAMA MODALLERİ (telefon + mail, ortak akış) ---------- */
.vflow { max-width: 400px; text-align: center; }
.vflow .modal__title { margin: 0 0 6px; text-align: center; }
.vflow .form-label { text-align: left; }
.vflow__ico {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; margin: 4px auto 14px; border-radius: 50%;
    color: var(--primary);
    background: color-mix(in srgb, var(--primary) 15%, transparent);
}
.vflow__lead { margin: 0 0 20px; font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.vflow__lead b { color: var(--text); }
.vflow__tel { position: relative; display: flex; align-items: center; }
.vflow__cc {
    position: absolute; left: 1px; top: 1px; bottom: 1px; display: flex; align-items: center;
    padding: 0 12px; font-size: 14px; font-weight: 600; color: var(--muted);
    border-right: 1px solid var(--border-soft);
}
.vflow__tel .input { padding-left: 62px; margin-bottom: 0; }
.vflow__err { margin: 12px 0 0; font-size: 13px; color: #ef5350; text-align: center; }
.vflow .btn--block { margin-top: 18px; }

/* OTP kutuları */
.vflow__otp { display: flex; gap: 8px; justify-content: center; margin: 4px 0 6px; }
.vflow__cell {
    width: 46px; height: 56px; text-align: center;
    font-size: 22px; font-weight: 700; color: var(--text);
    background: var(--bg-soft, rgba(255,255,255,.03));
    border: 1.5px solid var(--border-soft); border-radius: 12px;
    outline: none; transition: border-color .15s, box-shadow .15s;
    -moz-appearance: textfield;
}
.vflow__cell:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 22%, transparent);
}
/* zamanlayıcı + tekrar gönder */
.vflow__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; font-size: 12.5px; }
.vflow__timer { color: var(--muted-2); }
.vflow__timer.is-exp { color: #ef5350; }
.vflow__resend {
    background: none; border: 0; padding: 0; cursor: pointer;
    color: var(--primary); font-weight: 600; font-size: 12.5px;
}
.vflow__resend:disabled { color: var(--muted-2); cursor: default; }
.vflow__back {
    display: block; width: 100%; margin: 12px 0 0; padding: 6px;
    background: none; border: 0; cursor: pointer; color: var(--muted); font-size: 13px;
}
.vflow__back:hover { color: var(--text); }
/* başarı adımı */
.vflow__check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 66px; height: 66px; margin: 6px auto 14px; border-radius: 50%;
    color: #fff; background: #16a34a;
    animation: vflowPop .3s ease;
}
@keyframes vflowPop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* doğrulanmış satır rozeti (profil) */
.vrow--verified { cursor: default; }
.vrow__done {
    display: inline-flex; align-items: center; gap: 5px; flex: none;
    padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600;
    color: #16a34a; background: color-mix(in srgb, #16a34a 14%, transparent);
}

/* ---------- CLIENT: BAKİYE ÇEK ---------- */
.wstats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 20px;
}
.wstat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card-2);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 16px;
}
.wstat__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, .15);
    color: var(--primary);
}
.wstat__amount { font-size: 17px; font-weight: 700; color: var(--text); }
.wstat__label { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.csec {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}
.csec__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    cursor: pointer;
}
.csec__titles h3 { margin: 0 0 3px; font-size: 16px; font-weight: 700; }
.csec__titles p { margin: 0; color: var(--muted); font-size: 13px; }
.csec__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.csec__caret {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card-2);
    border: 1px solid var(--border-soft);
    color: var(--muted);
    transition: transform .2s;
}
.csec.is-open .csec__caret { transform: rotate(180deg); }
.csec__body { display: none; padding: 0 22px 22px; }
.csec.is-open .csec__body { display: block; }
.csec__empty { text-align: center; color: var(--muted-2); padding: 22px; font-size: 14px; }
.csec--disabled { opacity: .6; }
.csec--disabled .csec__head { cursor: default; }
.csec__lock {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card-2);
    border: 1px solid var(--border-soft);
    color: var(--muted-2);
}

.btn--sm { height: 40px; padding: 0 18px; font-size: 13.5px; }

.bankrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: var(--card-2);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    margin-bottom: 10px;
}
.bankrow:last-child { margin-bottom: 0; }
.bankrow__info strong { display: block; font-size: 14px; }
.bankrow__info span { font-size: 12.5px; color: var(--muted); }
.bankrow__del { background: none; border: 0; color: var(--muted-2); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 6px; }
.bankrow__del:hover { color: #e06b6b; }

.tform__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tform__actions { display: flex; justify-content: flex-end; margin-top: 16px; }
.input-suffix { position: relative; }
.input-suffix .input { padding-right: 44px; }
.input-suffix span { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 600; font-size: 13px; }

.wtable { width: 100%; border-collapse: collapse; }
.wtable th { text-align: left; font-size: 12.5px; font-weight: 600; color: var(--muted-2); padding: 10px 12px; border-bottom: 1px solid var(--border-soft); }
.wtable td { padding: 12px; font-size: 13.5px; color: var(--text); border-bottom: 1px solid var(--border-soft); }
.wtable tr:last-child td { border-bottom: none; }
.wtable__empty { text-align: center !important; color: var(--muted-2); padding: 34px 12px !important; }

select.input {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%238a8a93'%3E%3Cpath d='m7 10 5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.modal__box select.input, .modal__box .checkbox { margin-bottom: 16px; }

@media (max-width: 700px) {
    .wstats { grid-template-columns: 1fr; }
    .tform__grid { grid-template-columns: 1fr; }
}

/* ---------- CLIENT: AYAR SAYFALARI ---------- */
.cwarn {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(245, 182, 56, .10);
    border: 1px solid rgba(245, 182, 56, .35);
    color: #e6b850;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.cwarn svg { flex-shrink: 0; margin-top: 1px; }
.cwarn__link { color: #f5b638; font-weight: 700; text-decoration: underline; }

.phone-input { display: flex; gap: 8px; }
.phone-input__cc {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 16px;
    border-radius: var(--radius);
    background: var(--card-2);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}
.phone-input .input { flex: 1; min-width: 0; }

.frtype { display: flex; gap: 12px; flex-wrap: wrap; }
.frtype__opt {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 220px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--card-2);
    border: 1px solid var(--border-soft);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: border-color .15s, background .15s;
}
.frtype__opt input { position: absolute; opacity: 0; pointer-events: none; }
.frtype__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    position: relative;
    flex-shrink: 0;
    transition: border-color .15s;
}
.frtype__opt input:checked ~ .frtype__dot { border-color: var(--primary); }
.frtype__opt input:checked ~ .frtype__dot::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--primary);
}
.frtype__opt:has(input:checked) { border-color: rgba(34, 197, 94, .5); background: rgba(34, 197, 94, .08); }

textarea.input { resize: vertical; min-height: 92px; line-height: 1.5; }

/* Avatar seçimi */
.avatar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}
.avatar-opt {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid var(--border-soft);
    background: var(--card-2);
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
}
.avatar-opt input { position: absolute; opacity: 0; pointer-events: none; }
.avatar-opt img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar-opt:hover { border-color: rgba(34, 197, 94, .5); }
.avatar-opt.is-selected { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(34, 197, 94, .25); }
.avatar-opt__check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: #06210f;
    display: none;
    align-items: center;
    justify-content: center;
}
.avatar-opt.is-selected .avatar-opt__check { display: flex; }

/* ---------- ANASAYFA (placeholder) ---------- */
.home-hero {
    text-align: center;
    padding: 90px 24px 110px;
}
.home-hero__badge {
    display: inline-block;
    background: rgba(34, 197, 94, .1);
    color: var(--primary);
    border: 1px solid rgba(34, 197, 94, .3);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 22px;
}
.home-hero h1 { font-size: 40px; font-weight: 700; margin: 0 0 14px; letter-spacing: -1px; }
.home-hero p { color: var(--muted); font-size: 16px; margin: 0 auto 30px; max-width: 520px; }
.home-hero__actions { display: flex; gap: 12px; justify-content: center; }
.accent { color: var(--primary); }

/* ---------- 404 SAYFASI ---------- */
.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 70px 24px 100px;
}
.not-found__graphic {
    position: relative;
    width: 280px;
    height: 130px;
    margin-bottom: 16px;
}
.not-found__graphic::after {
    content: '404';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    font-weight: 800;
    letter-spacing: -5px;
    background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .22;
}
.not-found__graphic::before {
    content: '404';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    font-weight: 800;
    letter-spacing: -5px;
    background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(18px);
    opacity: .4;
}
.not-found__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -.5px;
}
.not-found__sub {
    color: var(--muted);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.65;
}
.not-found__links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}
.not-found__hints {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: var(--muted-2);
}
.not-found__hints a {
    color: var(--muted);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 4px 14px;
    transition: border-color .15s, color .15s;
    text-decoration: none;
}
.not-found__hints a:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- FOOTER ---------- */
.footer {
    border-top: 1px solid var(--border-soft);
    margin-top: 60px;
    background: var(--bg-topbar);
    padding: 42px 0 0;
}

/* Üst: logo + hızlı butonlar */
.footer__top {
    display: flex;
    align-items: center;
    gap: 26px;
    padding-bottom: 40px;
}
.footer__actions {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.fbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border-soft);
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    transition: background .15s, box-shadow .15s;
}
.fbtn:hover { background: var(--card-2); }
.fbtn--primary {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-600) 100%);
    color: #06210f;
    border-color: transparent;
    box-shadow: 0 8px 20px -10px var(--primary-glow);
}
.fbtn--primary:hover {
    background: linear-gradient(145deg, #2bd268 0%, var(--primary) 100%);
    box-shadow: 0 10px 26px -8px var(--primary-glow);
}

/* Link sütunları */
.footer__cols {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 2fr;
    padding: 8px 0 42px;
}
.fcol { padding: 0 36px; }
.fcol:first-child { padding-left: 0; }
.fcol + .fcol { border-left: 1px solid var(--border-soft); }
.fcol__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .6px;
    color: var(--text);
    margin: 0 0 18px;
}
.flist { list-style: none; margin: 0; padding: 0; }
.flist li { margin-bottom: 13px; }
.flist a {
    position: relative;
    display: inline-block;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    transition: color .15s;
}
.flist a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-radius: 50%;
    background: var(--primary);
}
.flist a:hover { color: var(--text); }
.fcol__split { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }

/* E-bülten (footer) */
.fnews__desc { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin: 0 0 14px; max-width: 360px; }
.fnews { max-width: 380px; }
.fnews__row {
    display: flex; align-items: center; gap: 8px;
    background: var(--input); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 5px 5px 5px 12px;
    transition: border-color .15s, box-shadow .15s;
}
.fnews__row:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.fnews__ico { color: var(--muted-2); display: inline-flex; flex-shrink: 0; }
.fnews__input {
    flex: 1; min-width: 0; border: none; background: transparent;
    color: var(--text); font-size: 14px; font-family: inherit; outline: none; padding: 8px 0;
}
.fnews__input::placeholder { color: var(--muted-2); }
.fnews__btn {
    flex-shrink: 0; border: none; cursor: pointer; white-space: nowrap;
    background: var(--primary); color: #08130c; font-weight: 600; font-size: 14px;
    padding: 9px 18px; border-radius: var(--radius-sm); font-family: inherit;
    transition: background .15s;
}
.fnews__btn:hover { background: var(--primary-600); }
.fnews__hint { min-height: 16px; margin: 8px 2px 0; font-size: 12.5px; color: var(--muted-2); }
.fnews__hint.is-error { color: #ff8f8f; }
.fnews__ok {
    align-items: center; gap: 7px;
    color: var(--primary); font-size: 14px; font-weight: 600; margin: 4px 0 0;
}
/* hidden özelliğine saygı göster — yalnızca görünürken flex uygula (aksi halde baştan görünür) */
.fnews__ok:not([hidden]) { display: inline-flex; }

/* İletişim şeridi */
.footer__contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
}
.fcontact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 84px;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: background .15s;
}
.fcontact + .fcontact { border-left: 1px solid var(--border-soft); }
.fcontact:hover { background: var(--card-2); }
.fcontact__ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-700) 100%);
    color: #06210f;
    flex-shrink: 0;
}

/* Telif + rozetler */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--border-soft);
    padding: 22px 0 26px;
}
.footer__copy { color: var(--muted-2); font-size: 13px; }
.footer__badges { display: flex; align-items: center; gap: 18px; }
.fbadge-img {
    height: 48px;
    width: auto;
    display: block;
    opacity: .85;
    transition: opacity .15s;
}
.fbadge-img:hover { opacity: 1; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
    .search { display: none; }
    .header__inner { gap: 12px; }
    .btn--add { display: none; }
    .form-grid { grid-template-columns: 1fr; }
    .home-hero h1 { font-size: 30px; }
    .auth-card { padding: 30px 22px; }

    /* Footer */
    .footer__top { flex-direction: column; align-items: stretch; gap: 18px; }
    .footer__actions { grid-template-columns: 1fr; }
    .footer__cols { grid-template-columns: 1fr; gap: 30px; }
    .fcol { padding: 0; }
    .fcol + .fcol { border-left: none; border-top: 1px solid var(--border-soft); padding-top: 26px; }
    .footer__contact { grid-template-columns: 1fr; }
    .fcontact + .fcontact { border-left: none; border-top: 1px solid var(--border-soft); }
    .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

    /* Slider */
    .hero-slider { height: clamp(230px, 56vw, 360px); }
    .hero-slide__content { max-width: 100%; }
}
@media (max-width: 560px) {
    .topbar__links a:first-child { display: none; }
    .header__auth .btn { padding: 0 14px; }
}

/* Kullanıcı menüsündeki "Yönetim Paneli" linki (public site header) */
.udrop__item--admin { color: #f5b638; }
.udrop__item--admin svg { color: #f5b638; }
.udrop__item--admin:hover { background: rgba(245, 182, 56, .12); }

/* ================= BAKİYE YÜKLE ================= */
.dep-alert { padding: 13px 16px; border-radius: 12px; margin-bottom: 16px; font-size: 13.5px; font-weight: 500; border: 1px solid transparent; }
.dep-alert--success { background: rgba(34,197,94,.12); color: #74e39b; border-color: rgba(34,197,94,.3); }
.dep-alert--error { background: rgba(224,107,107,.12); color: #f0a5a5; border-color: rgba(224,107,107,.3); }

.dep-promo {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: linear-gradient(120deg, #e11d2a, #b3121d); color: #fff;
    border-radius: 16px; padding: 20px 26px; margin-bottom: 20px;
    box-shadow: 0 14px 34px -18px rgba(225,29,42,.7);
}
.dep-promo__text h2 { margin: 0 0 4px; font-size: 19px; font-weight: 800; }
.dep-promo__text p { margin: 0; font-size: 13.5px; opacity: .9; }
.dep-promo__icon { flex-shrink: 0; opacity: .9; }

.dep-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.dep-chip { height: 42px; padding: 0 20px; border-radius: 11px; background: var(--card-2); border: 1px solid var(--border); color: var(--text); font-weight: 700; font-size: 14px; cursor: pointer; transition: .15s; }
.dep-chip:hover { border-color: var(--primary); color: var(--primary); }
.dep-amount { position: relative; margin-bottom: 16px; }
.dep-amount .input { padding-right: 42px; font-size: 18px; font-weight: 700; }
.dep-amount .input.is-error { border-color: #e06b6b; }
.dep-amount__cur { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--muted-2); font-weight: 700; }
.dep-continue { width: 100%; height: 50px; font-size: 15px; }

.dep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 860px) { .dep-grid { grid-template-columns: 1fr; } }

.dep-accounts { border-left: 3px solid #e11d2a; }
.dep-acc { background: var(--card-2); border: 1px solid var(--border-soft); border-radius: 12px; padding: 14px; margin-bottom: 12px; }
.dep-acc:last-child { margin-bottom: 0; }
.dep-acc__bank { font-weight: 700; font-size: 13px; color: #f0a5a5; margin-bottom: 10px; }
.dep-acc__row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--border-soft); }
.dep-acc__row:first-of-type { border-top: none; }
.dep-acc__k { width: 46px; flex-shrink: 0; font-size: 11px; font-weight: 700; color: var(--muted-2); }
.dep-acc__v { flex: 1; min-width: 0; font-weight: 600; font-size: 13.5px; word-break: break-all; }
.dep-acc__note { margin-top: 8px; font-size: 12px; color: var(--muted); }
.dep-copy { flex-shrink: 0; display: inline-flex; align-items: center; gap: 5px; height: 32px; padding: 0 12px; border-radius: 8px; background: rgba(225,29,42,.14); border: 1px solid rgba(225,29,42,.35); color: #f0a5a5; font-size: 12px; font-weight: 600; cursor: pointer; transition: .15s; }
.dep-copy:hover { background: rgba(225,29,42,.24); }

.dep-notify__head { display: flex; align-items: center; gap: 9px; }
.dep-notify__head svg { color: #f0a5a5; }
.dep-notify__head h2 { margin: 0; }
.dep-field { display: block; margin-bottom: 14px; }
.dep-field__label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .5px; color: var(--muted-2); margin-bottom: 7px; }
.dep-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dep-send { width: 100%; height: 50px; margin-top: 6px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; border-radius: 12px; background: linear-gradient(120deg,#e11d2a,#b3121d); color: #fff; font-weight: 800; font-size: 14.5px; cursor: pointer; transition: filter .15s; box-shadow: 0 10px 24px -12px rgba(225,29,42,.7); }
.dep-send:hover { filter: brightness(1.07); }
.dep-back { display: block; width: 100%; margin-top: 12px; background: none; border: none; color: var(--muted); font-size: 13px; cursor: pointer; }
.dep-back:hover { color: var(--text); }

.dep-history { display: flex; flex-direction: column; gap: 8px; }
.dep-hrow { display: flex; align-items: center; gap: 14px; padding: 11px 14px; background: var(--card-2); border: 1px solid var(--border-soft); border-radius: 10px; font-size: 13px; }
.dep-hrow__amt { font-weight: 800; color: var(--primary); }
.dep-hrow__bank { flex: 1; color: var(--muted); }
.dep-hrow__date { color: var(--muted-2); }
.dep-badge { padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; }
.dep-badge--pending { background: rgba(245,182,56,.16); color: #f5b638; }
.dep-badge--approved { background: rgba(34,197,94,.16); color: #74e39b; }
.dep-badge--cancelled { background: rgba(224,107,107,.16); color: #f0a5a5; }

.dep-verify { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(0,0,0,.7); backdrop-filter: blur(3px); }
.dep-verify__box { max-width: 420px; width: 100%; text-align: center; background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 30px 26px; }
.dep-verify__icon { display: inline-flex; width: 60px; height: 60px; align-items: center; justify-content: center; border-radius: 16px; background: rgba(245,182,56,.14); color: #f5b638; margin-bottom: 14px; }
.dep-verify-card { max-width: 460px; margin: 0 auto; text-align: center; }
.dep-verify-card .dep-verify__icon { margin-bottom: 14px; }
.dep-verify__box h3, .dep-verify-card h3 { margin: 0 0 8px; font-size: 19px; }
.dep-verify__box p, .dep-verify-card p { margin: 0 0 16px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.dep-verify__list { list-style: none; margin: 0 0 20px; padding: 0; text-align: left; display: inline-block; }
.dep-verify__list li { font-size: 13.5px; color: var(--muted); padding: 4px 0; }
.dep-verify__list li.ok { color: #74e39b; }
.dep-verify__btn { width: 100%; height: 48px; }

/* ---------- SATIN ALMA (CHECKOUT / HESAP-KİTAP) MODALI ---------- */
.co-box { max-width: 440px; }
.co-loading { text-align: center; padding: 24px 0; color: var(--muted); }
.co-spin {
    display: inline-block; width: 30px; height: 30px; margin-bottom: 10px;
    border: 3px solid var(--border-soft); border-top-color: var(--primary);
    border-radius: 50%; animation: coSpin .8s linear infinite;
}
@keyframes coSpin { to { transform: rotate(360deg); } }
.co-prod { display: flex; align-items: center; gap: 12px; margin: 4px 0 16px; }
.co-prod__img {
    width: 52px; height: 52px; flex: none; border-radius: 10px;
    background: var(--card-2) center/cover no-repeat; border: 1px solid var(--border-soft);
}
.co-prod__name { font-weight: 700; font-size: 14.5px; line-height: 1.3; }
.co-prod__type { font-size: 12px; color: var(--muted); margin-top: 2px; }
.co-lines { border: 1px solid var(--border-soft); border-radius: 12px; padding: 6px 14px; margin-bottom: 14px; }
.co-line { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: 13.5px; color: var(--muted); border-bottom: 1px solid var(--border-soft); }
.co-line:last-child { border-bottom: 0; }
.co-line b { color: var(--text); font-size: 14px; }
.co-line--total b { color: var(--primary); font-size: 16px; }
.co-line--missing b { color: #ff6b6b; }
.co-feedback { margin-bottom: 14px; }
.co-feedback__head { font-size: 12px; font-weight: 700; letter-spacing: .3px; color: var(--muted-2); text-transform: uppercase; margin-bottom: 8px; }
.co-field { display: block; margin-bottom: 10px; }
.co-field span { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 5px; }
.co-field .input { margin-bottom: 0; }
.co-err { margin: 0 0 12px; font-size: 13px; color: #ff6b6b; text-align: center; }
.co-confirm { display: flex; align-items: center; justify-content: center; gap: 8px; }
.co-warn {
    display: flex; gap: 9px; align-items: flex-start; font-size: 13px; line-height: 1.5;
    color: #f6c453; background: rgba(245,182,56,.1); border: 1px solid rgba(245,182,56,.28);
    border-radius: 10px; padding: 11px 13px; margin-bottom: 12px;
}
.co-warn svg { flex: none; margin-top: 1px; }
.co-topup { display: flex; align-items: center; justify-content: center; gap: 8px; }
/* display:flex, [hidden] (display:none) kuralını ezdiği için gizlemeyi garanti et */
.co-line--missing[hidden], .co-confirm[hidden], .co-topup[hidden] { display: none; }

/* ---------- CLIENT: SİPARİŞ MERKEZİ ---------- */
.ord-list { display: flex; flex-direction: column; gap: 14px; }
.ord-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 16px; border-left: 3px solid var(--primary); }
.ord-card--pending { border-left-color: #f5b638; }
.ord-card--cancelled { border-left-color: #ff6b6b; opacity: .85; }
.ord-card__main { display: flex; align-items: center; gap: 14px; }
.ord-card__thumb { width: 58px; height: 58px; flex: none; border-radius: 10px; background: var(--card-2) center/cover no-repeat; border: 1px solid var(--border-soft); }
.ord-card__info { flex: 1 1 auto; min-width: 0; }
.ord-card__name { font-weight: 700; font-size: 15px; margin-bottom: 7px; }
.ord-card__meta { display: flex; flex-wrap: wrap; gap: 7px; }
.ord-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); background: var(--card-2); border: 1px solid var(--border-soft); border-radius: 7px; padding: 3px 9px; }
button.ord-chip { cursor: pointer; }
.ord-chip--code { color: var(--primary); }
.ord-chip.is-copied { color: #74e39b; border-color: #74e39b; }
.ord-card__right { flex: none; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.ord-card__amtlabel { font-size: 10.5px; letter-spacing: .5px; color: var(--muted-2); }
.ord-card__amt { font-size: 17px; font-weight: 800; color: var(--primary); }
.ord-badge { font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.ord-badge--ok { color: #74e39b; background: rgba(34,197,94,.14); }
.ord-badge--pending { color: #f5b638; background: rgba(245,182,56,.14); }
.ord-badge--cancel { color: #ff6b6b; background: rgba(255,107,107,.14); }
.ord-fb { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ord-fb__item { font-size: 12.5px; color: var(--muted); background: var(--card-2); border-radius: 7px; padding: 4px 9px; }
.ord-fb__item b { color: var(--text); }
.ord-delivery { margin-top: 14px; background: var(--card-2); border: 1px solid var(--border-soft); border-radius: 12px; padding: 12px 14px; }
.ord-delivery__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ord-delivery__head > span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .3px; color: var(--primary); }
.ord-delivery__copyall { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); background: var(--card); border: 1px solid var(--border-soft); border-radius: 7px; padding: 4px 10px; cursor: pointer; }
.ord-delivery__copyall.is-copied { color: #74e39b; border-color: #74e39b; }
.ord-delivery__code { display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--border-soft); border-radius: 9px; padding: 10px 12px; font-family: ui-monospace, monospace; font-size: 14px; word-break: break-all; }
.ord-delivery__copy { flex: none; background: none; border: 0; color: var(--muted); cursor: pointer; padding: 0; }
.ord-delivery__copy.is-copied { color: #74e39b; }
.ord-note { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; padding: 10px 13px; border-radius: 10px; line-height: 1.5; }
.ord-note svg { flex: none; }
.ord-note--wait { color: #f6c453; background: rgba(245,182,56,.09); border: 1px solid rgba(245,182,56,.22); }
.ord-note--cancel { color: #ff9b9b; background: rgba(255,107,107,.08); border: 1px solid rgba(255,107,107,.22); }
.ord-card__actions { display: flex; gap: 10px; margin-top: 14px; }
.ord-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; padding: 8px 15px; border-radius: 9px; border: 1px solid var(--border-soft); cursor: pointer; text-decoration: none; }
.ord-btn--ghost { color: var(--text); background: var(--card-2); }
.ord-btn--ghost:hover { border-color: var(--primary); }
.ord-btn--rate { color: #fff; background: var(--primary); border-color: var(--primary); }

@media (max-width: 640px) {
    .ord-card__main { flex-wrap: wrap; }
    .ord-card__right { align-items: flex-start; text-align: left; width: 100%; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---------- CLIENT: BAKİYE HAREKETLERİ ---------- */
.txn-summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: linear-gradient(120deg, color-mix(in srgb, var(--primary) 16%, var(--card)), var(--card)); border: 1px solid var(--border-soft); border-radius: 14px; padding: 16px 20px; margin-bottom: 16px; }
.txn-summary__label { font-size: 13px; color: var(--muted); }
.txn-summary__val { font-size: 22px; font-weight: 800; color: var(--primary); }
.txn-list { display: flex; flex-direction: column; }
.txn-row { display: flex; align-items: center; gap: 13px; padding: 13px 2px; border-bottom: 1px solid var(--border-soft); }
.txn-row:last-child { border-bottom: 0; }
.txn-row__icon { flex: none; width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.txn-row__icon--in { color: #74e39b; background: rgba(34,197,94,.13); }
.txn-row__icon--out { color: #ff8f8f; background: rgba(255,107,107,.12); }
.txn-row__body { flex: 1 1 auto; min-width: 0; }
.txn-row__label { display: block; font-weight: 600; font-size: 14px; }
.txn-row__desc { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.txn-row__right { flex: none; text-align: right; }
.txn-row__amt { display: block; font-weight: 700; font-size: 14.5px; }
.txn-row__amt.is-in { color: #74e39b; }
.txn-row__amt.is-out { color: #ff8f8f; }
.txn-row__date { display: block; font-size: 11.5px; color: var(--muted-2); margin-top: 2px; }

/* ---------- CLIENT: BAKİYE KUPONU ---------- */
.cpn-card { text-align: center; }
.cpn-hero__icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; margin: 4px auto 12px; border-radius: 50%; color: var(--primary); background: color-mix(in srgb, var(--primary) 15%, transparent); }
.cpn-hero h3 { margin: 0 0 6px; font-size: 18px; }
.cpn-hero p { margin: 0 0 20px; color: var(--muted); font-size: 13.5px; }
.cpn-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.cpn-input { flex: 1; text-align: center; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 0; }
.cpn-btn { flex: none; white-space: nowrap; }
.cpanel-empty--sm { padding: 22px 16px; }
.cpanel-empty--sm p { margin: 0; color: var(--muted); }
.cpn-history { display: flex; flex-direction: column; }
.cpn-hrow { display: flex; align-items: center; gap: 12px; padding: 11px 2px; border-bottom: 1px solid var(--border-soft); font-size: 13.5px; }
.cpn-hrow:last-child { border-bottom: 0; }
.cpn-hrow__code { display: inline-flex; align-items: center; gap: 6px; font-family: ui-monospace, monospace; font-weight: 600; }
.cpn-hrow__date { color: var(--muted-2); margin-left: auto; font-size: 12px; }
.cpn-hrow__amt { color: #74e39b; font-weight: 700; }

/* ---------- CLIENT: BLOKELİ BAKİYE ---------- */
.blk-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.blk-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 18px 20px; border-left: 3px solid #f5b638; }
.blk-card--muted { border-left-color: var(--primary); }
.blk-card__label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.blk-card__val { display: block; font-size: 24px; font-weight: 800; }
.blk-card .blk-card__val { color: #f5b638; }
.blk-card--muted .blk-card__val { color: var(--primary); }
.blk-info { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; font-size: 13px; line-height: 1.6; color: var(--muted); background: var(--card-2); border: 1px solid var(--border-soft); border-radius: 12px; padding: 14px 16px; }
.blk-info svg { flex: none; color: var(--primary); margin-top: 1px; }

/* ---------- CLIENT: REFERANS / SATTIĞIM İLANLAR ---------- */
.ref-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 16px; }
.ref-stat { background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 18px; text-align: center; }
.ref-stat__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: 10px; border-radius: 12px; color: var(--primary); background: color-mix(in srgb, var(--primary) 13%, transparent); }
.ref-stat__val { display: block; font-size: 22px; font-weight: 800; }
.ref-stat__label { display: block; font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.ref-code { margin-bottom: 16px; }
.ref-code__label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 7px; }
.ref-code__box { display: flex; align-items: center; gap: 10px; background: var(--card-2); border: 1px dashed color-mix(in srgb, var(--primary) 40%, var(--border-soft)); border-radius: 10px; padding: 10px 10px 10px 16px; }
.ref-code__val { flex: 1; font-family: ui-monospace, monospace; font-size: 18px; font-weight: 800; letter-spacing: 2px; color: var(--primary); }
.ref-copy { flex: none; background: var(--card); border: 1px solid var(--border-soft); border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--text); cursor: pointer; }
.ref-copy:hover { border-color: var(--primary); }
.ref-link { display: flex; gap: 10px; }
.ref-link .input { flex: 1; margin-bottom: 0; font-size: 13px; color: var(--muted); }
.ref-link__btn { flex: none; white-space: nowrap; }
.ref-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ref-step { display: flex; gap: 12px; align-items: flex-start; }
.ref-step__no { flex: none; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; background: var(--primary); }
.ref-step b { display: block; font-size: 14px; margin-bottom: 3px; }
.ref-step p { margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.5; }

@media (max-width: 640px) {
    .blk-cards, .ref-stats, .ref-steps { grid-template-columns: 1fr; }
    .cpn-form, .ref-link { flex-direction: column; }
}

/* ---------- CLIENT: DESTEK SİSTEMİ ---------- */
.tk-back { display: inline-flex; align-items: center; gap: 5px; margin-bottom: 14px; font-size: 13px; color: var(--muted); text-decoration: none; }
.tk-back:hover { color: var(--text); }
.tk-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--border-soft); }
.tk-head__subj { font-weight: 700; font-size: 16px; }
.tk-head__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 5px; font-size: 12.5px; color: var(--muted); }
.tk-code { font-family: ui-monospace, monospace; color: var(--primary); }
.tk-cat { background: var(--card-2); border: 1px solid var(--border-soft); border-radius: 6px; padding: 1px 8px; }
.tk-badge { flex: none; font-size: 11.5px; font-weight: 700; padding: 3px 11px; border-radius: 999px; height: fit-content; }
.tk-badge--open { color: #74e39b; background: rgba(34, 197, 94, .15); }
.tk-badge--closed { color: var(--muted-2); background: var(--card-2); }

.tk-thread { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.tk-msg { max-width: 80%; padding: 11px 14px; border-radius: 12px; }
.tk-msg__who { font-size: 11.5px; color: var(--muted-2); margin-bottom: 4px; }
.tk-msg__body { font-size: 14px; line-height: 1.6; color: var(--text); }
.tk-msg--user { align-self: flex-end; background: color-mix(in srgb, var(--primary) 15%, var(--card-2)); border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent); border-bottom-right-radius: 4px; }
.tk-msg--admin { align-self: flex-start; background: var(--card-2); border: 1px solid var(--border-soft); border-bottom-left-radius: 4px; }

.tk-reply { border-top: 1px solid var(--border-soft); padding-top: 16px; }
.tk-reply .input { margin-bottom: 12px; }
.tk-reply__actions { display: flex; align-items: center; gap: 12px; }
.tk-closebtn { background: none; border: 0; color: #ef6b6b; font-size: 13px; font-weight: 600; cursor: pointer; }
.tk-closebtn:hover { text-decoration: underline; }
.tk-closed-note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); background: var(--card-2); border: 1px solid var(--border-soft); border-radius: 10px; padding: 12px 14px; }
.tk-closed-note svg { flex: none; color: var(--muted-2); }
.tk-openwarn { }

.tk-list { display: flex; flex-direction: column; }
.tk-row { display: flex; align-items: center; gap: 13px; padding: 13px 4px; border-bottom: 1px solid var(--border-soft); text-decoration: none; color: inherit; }
.tk-row:last-child { border-bottom: 0; }
.tk-row:hover { background: rgba(255, 255, 255, .02); }
.tk-row__icon { flex: none; width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--muted); background: var(--card-2); }
.tk-row__info { flex: 1 1 auto; min-width: 0; }
.tk-row__subj { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 7px; }
.tk-row__meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.tk-newdot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex: none; }

/* ---------- OYUNCU PAZARI (çok yakında) ---------- */
.pazar { padding: 40px 0 60px; }
.pazar-hero {
    text-align: center; max-width: 760px; margin: 0 auto 40px;
    padding: 44px 28px; border-radius: 22px;
    background: radial-gradient(120% 120% at 50% -20%, color-mix(in srgb, var(--primary) 22%, transparent), transparent 60%), linear-gradient(160deg, #15161d, #0d0d10);
    border: 1px solid var(--border-soft);
}
.pazar-badge {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
    padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .5px;
    color: var(--primary); background: color-mix(in srgb, var(--primary) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
}
.pazar-badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 0 var(--primary); animation: pazarPulse 1.6s infinite; }
@keyframes pazarPulse {
    0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 60%, transparent); }
    70% { box-shadow: 0 0 0 8px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.pazar-hero__icon {
    display: flex; align-items: center; justify-content: center;
    width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 24px;
    color: var(--primary); background: color-mix(in srgb, var(--primary) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
}
.pazar-hero__title { font-size: 30px; line-height: 1.2; margin: 0 0 16px; }
.pazar-hero__lead { font-size: 15px; line-height: 1.8; color: var(--muted); margin: 0 auto 26px; max-width: 620px; }
.pazar-hero__lead b { color: var(--text); }
.pazar-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.pazar-feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto 28px; }
.pazar-feat { background: var(--card); border: 1px solid var(--border-soft); border-radius: 16px; padding: 22px 20px; text-align: center; transition: border-color .15s, transform .15s; }
.pazar-feat:hover { border-color: color-mix(in srgb, var(--primary) 45%, transparent); transform: translateY(-3px); }
.pazar-feat__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin-bottom: 14px; border-radius: 14px; color: var(--primary); background: color-mix(in srgb, var(--primary) 13%, transparent); }
.pazar-feat__title { font-size: 15px; margin: 0 0 8px; }
.pazar-feat__sub { font-size: 13px; line-height: 1.6; color: var(--muted); margin: 0; }

.pazar-note { display: flex; align-items: flex-start; gap: 10px; max-width: 1000px; margin: 0 auto; padding: 14px 18px; border-radius: 12px; font-size: 13.5px; line-height: 1.6; color: var(--muted); background: var(--card-2); border: 1px solid var(--border-soft); }
.pazar-note svg { flex: none; color: var(--primary); margin-top: 1px; }

@media (max-width: 860px) { .pazar-feats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .pazar-feats { grid-template-columns: 1fr; } .pazar-hero__title { font-size: 24px; } }

/* ============================================================
   MOBİL UYUMLULUK — header hamburger + drawer + panel/içerik
   ============================================================ */
.nav-toggle { display: none; }

/* Off-canvas mobil menü (yalnızca hamburger ile açılır) */
.mdrawer { position: fixed; inset: 0; z-index: 300; visibility: hidden; opacity: 0; transition: opacity .2s ease, visibility .2s ease; }
.mdrawer.is-open { visibility: visible; opacity: 1; }
.mdrawer__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.mdrawer__panel {
    position: absolute; top: 0; left: 0; bottom: 0;
    width: 300px; max-width: 84vw;
    background: var(--bg-header); border-right: 1px solid var(--border-soft);
    padding: 14px; overflow-y: auto;
    display: flex; flex-direction: column;
    transform: translateX(-100%); transition: transform .25s ease;
}
.mdrawer.is-open .mdrawer__panel { transform: translateX(0); }
.mdrawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mdrawer__close { background: none; border: 0; color: var(--muted); font-size: 30px; line-height: 1; cursor: pointer; padding: 0 4px; }
.mdrawer__search { position: relative; display: flex; align-items: center; margin-bottom: 12px; }
.mdrawer__search svg { position: absolute; left: 12px; color: var(--muted-2); }
.mdrawer__search input { width: 100%; height: 44px; background: var(--input); border: 1px solid var(--border); border-radius: 10px; color: var(--text); padding: 0 12px 0 40px; font-size: 14px; outline: none; }
.mdrawer__search input:focus { border-color: var(--primary); }
.mdrawer__user { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; background: linear-gradient(180deg, rgba(34, 197, 94, .14), rgba(34, 197, 94, 0)); border: 1px solid var(--border-soft); margin-bottom: 10px; }
.mdrawer__avatar { width: 42px; height: 42px; border-radius: 11px; overflow: hidden; flex: none; }
.mdrawer__avatar img { width: 100%; height: 100%; object-fit: cover; }
.mdrawer__uname { display: block; font-weight: 700; font-size: 14px; }
.mdrawer__ubal { display: block; font-size: 13px; font-weight: 700; color: var(--primary); }
.mdrawer__wallet { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 6px; }
.mdrawer__wallet .wbtn { justify-content: center; height: 42px; font-size: 13px; }
.mdrawer__auth { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 6px; }
.mdrawer__auth .btn { height: 44px; }
.mdrawer__label { font-size: 11px; font-weight: 700; letter-spacing: .5px; color: var(--muted-2); text-transform: uppercase; margin: 14px 6px 4px; }
.mdrawer__nav { display: flex; flex-direction: column; }
.mdrawer__link { display: flex; align-items: center; gap: 11px; padding: 11px 10px; border-radius: 9px; color: var(--muted); font-size: 14px; font-weight: 500; }
.mdrawer__link svg { color: var(--muted-2); flex: none; }
.mdrawer__link:hover, .mdrawer__link:active { background: var(--card-2); color: var(--text); }
.mdrawer__link--admin { color: var(--primary); }
.mdrawer__link--logout { color: #f0a5a5; }
.mdrawer__catico { width: 26px; height: 26px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; flex: none; overflow: hidden; }
.mdrawer__catico img { width: 18px; height: 18px; object-fit: contain; }

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex; align-items: center; justify-content: center;
        width: 42px; height: 42px; border-radius: 10px; flex: none;
        background: var(--card-2); border: 1px solid var(--border-soft); color: var(--text); cursor: pointer;
    }
    .topbar { display: none; }
    .catbar { display: none; }
    .header__inner { height: 62px; gap: 12px; }
    .header .search { display: none; }
    .header .btn--add { display: none; }
    .header__user .hicon { display: none; }
    .header__user { margin-left: auto; gap: 6px; }
    .uchip { padding: 4px; margin-left: 0; }
    .uchip__meta, .uchip__caret { display: none; }
    .udrop--rich { min-width: 82vw; right: -6px; }
    .brand__name { font-size: 18px; }
    .brand__logo { height: 30px; }

    /* Üye paneli: sidebar üstte, menü yatay kaydırmalı */
    .client { grid-template-columns: 1fr; gap: 16px; padding-top: 18px; }
    .client__sidebar { position: static; top: auto; }
    .csb__nav { display: flex; flex-direction: row; overflow-x: auto; gap: 8px; padding: 12px; -webkit-overflow-scrolling: touch; }
    .csb__label { display: none; }
    .csb__item { flex: none; white-space: nowrap; padding: 9px 13px; border-radius: 9px; background: var(--card-2); }
    .csb__item.is-active { background: rgba(34, 197, 94, .14); }
    .csb__item--logout { background: rgba(224, 107, 107, .1); }
}

@media (max-width: 560px) {
    .container { padding-left: 14px; padding-right: 14px; }
    .header__auth { gap: 8px; }
    .header__auth .btn { padding: 0 13px; height: 38px; font-size: 12.5px; }
    .brand__name { font-size: 16px; }
    .section { padding-top: 26px; }
    .section__head h2 { font-size: 20px; }
    .cpanel-head h2 { font-size: 19px; }
    .hero-slide__title { font-size: 22px !important; }
    .pd-title { font-size: 21px; }
    .pd-hero { padding: 16px; }
    .modal__box { padding: 20px 18px; }
}

/* ---------- ARAMA SAYFASI ---------- */
.srch { padding: 30px 0 60px; }
.srch-hero { text-align: center; max-width: 680px; margin: 0 auto 26px; }
.srch-hero__title { font-size: 26px; margin: 0 0 18px; }
.srch-hero__form { display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 8px 8px 8px 16px; }
.srch-hero__form svg { color: var(--muted-2); flex: none; }
.srch-hero__form input { flex: 1; height: 44px; background: none; border: 0; outline: none; color: var(--text); font-size: 15px; min-width: 0; }
.srch-hero__form .btn { flex: none; height: 44px; }
.srch-count { font-size: 14px; color: var(--muted); margin: 0 0 16px; }
.srch-count b { color: var(--text); }
@media (max-width: 560px) { .srch-hero__title { font-size: 21px; } .srch-hero__form { flex-wrap: wrap; } .srch-hero__form input { flex: 1 1 100%; } .srch-hero__form .btn { flex: 1; } }

/* ---------- FAVORİ (kalp) ---------- */
.fav-btn { flex: none; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--card-2); border: 1px solid var(--border-soft); color: var(--muted-2); cursor: pointer; transition: color .15s, border-color .15s, background .15s; }
.fav-btn:hover { color: #ff6b6b; border-color: rgba(255, 107, 107, .4); }
.fav-btn.is-fav { color: #ff5b6b; background: rgba(255, 107, 107, .12); border-color: rgba(255, 107, 107, .4); }

/* ---------- ÜRÜN YORUMLARI ---------- */
.pd-stars { color: #f5b638; letter-spacing: 1px; font-size: 13px; white-space: nowrap; }
.pd-stars span { opacity: .28; }
.pd-stars span.on { opacity: 1; }
.pd-stars--lg { font-size: 20px; }
.pd-revsum { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--card-2); border: 1px solid var(--border-soft); border-radius: 12px; margin-bottom: 18px; }
.pd-revsum__avg { font-size: 34px; font-weight: 800; color: var(--text); line-height: 1; }
.pd-revsum__meta { display: flex; flex-direction: column; gap: 4px; }
.pd-revsum__count { font-size: 13px; color: var(--muted); }
.pd-revform { background: var(--card-2); border: 1px solid var(--border-soft); border-radius: 12px; padding: 16px; margin-bottom: 20px; }
.pd-revform__title { font-weight: 700; margin-bottom: 10px; color: var(--text); }
.pd-revform textarea { margin: 10px 0; }
.pd-rate { display: flex; gap: 4px; margin-bottom: 4px; }
.pd-rate__star { background: none; border: 0; font-size: 26px; line-height: 1; color: var(--muted-2); opacity: .4; cursor: pointer; padding: 0; transition: color .1s, opacity .1s; }
.pd-rate__star.on { color: #f5b638; opacity: 1; }
.pd-revnote { padding: 10px 0; }
.pd-revnote a { color: var(--primary); text-decoration: underline; }
.pd-revlist { display: flex; flex-direction: column; gap: 16px; }
.pd-rev { display: flex; gap: 12px; }
.pd-rev__av { flex: none; width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--card); }
.pd-rev__av img { width: 100%; height: 100%; object-fit: cover; }
.pd-rev__main { flex: 1; min-width: 0; }
.pd-rev__top { display: flex; align-items: center; gap: 10px; }
.pd-rev__name { font-weight: 600; font-size: 14px; color: var(--text); }
.pd-rev__date { font-size: 12px; color: var(--muted-2); margin-top: 1px; }
.pd-rev__text { margin: 6px 0 0; font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- KAPAK FOTOĞRAFI ---------- */
.cover-prev { height: 180px; border-radius: 12px; background: var(--card-2) center/cover no-repeat; border: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: center; }
.cover-prev__empty { color: var(--muted-2); font-size: 14px; }
.form-hint { display: block; font-size: 12px; color: var(--muted-2); margin-top: 6px; }
.dash-cover { height: 150px; border-radius: 14px; background: var(--card-2) center/cover no-repeat; border: 1px solid var(--border-soft); margin-bottom: 16px; }

/* ---------- MAĞAZA PAKETLERİ ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pkg-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: 16px; padding: 26px 20px; text-align: center; position: relative; }
.pkg-card--pop { border-color: var(--primary); }
.pkg-card__tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #06210f; font-size: 11px; font-weight: 800; padding: 3px 12px; border-radius: 999px; }
.pkg-card__name { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.pkg-card__price { font-size: 30px; font-weight: 800; color: var(--primary); margin-bottom: 18px; }
.pkg-card__price span { font-size: 13px; color: var(--muted); font-weight: 500; }
.pkg-card__feats { list-style: none; margin: 0 0 18px; padding: 0; text-align: left; display: flex; flex-direction: column; gap: 9px; }
.pkg-card__feats li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.pkg-card__feats svg { color: var(--primary); flex: none; }
.pkg-card__btn { width: 100%; }

/* ---------- İLETİŞİM SAYFASI ---------- */
.ilt { padding: 30px 0 60px; }
.ilt-hero { text-align: center; max-width: 620px; margin: 0 auto 28px; }
.ilt-hero__title { font-size: 28px; margin: 0 0 12px; }
.ilt-hero__lead { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 12px; }
.ilt-hours { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent); border-radius: 999px; padding: 5px 14px; }
.ilt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin-bottom: 16px; }
.ilt-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px; padding: 22px 18px; background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px; transition: border-color .15s, transform .15s; }
.ilt-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.ilt-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; margin-bottom: 8px; color: var(--primary); background: color-mix(in srgb, var(--primary) 13%, transparent); }
.ilt-card__label { font-size: 12.5px; color: var(--muted); }
.ilt-card__val { font-size: 14.5px; font-weight: 700; color: var(--text); word-break: break-word; }
.ilt-addr { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px; margin-bottom: 16px; }
.ilt-addr__text { font-size: 14px; color: var(--muted); line-height: 1.6; margin-top: 4px; }
.ilt-support { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 22px; background: linear-gradient(120deg, color-mix(in srgb, var(--primary) 14%, var(--card)), var(--card)); border: 1px solid var(--border-soft); border-radius: 14px; }
.ilt-support__title { font-weight: 700; font-size: 16px; margin-bottom: 3px; }
.ilt-support__sub { font-size: 13.5px; color: var(--muted); margin: 0; }

@media (max-width: 760px) { .pkg-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ilt-support { flex-direction: column; align-items: flex-start; } .pd-revsum__avg { font-size: 28px; } }

/* ---------- STATİK/KURUMSAL SAYFA ---------- */
.spage { padding: 24px 0 60px; }
.spage-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: 16px; padding: 30px 34px; max-width: 900px; }
.spage__title { font-size: 26px; margin: 0 0 6px; }
.spage__meta { font-size: 12.5px; color: var(--muted-2); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border-soft); }
.spage__body { background: none; border: 0; padding: 0; }
.spage__body h2 { color: var(--text); font-size: 19px; margin: 22px 0 10px; }
.spage__body h3 { color: var(--text); font-size: 16px; margin: 18px 0 8px; }
.spage__body p { margin: 0 0 14px; }
.spage__body ul, .spage__body ol { margin: 0 0 14px; padding-left: 22px; }
.spage__body li { margin-bottom: 6px; }
.spage__body a { color: var(--primary); text-decoration: underline; }
@media (max-width: 560px) { .spage-card { padding: 22px 18px; } .spage__title { font-size: 21px; } }
