/* ============================================================
   Checkout — sade/premium koyu tema. Cok renkli gradyan yok,
   glow yok, blur yok; renk yalnizca anlam tasidigi yerde
   (altin=fiyat/CTA, mavi=ikincil, yesil=guven, kirmizi/mor=rarity).
   ============================================================ */
* { box-sizing: border-box; }

.order-body {
    --bg: #060a12;
    --surface: #101622;
    --surface-2: #151d2c;
    --line: rgba(255, 255, 255, 0.08);
    --gold: #f5c451;
    --blue: #4ca7ff;
    --ok: #3ecf8e;
    --ink: #eef2f8;
    --ink-dim: #9aa7bd;
    --ink-faint: #64718a;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.5);

    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, Manrope, "Segoe UI", system-ui, sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.shell { max-width: 1120px; margin: 0 auto; padding: 18px 16px 96px; position: relative; z-index: 1; }
@media (min-width: 900px) { .shell { max-width: 1320px; padding-bottom: 48px; } }

/* --- Arka plan line-art: sayfa konteynerinde absolute, icerigin altinda --- */
.bg-art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}
.bg-abs2-m { display: none; }
@media (max-width: 899px) {
    .bg-abs2 { display: none; }
    .bg-abs2-m { display: block; }
}

/* --- Akis cizgileri: sabit ana cizgi + ayni path'te akan parlak bolum --- */
.runner2 {
    stroke-dasharray: 80 320;
    animation: lineRun var(--dur, 13s) linear var(--del, 0s) infinite;
}
@keyframes lineRun {
    from { stroke-dashoffset: 400; }
    to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .runner2 { animation: none; opacity: 0; }
}

/* --- Giris animasyonu (tek seferlik, transform+opacity) --- */
@keyframes riseIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.rise { animation: riseIn 0.4s ease-out both; animation-delay: calc(var(--d, 0) * 70ms); }
@media (prefers-reduced-motion: reduce) {
    .rise { animation: none; }
    .order-body * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* --- Ust bar: ince --- */
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 2px 2px 16px; }
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    min-height: 44px;
    padding: 0 10px 0 4px;
    margin-left: -4px;
    border-radius: var(--r-sm);
    transition: color 0.16s ease-out;
}
.back-link svg { width: 15px; height: 15px; }
.back-link:hover { color: var(--ink); }
.wordmark { font-size: 0.8rem; font-weight: 800; letter-spacing: 2.5px; color: var(--gold); }
.wordmark em { font-style: normal; color: var(--ink-faint); font-weight: 700; }

/* --- Duzen: masaustunde vitrin + 340px ray, ust kenarlar hizali --- */
.layout { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 900px) {
    .layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 20px; align-items: start; }
    .col-main { order: 1; }
    .rail { order: 2; position: sticky; top: 20px; }
}
/* mobil sira: once fiyat karti, sonra vitrin */
@media (max-width: 899px) {
    .rail { order: 1; }
    .col-main { order: 2; }
    .layout { display: flex; }
}
.col-main { display: flex; flex-direction: column; gap: 16px; min-width: 0; }

/* --- Kart temeli --- */
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    transition: transform 0.18s ease-out, border-color 0.18s ease-out;
}
@media (hover: hover) {
    .card:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.14); }
}

/* ============ VITRIN ============ */
.showcase { padding: 16px; }
@media (min-width: 900px) { .showcase { padding: 20px; } }

/* Ic duzen: solda kaynak paneli, sagda kahraman izgarasi */
.sc-wrap { display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 900px) {
    .sc-wrap { flex-direction: row; gap: 18px; align-items: flex-start; }
    .res-panel {
        width: 198px;
        flex-shrink: 0;
        padding-right: 18px;
        border-right: 1px solid var(--line);
    }
}

.sc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    contain: content;
    flex: 1;
    min-width: 0;
}
@media (min-width: 560px) { .sc-grid { grid-template-columns: repeat(6, 1fr); } }
@media (min-width: 900px) { .sc-grid { grid-template-columns: repeat(8, 1fr); } }
.sc-tile {
    aspect-ratio: 0.82;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: var(--surface-2);
    border: 2px solid #3c465a;
    transition: transform 0.18s ease-out, border-color 0.18s ease-out;
}
.sc-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sc-tile.g6 { border-color: #e2453e; }
.sc-tile.g5 { border-color: var(--gold); }
.sc-tile.g4 { border-color: #a45ee5; }
.sc-tile.g3 { border-color: #4a7fd6; }
@media (hover: hover) {
    .sc-tile:hover { transform: scale(1.025); }
}

/* --- Kaynak paneli: buton degil, envanter/istatistik satirlari.
       Renk yalnizca kucuk baslik metninde (accent); ikon ciplak, hafif golge. --- */
.res-title {
    margin: 0 0 4px;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ink-faint);
}
.res-list { list-style: none; margin: 0 0 16px; padding: 0; }
.res-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}
.res-row + .res-row { border-top: 1px solid var(--line); }
.res-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.45));
}
.res-icon-em {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
}
.res-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.res-name {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ink-faint);
}
.res-val { font-size: 1.08rem; font-weight: 700; color: #fff; letter-spacing: 0.2px; }
.res-row.tone-gold .res-name { color: var(--gold); }
.res-row.tone-blue .res-name { color: var(--blue); }
.res-row.tone-green .res-name { color: var(--ok); }
.res-row.tone-silver .res-name { color: #93a4be; }
.res-row.tone-red .res-name { color: #f3948f; }

/* --- Tome'lar: ciplak ikon + kose rozeti; rarity rengi yalnizca rozet kenarinda --- */
.tome-row { display: flex; gap: 14px; flex-wrap: wrap; padding: 6px 2px 2px; }
.tome { position: relative; width: 40px; height: 40px; flex-shrink: 0; }
.tome img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.45));
}
.tome .res-icon-em { width: 100%; height: 100%; font-size: 1.7rem; }
.tome-count {
    position: absolute;
    right: -8px;
    bottom: -6px;
    min-width: 20px;
    height: 18px;
    padding: 0 5px;
    border-radius: 6px;
    background: #0b0f18;
    border: 1px solid var(--line);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tome.tone-blue .tome-count { border-color: rgba(76, 167, 255, 0.6); color: #9cccff; }
.tome.tone-purple .tome-count { border-color: rgba(164, 94, 229, 0.6); color: #d0a8f5; }
.tome.tone-gold .tome-count { border-color: rgba(245, 196, 81, 0.6); color: var(--gold); }
.tome.tone-red .tome-count { border-color: rgba(226, 69, 62, 0.6); color: #f3948f; }

/* Mobil: izgara once, panel altta; kaynaklar 2 sutun */
@media (max-width: 899px) {
    .res-panel {
        order: 2;
        border-top: 1px solid var(--line);
        padding-top: 14px;
    }
    .sc-grid { order: 1; }
    .res-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 12px;
        margin-bottom: 12px;
    }
    .res-row + .res-row { border-top: none; }
    .res-row { padding: 8px 0; }
}

/* ============ FIYAT KARTI (ray) ============
   Daha guclu kontrast: koyu #111827 kart, #182235 ic yuzeyler,
   ustte mavi-altin accent cizgisi. Blur/glassmorphism yok. */
.rail {
    position: relative;
    overflow: hidden;
    padding: 21px 18px 16px;
    background: #111827;
    border-color: rgba(255, 255, 255, 0.12);
}
.rail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
}
.rail-chips { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.site-chip {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #3ddba4;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(62, 207, 142, 0.5);
    padding: 6px 11px;
    border-radius: var(--r-sm);
}
.code-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "SF Mono", "Cascadia Code", Consolas, monospace;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--ink);
    background: #0b1220;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 32px;
    padding: 4px 11px;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: border-color 0.16s ease-out, color 0.16s ease-out;
}
.code-chip svg { color: var(--ink-faint); transition: color 0.16s ease-out; }
.code-chip:hover { border-color: var(--gold); }
.code-chip:hover svg { color: var(--gold); }
.code-copied { display: none; color: var(--ok); }
.code-chip.copied { border-color: var(--ok); }
.code-chip.copied .code-text { display: none; }
.code-chip.copied .code-copied { display: inline; }
.code-chip.copied svg { color: var(--ok); }

/* Fiyat: kartin en guclu odagi — tam genislik, hafif altin tonlu yuzey */
.price-block {
    background: linear-gradient(135deg, rgba(245, 196, 81, 0.12), rgba(245, 196, 81, 0.03)), #182235;
    border: 1px solid rgba(245, 196, 81, 0.22);
    border-radius: var(--r-md);
    padding: 12px 14px;
    margin-bottom: 14px;
}
.price-label {
    display: block;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 3px;
}
.price-value {
    display: flex;
    align-items: baseline;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fdf8ec;
}
.price-dec { font-size: 1.35rem; font-weight: 800; }
.price-value em { font-style: normal; font-size: 0.76rem; font-weight: 700; color: var(--ink-faint); margin-left: 7px; letter-spacing: 0.5px; }

/* Gercek indirim satiri: eski fiyat ustu cizili + gercek yuzde rozeti —
   asagidaki price-value zaten indirimli tutari gosterir (sahte degil). */
.price-row-was { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.price-was-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink-faint);
    text-decoration: line-through;
    text-decoration-color: rgba(243, 148, 143, 0.65);
}
.price-badge-lg {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--ok);
    background: rgba(62, 207, 142, 0.12);
    border: 1px solid rgba(62, 207, 142, 0.35);
    border-radius: 6px;
    padding: 2px 7px;
    letter-spacing: 0.2px;
}

/* Mini-stat kutulari: esit genislik, ince renkli ust kenar */
.mini-stats {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
}
.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    background: #182235;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 2px solid var(--line);
    border-radius: 10px;
    padding: 9px 4px 8px;
    min-width: 0;
}
.mini-stat.tone-blue { border-top-color: var(--blue); }
.mini-stat.tone-gold { border-top-color: var(--gold); }
.mini-stat.tone-purple { border-top-color: #a45ee5; }
.mini-stat.tone-red { border-top-color: #e2453e; }
.ms-num { font-size: 1.15rem; font-weight: 800; color: #fff; line-height: 1.15; }
.ms-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--ink-dim);
    white-space: nowrap;
}

/* Guven satirlari: kucuk yesil ikon kutusu + yuksek kontrastli metin */
.trust-list { list-style: none; margin: 0 0 16px; padding: 0; }
.trust-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}
.trust-list li:last-child { border-bottom: none; }
.trust-ico {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.13);
    border: 1px solid rgba(62, 207, 142, 0.28);
    color: #3ddba4;
}
.trust-ico svg { width: 16px; height: 16px; }
.trust-text { font-size: 0.83rem; font-weight: 500; color: #dbe4f0; }
.trust-text strong { color: var(--gold); font-weight: 700; }

.rail-actions { display: flex; flex-direction: column; gap: 9px; }
.rail-actions form { margin: 0; }
.rail-note { margin: 4px 0 0; font-size: 0.75rem; color: var(--ink-faint); line-height: 1.5; }
.rail-note.ok { color: var(--ok); font-weight: 600; }

/* Satin alma butonlari: iki satirli, ikonlu */
.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    min-height: 52px;
    padding: 9px 16px;
    border-radius: var(--r-md);
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: transform 0.18s ease-out, border-color 0.18s ease-out, background-color 0.18s ease-out;
}
.btn-buy > svg { width: 19px; height: 19px; flex-shrink: 0; }
.bb-text { display: flex; flex-direction: column; gap: 1px; }
.bb-title { font-size: 0.94rem; font-weight: 800; line-height: 1.2; }
.bb-sub { font-size: 0.67rem; font-weight: 600; line-height: 1.2; }
.btn-buy-primary {
    background: linear-gradient(180deg, #f8ce6a, #f0b93c);
    border: 1px solid #f0b93c;
    color: #241c07;
}
.btn-buy-primary .bb-sub { color: rgba(36, 28, 7, 0.68); }
.btn-buy-primary:hover { background: linear-gradient(180deg, #fad884, #f4c455); transform: translateY(-1px); }
.btn-buy-secondary {
    background: #191d33;
    border: 1px solid rgba(88, 101, 242, 0.55);
    color: #fff;
}
.btn-buy-secondary .bb-sub { color: #a5aec7; }
.btn-buy-secondary .ic-discord { color: #8b96f5; }
.btn-buy-secondary:hover { border-color: rgba(120, 131, 245, 0.8); background: #1d2240; transform: translateY(-1px); }
.btn-buy:active { transform: scale(0.98); }

/* Alt guven notu */
.rail-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 14px 0 0;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-faint);
    text-align: center;
}
.rail-secure svg { width: 13px; height: 13px; flex-shrink: 0; }

/* --- Butonlar --- */
.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: var(--r-md);
    font-size: 0.92rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.16s ease-out, border-color 0.16s ease-out, background 0.16s ease-out;
}
.btn-primary {
    background: linear-gradient(180deg, #f8ce6a, #f0b93c);
    border: 1px solid #f0b93c;
    color: #241c07;
}
.btn-primary:hover { background: linear-gradient(180deg, #fad884, #f4c455); }
.btn-secondary {
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--ink);
}
.btn-secondary:hover { border-color: rgba(88, 101, 242, 0.6); }
.btn-secondary .ic-discord { width: 18px; height: 18px; color: #7289da; }
.btn-primary:active, .btn-secondary:active { transform: scale(0.98); }
.btn-primary:focus-visible, .btn-secondary:focus-visible, .btn-buy:focus-visible,
.cta:focus-visible, .btn-copy:focus-visible, .code-chip:focus-visible,
.pm-card:has(input:focus-visible) {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

/* --- Mobil sticky satin alma bari --- */
.buybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: var(--surface);
    border-top: 1px solid var(--line);
}
.buybar-main { flex: 1; }
.buybar .btn-icon { width: 52px; padding: 12px; }
@media (min-width: 900px) { .buybar { display: none; } }

/* ============ AKIS PANELLERI ============ */
.panel { padding: 20px 16px; }
@media (min-width: 900px) { .panel { padding: 24px 22px; } }
.panel-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.panel h1 { margin: 0 0 6px; font-size: 1.25rem; font-weight: 800; letter-spacing: -0.01em; }
.sub { color: var(--ink-dim); font-size: 0.87rem; line-height: 1.55; margin: 0 0 18px; }
.sub-tight { margin-bottom: 0; }
.sub strong { color: var(--ink); }
.micro-label {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin: 0 0 8px;
}
h2.micro-label { margin-top: 22px; }

/* --- Ilerleme --- */
.progress { padding: 2px 2px 0; }
.progress-track { height: 3px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; background: var(--gold); transition: width 0.4s ease-out; }
.progress-labels { display: flex; justify-content: space-between; margin-top: 7px; }
.p-step { font-size: 0.7rem; font-weight: 700; color: var(--ink-faint); }
.p-step.now { color: var(--ink); }
.p-step.done { color: var(--ok); }

/* --- Odeme yontemi kartlari --- */
.pm-group-label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin: 4px 0 8px;
}
.pm-group-label + .pm-list { margin-bottom: 18px; }
.pm-list { display: grid; gap: 8px; }
@media (min-width: 560px) { .pm-list { grid-template-columns: 1fr 1fr; } }
.pm-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 11px 13px;
    cursor: pointer;
    min-height: 62px;
    transition: border-color 0.16s ease-out, transform 0.16s ease-out;
}
.pm-card input { position: absolute; opacity: 0; pointer-events: none; }
@media (hover: hover) {
    .pm-card:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.18); }
}
.pm-card:has(input:checked) { border-color: var(--gold); }
.pm-tile {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--pm-color, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--line);
}
.pm-tile img { width: 19px; height: 19px; display: block; }
.pm-tile-lg { width: 46px; height: 46px; }
.pm-tile-lg img { width: 24px; height: 24px; }
.pm-text { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.pm-label { font-size: 0.88rem; font-weight: 700; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pm-hint { font-size: 0.72rem; color: var(--ink-dim); }
.pm-reco {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0b2d20;
    background: var(--ok);
    padding: 2px 6px;
    border-radius: 6px;
}
.pm-radio {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid var(--ink-faint);
    flex-shrink: 0;
    transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out;
}
.pm-card:has(input:checked) .pm-radio {
    border-color: var(--gold);
    box-shadow: inset 0 0 0 4px var(--gold);
}

/* --- CTA --- */
.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 18px;
    min-height: 48px;
    padding: 13px;
    border: 1px solid var(--gold);
    border-radius: var(--r-md);
    background: var(--gold);
    color: #201a08;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.16s ease-out, transform 0.16s ease-out;
}
.cta:hover:not(:disabled) { background: #f8d075; }
.cta:active:not(:disabled) { transform: scale(0.98); }
.cta:disabled {
    background: var(--surface-2);
    border-color: var(--line);
    color: var(--ink-faint);
    cursor: not-allowed;
}

/* --- Odeme detayi --- */
.pay-header { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.pay-header h1 { margin-bottom: 2px; }
.crypto-panel { display: flex; gap: 18px; align-items: flex-start; }
.crypto-qr { border-radius: var(--r-md); background: #fff; padding: 8px; flex-shrink: 0; }
.crypto-col { flex: 1; min-width: 0; }
.copy-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 8px 8px 8px 13px;
    margin-bottom: 12px;
}
.payment-address {
    flex: 1;
    align-self: center;
    font-family: "SF Mono", "Cascadia Code", Consolas, monospace;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold);
    word-break: break-all;
}

/* --- Teslimat kanali karti: segment secici + tema uyumlu input --- */
.dm-seg {
    display: inline-flex;
    gap: 4px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    margin: 4px 0 14px;
}
.dm-opt { position: relative; }
.dm-opt input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.dm-opt span {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-dim);
    transition: background 0.16s ease-out, color 0.16s ease-out;
}
.dm-opt input:checked + span { background: var(--gold); color: #201503; }
.dm-opt input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 2px; }
.dm-row { display: flex; gap: 10px; }
.dm-input {
    flex: 1;
    min-width: 0;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 12px 15px;
    color: var(--ink);
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out;
}
.dm-input::placeholder { color: var(--ink-faint); }
.dm-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245, 196, 81, 0.14); }
.dm-save {
    background: var(--gold);
    color: #201503;
    border: 0;
    border-radius: var(--r-md);
    padding: 0 24px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    min-height: 44px;
    transition: filter 0.16s ease-out;
}
.dm-save:hover { filter: brightness(1.08); }
.btn-copy {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--ink);
    border-radius: var(--r-sm);
    padding: 10px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    min-height: 44px;
    transition: border-color 0.16s ease-out, background 0.16s ease-out, color 0.16s ease-out;
}
.btn-copy:hover { border-color: var(--gold); color: var(--gold); }
.btn-copy.copied { background: var(--ok); border-color: var(--ok); color: #0b2d20; }
.btn-copy.copied span::after { content: " ✓"; }
.callout {
    color: #f0b183;
    background: rgba(226, 138, 62, 0.08);
    border: 1px solid rgba(226, 138, 62, 0.25);
    border-radius: var(--r-sm);
    padding: 10px 13px;
    font-size: 0.81rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 8px;
}

/* --- Dropzone --- */
.dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.14);
    border-radius: var(--r-md);
    background: var(--bg);
    padding: 26px 16px;
    color: var(--ink-dim);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.16s ease-out, color 0.16s ease-out;
}
.dropzone svg { width: 24px; height: 24px; color: var(--ink-faint); }
.dropzone:hover, .dropzone.drag-over { border-color: var(--gold); color: var(--gold); }
.dropzone:hover svg, .dropzone.drag-over svg { color: var(--gold); }
.dropzone.has-file { border-style: solid; border-color: var(--ok); color: var(--ok); }
.dropzone.has-file svg { color: var(--ok); }
.dropzone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

/* --- Onay --- */
.confirm-icon { color: var(--ok); margin-bottom: 10px; }
.confirm-icon svg { width: 50px; height: 50px; }
.order-ref {
    margin-top: 8px;
    font-size: 0.76rem;
    color: var(--ink-faint);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 7px 13px;
}
.order-ref code { color: var(--ink-dim); font-weight: 700; }

/* --- Mobil ayarlar --- */
@media (max-width: 559px) {
    .rail, .showcase, .panel { padding: 14px; }
    .crypto-panel { flex-direction: column; align-items: center; }
    .crypto-col { width: 100%; }
    .copy-row { flex-direction: column; padding: 12px; }
    .payment-address { text-align: center; }
    .btn-copy { justify-content: center; width: 100%; }
    .price-value { font-size: 1.8rem; }
}


/* Sadece-Discord akisi: buton Discord-mavi ve belirgin (2026-07-26) */
.btn-buy-discord {
    background: linear-gradient(160deg, #5865F2 0%, #4752c4 100%) !important;
    border: 1px solid rgba(120, 131, 245, 0.75) !important;
    color: #fff !important;
    white-space: nowrap;
}
.btn-buy-discord:hover { filter: brightness(1.06); }
.btn-buy-discord .bb-title { color: #fff !important; }
.btn-buy-discord .bb-sub { color: rgba(255, 255, 255, 0.82) !important; }
.btn-buy-discord .ic-discord { color: #fff !important; }


/* ===== BAYI STOK ROZETI ==========================================
   Odeme akisinin en ustunde. Uc durum: var / yok / bilinmiyor. */
.stok-rozet {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    margin-bottom: 16px;
    border-radius: 14px;
    border: 1px solid;
    background: var(--sr-bg, rgba(45, 212, 191, 0.07));
    border-color: var(--sr-cizgi, rgba(45, 212, 191, 0.3));
}
.stok-rozet .sr-ikon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sr-cizgi);
    color: var(--sr-renk);
}
.stok-rozet .sr-ikon svg { width: 23px; height: 23px; }
.stok-rozet .sr-metin { flex: 1 1 auto; min-width: 0; line-height: 1.4; }
.stok-rozet .sr-metin strong {
    display: block;
    font-size: 0.98rem;
    color: var(--sr-renk);
    letter-spacing: 0.01em;
}
.stok-rozet .sr-metin span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-dim, #9aa4c4);
}
.stok-rozet .sr-nabiz {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    color: var(--sr-renk);
    opacity: 0.85;
}
.stok-rozet .sr-nabiz i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sr-renk);
    animation: sr-nabiz 1.9s ease-in-out infinite;
}
@keyframes sr-nabiz {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--sr-cizgi); }
    50% { opacity: 0.55; box-shadow: 0 0 0 6px transparent; }
}
.sr-var { --sr-renk: #2dd4bf; --sr-cizgi: rgba(45, 212, 191, 0.22);
          --sr-bg: rgba(45, 212, 191, 0.07); }
.sr-yok { --sr-renk: #f87171; --sr-cizgi: rgba(248, 113, 113, 0.22);
          --sr-bg: rgba(248, 113, 113, 0.08); }
.sr-bilinmiyor { --sr-renk: #9aa4c4; --sr-cizgi: rgba(154, 164, 196, 0.18);
                 --sr-bg: rgba(154, 164, 196, 0.06); }
.sr-yok .sr-nabiz, .sr-bilinmiyor .sr-nabiz i { animation: none; }
.sr-yok .sr-nabiz { display: none; }
@media (max-width: 560px) {
    .stok-rozet .sr-nabiz { display: none; }
    .stok-rozet { padding: 12px 14px; gap: 11px; }
}


/* ===== ALT KATALOG DONUSU ========================================
   Uzun siparis sayfasinda ustteki geri linki ekran disinda kaliyor. */
.alt-geri {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 14px;
    margin: 22px 0 6px;
    padding: 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}
.alt-geri-bag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text, #eef0f3);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.alt-geri-bag svg { width: 17px; height: 17px; }
.alt-geri-bag:hover {
    border-color: var(--accent, #f0b429);
    color: var(--accent, #f0b429);
    background: rgba(240, 180, 41, 0.07);
}
.alt-geri-not {
    font-size: 0.79rem;
    color: var(--text-faint, #6f7999);
}
@media (max-width: 520px) {
    .alt-geri { flex-direction: column; gap: 9px; }
}


/* Odeme yontemini degistir — alt geri baglantisinin yanindaki ikinci
   eylem. Ayni gorsel agirlikta ki biri digerini bastirmasin. */
.yontem-degistir {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text, #eef0f3);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.yontem-degistir svg { width: 16px; height: 16px; }
.yontem-degistir:hover {
    border-color: var(--accent, #f0b429);
    color: var(--accent, #f0b429);
    background: rgba(240, 180, 41, 0.07);
}
