/* ==========================================================================
   Entegre Kargo — Tasarım Sistemi
   Renkler logodan piksel örneklemesiyle ölçüldü (project.md §13.2).
   ========================================================================== */

:root {
  /* Marka — ölçülen değer #F6041B.
     Beyaz üzerinde 4.24:1 verir; normal boy metin için WCAG AA'yı GEÇMEZ.
     Bu yüzden iki ayrı token: dekoratif kullanım vs. metin/buton. */
  --brand:         #F6041B;   /* yalnız büyük başlık, ikon, dekoratif alan */
  --brand-ui:      #E00A1E;   /* arayüz vurgusu */
  --brand-strong:  #C00516;   /* metin + buton zemini — beyazla 6.4:1 ✅ */
  --brand-dark:    #8E040F;
  --brand-tint:    #FFF1F2;
  --brand-tint-2:  #FFE0E3;

  --ink:           #14181F;
  --ink-2:         #3A3A3A;   /* logodaki gri */
  --muted:         #5A6472;
  --line:          #E3E7EC;
  --surface:       #FFFFFF;
  --surface-2:     #F7F8FA;
  --surface-3:     #EEF1F5;

  --success:       #0E7C4A;
  --success-tint:  #E7F5EE;
  --warning:       #B45309;
  --warning-tint:  #FEF3E2;
  --danger:        #C00516;
  --danger-tint:   #FFF1F2;

  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(20, 24, 31, .06);
  --shadow:    0 4px 16px rgba(20, 24, 31, .08);
  --shadow-lg: 0 12px 40px rgba(20, 24, 31, .12);

  --wrap: 1140px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }

a { color: var(--brand-strong); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Klavye kullanıcısı için görünür odak — asla kaldırılmaz */
:focus-visible {
  outline: 3px solid var(--brand-ui);
  outline-offset: 2px;
  border-radius: 4px;
}

img, svg { max-width: 100%; height: auto; display: block; }

/* Tutar/takip no gibi sayısal alanlar hizalı görünsün */
.num { font-variant-numeric: tabular-nums; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brand-strong); color: #fff; padding: .75rem 1.25rem;
}
.skip:focus { left: 0; }

/* ---------- Başlık ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; height: 68px; }
.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo img { width: 40px; height: 40px; border-radius: 8px; }
.logo b { font-size: 1.05rem; letter-spacing: -.02em; color: var(--ink); }
.logo b span { color: var(--brand-strong); }

.nav { display: flex; gap: .25rem; margin-left: auto; align-items: center; }
.nav a {
  color: var(--ink); padding: .5rem .8rem; border-radius: var(--radius-sm);
  font-size: .94rem; font-weight: 500;
}
.nav a:hover { background: var(--surface-2); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--brand-strong); background: var(--brand-tint); }

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: .5rem .7rem; cursor: pointer;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.3rem; border-radius: var(--radius-sm);
  font-size: .96rem; font-weight: 600; font-family: inherit;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background .15s, border-color .15s, transform .05s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

/* Zemin brand-strong: beyaz yazıyla 6.4:1 — küçük boyda da AA geçer */
.btn-primary { background: var(--brand-strong); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface-2); }

.btn-light { background: #fff; color: var(--brand-strong); }
.btn-light:hover { background: var(--brand-tint); }

.btn-lg { padding: .95rem 1.8rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, #fff 0%, var(--brand-tint) 60%, var(--brand-tint-2) 100%);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero h1 { margin-bottom: 1rem; }
.hero p.lead { font-size: 1.13rem; color: var(--muted); max-width: 46ch; margin-bottom: 1.75rem; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--brand-tint-2); color: var(--brand-strong);
  padding: .4rem .85rem; border-radius: 999px;
  font-size: .82rem; font-weight: 600; margin-bottom: 1.25rem;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }

/* ---------- Kartlar ---------- */
.section { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section-head { max-width: 60ch; margin-bottom: 2.5rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
}
.card-hover { transition: box-shadow .18s, border-color .18s; }
.card-hover:hover { box-shadow: var(--shadow); border-color: var(--brand-tint-2); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin: 0; font-size: .96rem; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--brand-tint); color: var(--brand-strong);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.icon-badge svg { width: 24px; height: 24px; }

/* ---------- Adımlar ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: s; }
.step { position: relative; padding-top: 3rem; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; top: 0; left: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand-strong); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 1rem;
}
.step h3 { font-size: 1.02rem; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- Formlar ---------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.field .hint { color: var(--muted); font-size: .85rem; margin-top: .35rem; }

.input, .select, .textarea {
  width: 100%; padding: .72rem .9rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit; color: var(--ink); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--brand-ui);
  box-shadow: 0 0 0 3px var(--brand-tint-2);
}
.input[aria-invalid="true"] { border-color: var(--danger); }

.field-error { color: var(--danger); font-size: .87rem; margin-top: .35rem; font-weight: 500; }

.check { display: flex; gap: .65rem; align-items: flex-start; font-size: .92rem; }
.check input { margin-top: .28rem; width: 17px; height: 17px; accent-color: var(--brand-strong); flex-shrink: 0; }

fieldset { border: 0; padding: 0; margin: 0 0 1.1rem; }
legend { font-weight: 600; font-size: .9rem; margin-bottom: .5rem; padding: 0; }

.radio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.radio-card {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem 1rem; cursor: pointer; display: flex; gap: .6rem; align-items: center;
  font-size: .94rem; font-weight: 500;
}
.radio-card:has(input:checked) { border-color: var(--brand-ui); background: var(--brand-tint); }
.radio-card input { accent-color: var(--brand-strong); }

/* ---------- Uyarı kutuları ---------- */
.alert {
  padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  border: 1px solid; margin-bottom: 1.25rem; font-size: .94rem;
  display: flex; gap: .7rem; align-items: flex-start;
}
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: var(--success-tint); border-color: #B9E2CD; color: #0A5C37; }
.alert-error   { background: var(--danger-tint);  border-color: #F7C6CB; color: #8E040F; }
.alert-warning { background: var(--warning-tint); border-color: #F6D9AC; color: #8A4008; }
.alert-info    { background: var(--surface-2);    border-color: var(--line); color: var(--ink); }
.alert a { color: inherit; text-decoration: underline; }

/* ---------- Panel ---------- */
.panel-shell { display: grid; grid-template-columns: 250px 1fr; min-height: calc(100vh - 68px); }
.panel-side { background: var(--surface-2); border-right: 1px solid var(--line); padding: 1.5rem 1rem; }
.panel-side nav { display: flex; flex-direction: column; gap: .2rem; }
.panel-side nav a {
  color: var(--ink); padding: .6rem .8rem; border-radius: var(--radius-sm);
  font-size: .94rem; font-weight: 500; display: flex; align-items: center; gap: .6rem;
}
.panel-side nav a svg { width: 18px; height: 18px; color: var(--muted); }
.panel-side nav a:hover { background: #fff; text-decoration: none; }
.panel-side nav a[aria-current="page"] { background: #fff; color: var(--brand-strong); box-shadow: var(--shadow-sm); }
.panel-side nav a[aria-current="page"] svg { color: var(--brand-strong); }

.panel-main { padding: 2rem; min-width: 0; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.panel-head h1 { font-size: 1.65rem; margin: 0; }

.balance-card {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand-dark));
  color: #fff; border-radius: var(--radius); padding: 1.75rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.balance-card .label { font-size: .87rem; opacity: .9; margin-bottom: .25rem; }
.balance-card .amount { font-size: 2.4rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; }

/* ---------- Tablo ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: .93rem; }
thead th {
  text-align: left; padding: .8rem 1rem; background: var(--surface-2);
  font-size: .82rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted); font-weight: 600; white-space: nowrap;
}
tbody td { padding: .85rem 1rem; border-top: 1px solid var(--line); }
tbody tr:hover { background: var(--surface-2); }

.tag {
  display: inline-block; padding: .18rem .55rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600;
}
.tag-credit { background: var(--success-tint); color: #0A5C37; }
.tag-debit  { background: var(--danger-tint);  color: #8E040F; }

.amount-credit { color: var(--success); font-weight: 600; }
.amount-debit  { color: var(--danger);  font-weight: 600; }

/* ---------- Boş durum ---------- */
.empty { text-align: center; padding: 3rem 1.5rem; }
.empty svg { width: 68px; height: 68px; margin: 0 auto 1rem; color: var(--surface-3); }
.empty h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.empty p { color: var(--muted); font-size: .94rem; margin-bottom: 1.25rem; }

/* ---------- Giriş/kayıt ---------- */
.auth-shell { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-side {
  background: linear-gradient(160deg, var(--brand-strong), var(--brand-dark));
  color: #fff; padding: 3rem; display: flex; flex-direction: column; justify-content: center;
}
.auth-side h2 { color: #fff; font-size: 1.9rem; }
.auth-side ul { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: .9rem; }
.auth-side li { display: flex; gap: .7rem; align-items: flex-start; font-size: .97rem; }
.auth-side li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.auth-main { display: grid; place-items: center; padding: 2.5rem 1.5rem; }
.auth-box { width: 100%; max-width: 430px; }

/* ---------- Alt bilgi ---------- */
.site-footer { background: var(--ink); color: #C3CAD4; padding: 3rem 0 1.75rem; margin-top: 4rem; font-size: .92rem; }
.site-footer h4 { color: #fff; font-size: .87rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .9rem; }
.site-footer a { color: #C3CAD4; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-bottom {
  border-top: 1px solid #2A3038; margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: #8C96A3; font-size: .87rem;
}

/* ---------- Yardımcılar ---------- */
.stack   { display: grid; gap: 1.25rem; }
.row     { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.mt-0 { margin-top: 0 } .mb-0 { margin-bottom: 0 }
.mt-2 { margin-top: 1.5rem } .mb-2 { margin-bottom: 1.5rem }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Duyarlı ---------- */
@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .steps, .footer-grid, .auth-shell, .radio-cards {
    grid-template-columns: 1fr;
  }
  .hero-art { display: none; }
  .auth-side { display: none; }
  .panel-shell { grid-template-columns: 1fr; }
  .panel-side { border-right: 0; border-bottom: 1px solid var(--line); padding: 1rem; }
  .panel-side nav { flex-direction: row; overflow-x: auto; }
  .panel-main { padding: 1.25rem; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 1rem; gap: .25rem;
  }
  .nav-toggle { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

@media print {
  .site-header, .site-footer, .panel-side, .btn { display: none !important; }
}

/* ---------- Ödeme yöntemleri şeridi (banka POS denetimi için zorunlu) ---------- */
.pay-strip {
  margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid #2A3038;
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.pay-label {
  color: #8C96A3; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .06em; font-weight: 600;
}
.pay-marks {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: .6rem; flex-wrap: wrap; align-items: center;
}
.pay-marks li { display: flex; }
.pay-marks svg { border-radius: 5px; }

/* Ödeme sayfasındaki açık zeminli kullanım */
.pay-strip--light { border-top-color: var(--line); margin-top: 1.5rem; padding-top: 1.25rem; }
.pay-strip--light .pay-label { color: var(--muted); }

@media (max-width: 600px) {
  .pay-strip { gap: .85rem; }
  .pay-marks { gap: .45rem; }
}

/* ---------- Yasal metin gövdesi ---------- */
.legal-body { max-width: 68ch; }
.legal-body h2 { font-size: 1.15rem; margin-top: 2rem; margin-bottom: .6rem; }
.legal-body h3 { font-size: 1rem; margin-top: 1.5rem; margin-bottom: .4rem; }
.legal-body p, .legal-body li { color: var(--ink); font-size: .96rem; }
.legal-body ul, .legal-body ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-body li { margin-bottom: .4rem; }
.legal-body dl { margin: 0 0 1rem; }
.legal-body dt { font-weight: 600; margin-top: .75rem; }
.legal-body dd { margin: .2rem 0 0; color: var(--muted); }
@media (max-width: 900px) {
  .legal-body { max-width: none; }
  .section .grid-2[style*="230px"] { grid-template-columns: 1fr !important; }
  .section nav.card { position: static !important; }
}

/* Logo: kaynak JPG kare ve çevresinde beyaz boşluk var.
   Kırpılmış kapta ölçekleyerek marka işaretini görünür boyuta getiriyoruz.
   Firmadan vektörel (SVG) logo geldiğinde bu kural kaldırılacak. */
.logo img {
  object-fit: cover;
  transform: scale(1.42);
  transform-origin: center;
}
.logo { overflow: hidden; }
.logo > img { border-radius: 8px; }
.site-header .logo, .site-footer .logo { overflow: visible; }
.site-header .logo img, .site-footer .logo img {
  clip-path: inset(14% round 8px);
}

/* ==========================================================================
   Yönetim paneli — üye panelinden bilinçli olarak farklı: koyu kenar çubuğu,
   daha yoğun bilgi, daha küçük tipografi. Yanlış panelde olduğunu anlamak kolay.
   ========================================================================== */
.admin-shell { display: grid; grid-template-columns: 216px 1fr; min-height: 100vh; }

.admin-side {
  background: #14181F; color: #C3CAD4;
  display: flex; flex-direction: column; padding: 1rem .75rem;
}
.admin-brand {
  display: flex; align-items: center; gap: .55rem;
  color: #fff; font-weight: 700; font-size: .95rem;
  padding: .4rem .5rem 1rem; text-decoration: none;
}
.admin-brand img { border-radius: 6px; clip-path: inset(14% round 6px); transform: scale(1.42); }
.admin-side nav { display: flex; flex-direction: column; gap: .1rem; }
.admin-side nav a {
  color: #C3CAD4; padding: .5rem .65rem; border-radius: 7px;
  font-size: .88rem; display: flex; align-items: center; gap: .6rem; text-decoration: none;
}
.admin-side nav a:hover { background: #1F252E; color: #fff; }
.admin-side nav a[aria-current="page"] { background: var(--brand-strong); color: #fff; }
.admin-side-foot {
  margin-top: auto; padding: 1rem .65rem 0; border-top: 1px solid #2A3038;
  font-size: .78rem; word-break: break-all;
}
.admin-side-foot a { color: #C3CAD4; }

.link-btn {
  background: none; border: 0; padding: 0; color: #C3CAD4;
  font: inherit; cursor: pointer; text-decoration: underline;
}
.link-btn:hover { color: #fff; }

.admin-main { padding: 1.5rem 1.75rem 3rem; min-width: 0; background: var(--surface-2); }
.admin-main h1 { font-size: 1.4rem; }
.admin-main h2 { font-size: 1.05rem; margin-top: 1.75rem; }
.admin-main .card { background: #fff; }
.admin-main table { font-size: .86rem; }
.admin-main thead th { font-size: .74rem; }
.admin-main tbody td { padding: .6rem .8rem; }

/* Gösterge kutuları */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .85rem; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem; }
.kpi .label { font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.kpi .value { font-size: 1.55rem; font-weight: 700; letter-spacing: -.02em; margin-top: .2rem; }
.kpi .sub   { font-size: .78rem; color: var(--muted); margin-top: .15rem; }
.kpi.accent { border-color: var(--brand-tint-2); background: var(--brand-tint); }
.kpi.accent .value { color: var(--brand-strong); }

/* Filtre çubuğu */
.filters { display: flex; gap: .5rem; flex-wrap: wrap; align-items: flex-end; margin-bottom: 1rem; }
.filters .field { margin: 0; }
.filters .input, .filters .select { padding: .45rem .6rem; font-size: .87rem; }
.filters label { font-size: .78rem; }

/* Basit çubuk grafik — kütüphane yok */
.bars { display: flex; align-items: flex-end; gap: 4px; height: 90px; }
.bars > div { flex: 1; background: var(--brand-tint-2); border-radius: 3px 3px 0 0; min-height: 2px; position: relative; }
.bars > div.has-value { background: var(--brand-strong); }

.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .8rem; }

.pill { display: inline-block; padding: .1rem .45rem; border-radius: 5px; font-size: .74rem; font-weight: 600; }
.pill-on  { background: var(--success-tint); color: #0A5C37; }
.pill-off { background: var(--surface-3); color: var(--muted); }

@media (max-width: 900px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { flex-direction: row; align-items: center; gap: .5rem; overflow-x: auto; padding: .6rem; }
  .admin-side nav { flex-direction: row; }
  .admin-side-foot { display: none; }
  .admin-main { padding: 1rem; }
}

/* ---------- Para birimi bakiye şeritleri ---------- */
.balance-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.balance-chip {
  display: flex; flex-direction: column; gap: .1rem;
  padding: .7rem 1rem; min-width: 140px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
a.balance-chip:hover { border-color: var(--brand-tint-2); box-shadow: var(--shadow-sm); text-decoration: none; }
.balance-chip.is-active { border-color: var(--brand-ui); background: var(--brand-tint); }
.balance-chip .cur {
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  color: var(--muted); text-transform: uppercase;
}
.balance-chip.is-active .cur { color: var(--brand-strong); }
.balance-chip .amt { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }

/* Para birimi seçim düğmeleri (yükleme formu) */
.cur-picker { display: flex; gap: .4rem; flex-wrap: wrap; }
.cur-picker a {
  padding: .45rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; color: var(--ink); text-decoration: none;
}
.cur-picker a:hover { background: var(--surface-2); text-decoration: none; }
.cur-picker a[aria-current="page"] {
  background: var(--brand-strong); border-color: var(--brand-strong); color: #fff;
}
