:root {
  --bg: #f4f3f0;
  --card: #ffffff;
  --ink: #1b1b1b;
  --muted: #6f6b64;
  --line: #e3e0da;
  --accent: #a8442a;
  --accent-ink: #ffffff;
  --ok: #1f7a4d;
  --warn: #9a6a1a;
  --danger: #8a1c14;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(0,0,0,.05), 0 8px 24px rgba(0,0,0,.06);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 0 64px;
  background: var(--bg);
  color: var(--ink);
  font: 15px/1.6 Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wrap { max-width: 780px; margin: 0 auto; padding: 0 16px; }

/* --- Bağlantı yok şeridi --- */
.offlinebar {
  position: sticky; top: 0; z-index: 60;
  background: var(--warn);
  color: #ffffff;
  text-align: center;
  padding: 9px 14px;
  font-size: 13.5px;
}

/* --- Üst çubuk --- */
.topbar {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; }
.brand {
  display: flex; align-items: center; gap: 9px;
  color: var(--accent); text-decoration: none;
}
.brand b { font-size: 17px; color: var(--ink); letter-spacing: -.01em; }
.bar-right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.who { font-size: 13px; color: var(--muted); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  margin-bottom: 16px;
}

h2 { font-size: 15px; margin: 0 0 4px; font-weight: 700; }
.hint { font-size: 13px; color: var(--muted); margin: 0 0 14px; }

label { display: block; font-size: 13px; font-weight: 700; margin: 14px 0 5px; }
input, textarea, select {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg); color: var(--ink);
  font: 14px/1.5 inherit;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
textarea { resize: vertical; min-height: 96px; }

button {
  padding: 10px 18px; border: 0; border-radius: 8px;
  background: var(--accent); color: var(--accent-ink);
  font: 700 14px inherit; cursor: pointer;
  transition: filter .15s;
}
button:hover { filter: brightness(1.1); }
button:disabled { opacity: .5; cursor: default; }
button.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
button.small { padding: 7px 12px; font-size: 13px; }
button.danger { background: transparent; color: var(--danger); border: 1px solid var(--line); }

.row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.spread { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.grow { flex: 1; }

.stat { display: flex; gap: 26px; flex-wrap: wrap; }
.stat div span { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.stat div b { font-size: 21px; font-weight: 800; }

.badge {
  display: inline-block; padding: 2px 9px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid var(--line);
}
.badge.draft { color: var(--warn); }
.badge.auto { color: var(--ok); }

.q { border-top: 1px solid var(--line); padding: 16px 0; }
.q:first-of-type { border-top: 0; }
.q .ask { font-size: 14px; margin: 0 0 4px; }
.q .meta { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.q textarea { min-height: 78px; }
.q .why {
  font-size: 12px; color: var(--warn);
  margin: 8px 0 0; display: flex; gap: 6px; align-items: flex-start;
}

.msg { padding: 11px 14px; border-radius: 8px; font-size: 13.5px; margin-bottom: 14px; }
.msg.err { background: color-mix(in srgb, var(--danger) 10%, transparent); color: var(--danger); }
.msg.ok { background: color-mix(in srgb, var(--ok) 12%, transparent); color: var(--ok); }

.empty { text-align: center; padding: 34px 0; color: var(--muted); font-size: 14px; }
.hide { display: none !important; }
.foot { text-align: center; font-size: 12px; color: var(--muted); padding: 8px 0 0; }

/* ---- Ücretsiz pilot bandı ---- */
.pilot-band {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  padding: 26px 0;
}
.pilot-band b { display: block; font-size: 17px; margin-bottom: 8px; }
.pilot-band p { font-size: 14px; color: var(--muted); margin: 0 0 16px; max-width: 68ch; line-height: 1.65; }

/* ---- SSS ---- */
/* --- Satıcı yorumları --- */
.reviews { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.review {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.review-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.review-top b { font-size: 15px; }
.review-stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; white-space: nowrap; }
.review blockquote { margin: 0; font-size: 14.5px; line-height: 1.6; }
.review figcaption { font-size: 12.5px; color: var(--muted); }

.faq-item { border-bottom: 1px solid var(--line); padding: 14px 0; }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 14.5px;
  list-style: none; display: flex; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-weight: 800; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { font-size: 14px; color: var(--muted); margin: 10px 0 0; max-width: 72ch; line-height: 1.7; }

/* ---- Ekran görüntüleri ---- */
.shots { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 20px; }
.shots figure { margin: 0; }
.shots img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line); border-radius: 10px; background: var(--card);
}
.shots figcaption { font-size: 12.5px; color: var(--muted); margin-top: 9px; line-height: 1.5; }
@media (max-width: 720px) { .shots { grid-template-columns: 1fr; } }

/* ---- Karşılama (ilk mağaza bağlanana kadar) ---- */
.welcome {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); padding: 22px; margin-bottom: 18px;
}
.welcome > b { display: block; font-size: 16px; margin-bottom: 6px; }
.welcome > p { font-size: 14px; color: var(--muted); margin: 0 0 18px; max-width: 66ch; }
.wsteps { list-style: none; margin: 0 0 18px; padding: 0; }
.wsteps li { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; }
.wsteps li:last-child { margin-bottom: 0; }
.wsteps h3 { font-size: 14px; margin: 1px 0 4px; }
.wsteps p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ---- Pilot kodu kutusu ---- */
.pilot-box {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 6%, var(--card));
  padding: 18px; margin-bottom: 18px;
}
.pilot-box > b { display: block; font-size: 15px; margin-bottom: 5px; }
.pilot-box > p { font-size: 13.5px; color: var(--muted); margin: 0 0 14px; max-width: 62ch; }

/* ---- İki adımlı doğrulama ---- */
.tfa-box {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); padding: 18px; margin: 14px 0;
}
.tfa-secret { font-size: 15px; letter-spacing: .08em; padding: 8px 12px; display: inline-block; }
.tfa-codes {
  background: var(--bg); border-radius: 8px; padding: 14px 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px;
}
.tfa-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px; letter-spacing: .05em;
}

/* ---- Altbilgi: iletişim ve yasal metinler ---- */
.sitefoot {
  margin-top: 56px; border-top: 1px solid var(--line);
  background: var(--bg); padding: 32px 0 22px;
}
.footgrid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 28px; align-items: start;
}
.footbrand { display: block; font-size: 15px; margin-bottom: 8px; }
.foothead { display: block; font-size: 13px; margin-bottom: 10px; }
.footline { font-size: 12.5px; color: var(--muted); margin: 0 0 6px; line-height: 1.6; max-width: 42ch; }
.footlist { list-style: none; margin: 0; padding: 0; }
.footlist li { font-size: 12.5px; color: var(--muted); margin-bottom: 7px; line-height: 1.5; }
.footlist a { text-decoration: none; }
.footlist a:hover { text-decoration: underline; }
.footlist.gate { margin: 14px 0 18px; }
.footlist.gate li { font-size: 14px; margin-bottom: 9px; }
.footnote {
  text-align: center; font-size: 11.5px; color: var(--muted);
  margin: 26px 0 0; padding-top: 16px; border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .footgrid { grid-template-columns: 1fr; gap: 22px; }
}
code { background: var(--bg); padding: 1px 6px; border-radius: 4px; font-size: 13px; }
a { color: var(--accent); }


/* ======================= GİRİŞ SAYFASI (kartsız) ======================= */

.hero-band {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 1px 1px, rgba(22,103,74,.14) 1px, transparent 0) 0 0/22px 22px,
    linear-gradient(180deg, #eef1ee 0%, var(--bg) 100%);
}
.hero { display: flex; align-items: center; gap: 40px; padding: 46px 16px 52px; }
.hero-text { flex: 1; min-width: 0; }
.hero-art { flex: none; }
.hero-art svg { max-width: 100%; height: auto; }

.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 14px;
}
.hero h1 {
  font-size: 36px; line-height: 1.14; margin: 0 0 16px;
  font-weight: 800; letter-spacing: -.02em; max-width: 15ch;
}
.lede { font-size: 16px; color: var(--muted); margin: 0 0 24px; max-width: 58ch; }

/* Bağlandığımız pazaryerleri şeridi */
.logo-band { border-bottom: 1px solid var(--line); background: var(--card); padding: 26px 0; }
.strip-title {
  font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 14px;
}
.logos { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
/* Logolar resmi hâlleriyle duruyor: yeniden renklendirilmiyor, oranı bozulmuyor. */
img.mk { height: 26px; width: auto; }
/* Logosu çoğaltılmayan platformlar metin olarak yazılıyor. Görsel ağırlığı
   logolarla aynı hizada dursun diye aynı yüksekliğe ve soluk tona alındı. */
.mk-text {
  height: 26px; display: inline-flex; align-items: center;
  font-size: 17px; font-weight: 700; letter-spacing: -.01em;
  color: var(--muted); opacity: .85; white-space: nowrap;
}
.strip-note  { font-size: 13px; color: var(--muted); margin: 16px 0 0; max-width: 70ch; }
.strip-legal { font-size: 11.5px; color: var(--muted); margin: 8px 0 0; max-width: 78ch; opacity: .8; }

.band { padding: 34px 16px; border-bottom: 1px solid var(--line); }
.band h2 { font-size: 21px; font-weight: 800; letter-spacing: -.01em; margin: 0 0 12px; }
.band .body { font-size: 15px; color: var(--muted); margin: 0; max-width: 72ch; }

.steps { list-style: none; margin: 0; padding: 0; }
.steps li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.steps li:last-child { margin-bottom: 0; }
.steps h3 { font-size: 15.5px; margin: 2px 0 5px; font-weight: 700; }
.steps p { font-size: 14px; color: var(--muted); margin: 0; max-width: 66ch; }
.num {
  flex: none; width: 27px; height: 27px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}

.pairs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 34px; }
.pairs h3 { font-size: 15px; margin: 0 0 5px; font-weight: 700; }
.pairs p { font-size: 14px; color: var(--muted); margin: 0; }

.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.price { border: 1px solid var(--line); border-radius: 10px; padding: 20px 18px; text-align: center; background: var(--card); }
.price b { font-size: 17px; letter-spacing: -.01em; }
.price .amount { margin-top: 10px; font-weight: 800; font-size: 30px; letter-spacing: -.02em; color: var(--accent); }
.price .count { margin-top: 8px; font-size: 13px; color: var(--muted); }

.cta-band { background: var(--accent); color: var(--accent-ink); padding: 44px 16px; text-align: center; }
.cta-band h2 { font-size: 23px; margin: 0 0 8px; font-weight: 800; }
.cta-band p { margin: 0 0 20px; opacity: .9; font-size: 15px; }
.cta-band button { background: var(--card); color: var(--accent); }

/* ======================= OTURUM İÇİ (sol menü) ======================= */

.panel {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px;
}
.narrow { max-width: 430px; margin: 34px auto; }

.shell { display: flex; gap: 22px; align-items: flex-start; padding-top: 26px; }

.side {
  flex: none; width: 214px; position: sticky; top: 18px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 10px;
}
.side nav { display: flex; flex-direction: column; gap: 2px; }
.navitem {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 11px; border-radius: 8px; border: 0;
  background: transparent; color: var(--ink);
  font: 600 14px inherit; text-align: left; cursor: pointer;
}
.navitem svg { flex: none; color: var(--muted); }
.navitem span { flex: 1; }
.navitem:hover { background: var(--bg); filter: none; }
.navitem.on { background: var(--accent); color: var(--accent-ink); }
.navitem.on svg { color: var(--accent-ink); }
.count {
  font-size: 11px; font-weight: 800; padding: 1px 7px; border-radius: 999px;
  background: var(--warn); color: #ffffff;
}
.side-foot {
  border-top: 1px solid var(--line); margin-top: 8px; padding: 12px 11px 6px;
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em;
}
.side-foot b { font-size: 20px; color: var(--ink); letter-spacing: 0; }

.main {
  flex: 1; min-width: 0;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px;
}
.pane-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
}
.pane-head h2 { font-size: 17px; font-weight: 800; margin: 0 0 3px; }
.pane h3 { font-size: 14px; font-weight: 700; margin: 0 0 8px; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }

.shoprow {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 9px;
  padding: 12px 14px; margin-bottom: 8px; cursor: pointer;
}
.shoprow.on { border-color: var(--accent); }
.tag {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ok);
}
#connectForm { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 20px; }

/* Dil düğmeleri */
.langs { display: flex; gap: 4px; }
button.lang {
  background: transparent; color: var(--muted);
  border: 1px solid var(--line); padding: 5px 10px;
  font: 700 12px inherit;
}
button.lang.on { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
button.lang.wide { padding: 9px 18px; font-size: 13px; }

/* Kontör satın alma */
.pkg {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding: 14px 0;
}
.pkg:first-child { border-top: 0; }

.order { border: 1px solid var(--line); border-radius: 10px; padding: 16px; }
/* Ödeme yolları ayrı kutularda: satıcı kendi yoluna ait satırları karıştırmasın. */
.paybox { border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; margin-top: 12px; }
.paybox > b { font-size: 14px; }
.paybox table.pay { margin-top: 6px; }
table.pay, table.hist { border-collapse: collapse; margin-top: 10px; width: 100%; }
table.pay td, table.hist td { padding: 6px 0; font-size: 13.5px; vertical-align: top; }
table.pay td:first-child { color: var(--muted); width: 38%; }
table.hist tr { border-top: 1px solid var(--line); }

@media (max-width: 820px) {
  .shell { flex-direction: column; }
  .side { width: 100%; position: static; }
  .side nav { flex-direction: row; flex-wrap: wrap; }
  .navitem { width: auto; }
  .navitem span { flex: none; }
}
@media (max-width: 700px) {
  .hero { flex-direction: column; align-items: flex-start; gap: 26px; }
  .hero h1 { font-size: 27px; max-width: none; }
  .pairs, .price-row { grid-template-columns: 1fr; }
}

/* ======================= PENCERE (modal) ======================= */

.modal {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(20, 24, 22, .55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.sheet {
  background: var(--card); border-radius: var(--radius);
  width: 100%; max-width: 720px; max-height: 88vh;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.sheet-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
}
.sheet-head h2 { font-size: 17px; font-weight: 800; margin: 0; }
.sheet-body { padding: 20px 22px; overflow-y: auto; flex: 1; }
.sheet-foot { padding: 16px 22px; border-top: 1px solid var(--line); }

.lead-p { font-size: 15px; margin: 0 0 16px; }
.note-p { font-size: 13px; color: var(--muted); margin: 14px 0 0; }

/* Şartlar metni */
.terms-h { font-size: 14.5px; font-weight: 800; margin: 22px 0 8px; }
.terms-p { font-size: 14px; color: var(--muted); margin: 0 0 10px; line-height: 1.65; }
.terms-end {
  font-size: 13px; font-weight: 700; color: var(--warn);
  border-top: 1px solid var(--line); margin-top: 22px; padding-top: 16px;
}
.terms-end.done { color: var(--ok); }

.check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 13.5px; }
.check input { width: 17px; height: 17px; flex: none; margin-top: 2px; accent-color: var(--accent); }
.check span { color: var(--muted); }

/* Onay düğmesi geri sayım bitene kadar soluk ve basılamaz */
button:disabled { opacity: .38; cursor: not-allowed; }

/* Rehber adımları */
ol.guide { margin: 0; padding-left: 20px; }
ol.guide li { font-size: 14px; margin-bottom: 11px; line-height: 1.6; }

/* Metin görünümlü düğme */
button.link {
  background: transparent; border: 0; padding: 0;
  color: var(--accent); font: 700 13px inherit;
  text-decoration: underline; cursor: pointer;
}
button.link:hover { filter: none; opacity: .78; }

/* ======================= SİPARİŞLER ======================= */

.orderrow {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 15px 16px; margin-bottom: 10px;
}
.state {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  padding: 3px 10px; border-radius: 999px; border: 1px solid var(--line);
  white-space: nowrap;
}
.state.s-awaiting_payment  { color: var(--warn); }
.state.s-paid              { color: var(--ok); }
.state.s-refund_requested  { color: var(--warn); }
.state.s-refunded          { color: var(--muted); }
.state.s-refund_declined   { color: var(--danger); }
.state.s-cancelled         { color: var(--muted); }

@media (max-width: 640px) {
  .sheet { max-height: 94vh; }
  .sheet-body, .sheet-foot, .sheet-head { padding-left: 16px; padding-right: 16px; }
}

/* Lansman indirimi ---------------------------------------------------------
   Giriş sayfasında kart yok kuralı geçerli: bu sadece vurgulu bir satır ve
   solunda ince bir çizgi, kutu değil. */
.launch {
  margin: 0 0 18px;
  padding: 0 0 0 12px;
  border-left: 3px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
}
.was {
  color: var(--muted);
  font-size: 13px;
  text-decoration: line-through;
  margin-top: 4px;
}
.pkg .was { margin: 0 10px 0 0; }

/* ==========================================================================
   APPLE KATMANI — 10 Ağustos 2026
   Apple arayüz ilkelerinin panele uyarlanmış hâli:
     · Sistem yazı tipi önce (optik boyutlandırma ve harf aralığı tabloları
       zaten içinde), Lato yedekte
     · Harf aralığı BOYUTA GÖRE: büyük başlıkta negatif, küçük etikette pozitif
     · Tepki BASILDIĞI anda, bırakıldığında değil
     · Üst çubuk saydam malzeme, içerik altından akıyor
     · Azaltılmış hareket, azaltılmış saydamlık ve yüksek karşıtlık tercihleri
   Kurallar aynen geçerli: koyu tema yok, mavi ve mor yok, solma ve kaydırmalı
   giriş animasyonu yok.
   ========================================================================== */

:root {
  /* Katmanlı gölge: yakın kenar artı uzak yayılma. Tek gölge yassı duruyor. */
  --sh-1: 0 1px 2px rgba(20, 20, 18, .05), 0 6px 16px -10px rgba(20, 20, 18, .14);
  --sh-2: 0 2px 4px rgba(20, 20, 18, .06), 0 16px 34px -18px rgba(20, 20, 18, .22);
  /* Kritik sönümlü yay hissi: aşma yok, geri sekme yok. */
  --press: 110ms cubic-bezier(.32, .72, 0, 1);
  --move: 240ms cubic-bezier(.32, .72, 0, 1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Lato, system-ui, sans-serif;
  font-synthesis-weight: none;
}

/* ---- Yazı ölçeği: aralık ve satır yüksekliği boyutla birlikte değişiyor -- */

.hero h1 {
  letter-spacing: -.026em;
  line-height: 1.05;
  font-weight: 700;
  font-optical-sizing: auto;
}
.hero .lede, .band > p.body { letter-spacing: 0; line-height: 1.62; }

.band h2, .pane-head h2 { letter-spacing: -.016em; line-height: 1.18; }
h2, h3 { letter-spacing: -.01em; }

/* Küçük büyük harfli etiketler: küçüldükçe aralık AÇILIYOR. */
.eyebrow, .strip-note, .kick, th {
  letter-spacing: .12em;
  font-weight: 600;
}

/* Rakam sütunları kaymasın. */
.stat b, .price b, table.pay code, table.hist td, .count { font-variant-numeric: tabular-nums; }

/* ---- Malzeme: üst çubuk saydam, içerik altından geçiyor ----------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--card) 74%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 0;
  /* Sert çizgi değil, malzeme sınırı. */
  box-shadow: 0 1px 0 rgba(20, 20, 18, .06), 0 12px 26px -24px rgba(20, 20, 18, .6);
}

/* ---- Yüzeyler: saç teli kenar, katmanlı gölge --------------------------- */

.card, .panel, .paybox, .review, .order {
  box-shadow: var(--sh-1);
  transition: box-shadow var(--move), border-color var(--move), transform var(--move);
}
.review:hover { box-shadow: var(--sh-2); }

/* ---- Tepki: parmak bastığı anda, bırakınca değil ------------------------ */

button {
  transition: transform var(--press), background var(--move), border-color var(--move), filter var(--move);
}
button:active:not(:disabled) { transform: scale(.97); }
button:hover:not(:disabled) { filter: none; background: color-mix(in srgb, var(--accent) 88%, #000); }
button.ghost:hover:not(:disabled) { background: color-mix(in srgb, var(--accent) 7%, transparent); border-color: var(--accent); }
button.danger:hover:not(:disabled) { background: color-mix(in srgb, var(--danger) 8%, transparent); border-color: var(--danger); }
button.lang:hover:not(:disabled) { background: color-mix(in srgb, var(--accent) 7%, transparent); }
button.lang.on:hover { background: var(--accent); }

.navitem { transition: transform var(--press), background var(--move), color var(--move); }
.navitem:active { transform: scale(.985); }

a { transition: color var(--move); }

/* ---- Alanlar: odak halkası her yerde aynı ------------------------------- */

input, textarea, select {
  transition: border-color var(--move), box-shadow var(--move);
}
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
a:focus-visible, button:focus-visible, summary:focus-visible, .navitem:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ---- Erişilebilirlik tercihleri ----------------------------------------- */


/* Kartla ödeme düğmesi: bağlantı ama düğme gibi davranıyor. */
.paybtn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 8px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: transform var(--press), background var(--move);
}
.paybtn:hover { background: color-mix(in srgb, var(--accent) 88%, #000); }
.paybtn:active { transform: scale(.97); }

/* Alan yazı tipi: `font: 14px/1.5 inherit` kısayolunda aile geçersiz kalıyor
   ve tarayıcı monospace'e düşüyordu. Metin kutusu gövdeyle aynı yazıyı
   kullanmalı, satıcı yazdığı cevabı gönderileceği hâliyle görsün. */
input, textarea, select {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  button, .navitem, .card, .panel, input, textarea, select, a { transition: none !important; }
  button:active:not(:disabled), .navitem:active { transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .topbar { background: var(--card); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 1px solid var(--line); box-shadow: none; }
}

@media (prefers-contrast: more) {
  .card, .panel, .paybox, .review, .order, input, textarea, select { border-color: #a49f96; }
  .hint, .muted, .review figcaption { color: #45423c; }
}
