/* =====================================================================
   SEO TURUNCU TEDARİK — Tasarım sistemi v3
   Tek CSS altyapısı, üç rol teması:
     body.theme-admin  → koyu lacivert + turkuaz
     body.theme-vendor → lacivert + turuncu
     body.theme-member → çivit/mor + turuncu
   ===================================================================== */

@font-face { font-family: "Neo Sans Pro"; src: url("../fonts/NeoSansPro-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Neo Sans Pro"; src: url("../fonts/NeoSansPro-Medium.woff2")  format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Neo Sans Pro"; src: url("../fonts/NeoSansPro-Bold.woff2")    format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --font: "Neo Sans Pro", "Plus Jakarta Sans", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --navy: #142640; --navy-deep: #0e1c2f; --navy-soft: #1e3a5c;
  --ink: #17233a; --muted: #6b7a90; --line: #e5e9f0; --line-2: #d9dfe8;
  --surface: #f4f6fa; --paper: #ffffff;
  --orange: #ef6c1a; --orange-dark: #cf5910; --orange-soft: #fdf1e8;

  /* Rol temasi (varsayilan: tedarikci) */
  --accent: #ef6c1a; --accent-dark: #cf5910; --accent-soft: #fdf1e8; --accent-ink: #b34a08;
  --side-bg: linear-gradient(180deg, #16294a 0%, #142640 60%, #0e1c2f 100%);
  --side-text: #a9b8cf; --side-active: rgba(239,108,26,.18); --side-active-border: #ffb27a;
  --topbar-bg: linear-gradient(90deg, #ffffff, #fff8f2);

  --ok: #16794f; --ok-soft: #e7f5ee; --wait: #9a6206; --wait-soft: #fdf3e0;
  --bad: #b32318; --bad-soft: #fdeceb; --info: #1e4fa3; --info-soft: #e8f1ff;
  --radius: 12px; --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(20,38,64,.05), 0 1px 3px rgba(20,38,64,.04);
  --shadow-md: 0 6px 18px rgba(20,38,64,.08);
  --shadow-lg: 0 16px 40px rgba(20,38,64,.14);
  --ring: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
body.theme-admin {
  --accent: #0ea5a4; --accent-dark: #0b8887; --accent-soft: #e6f7f7; --accent-ink: #0b6b6a;
  --side-bg: linear-gradient(180deg, #0f172a 0%, #111c33 60%, #0b1224 100%);
  --side-text: #9fb0c7; --side-active: rgba(14,165,164,.16); --side-active-border: #5eead4;
  --topbar-bg: linear-gradient(90deg, #ffffff, #f0fafa);
}
body.theme-member {
  --accent: #6d4aff; --accent-dark: #5636e0; --accent-soft: #efeaff; --accent-ink: #4a2fb8;
  --surface: #f3f4fb;
  --side-bg: linear-gradient(180deg, #2a1d6b 0%, #1d2b64 55%, #10306b 100%);
  --side-text: #c3c0e6; --side-active: rgba(255,178,122,.16); --side-active-border: #ffb27a;
  --topbar-bg: linear-gradient(90deg, #ffffff, #f4f0ff);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--surface); color: var(--ink);
  font: 15px/1.55 var(--font); font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-dark); }
h1, h2, h3, h4 { margin: 0 0 .6rem; line-height: 1.25; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: 1.3rem; } h2 { font-size: 1.08rem; } h3 { font-size: .98rem; }
p { margin: 0 0 .8rem; max-width: 72ch; }
.muted { color: var(--muted); } .mono { font-family: var(--mono); font-size: .92em; }
.nowrap { white-space: nowrap; } .mb0 { margin-bottom: 0 !important; } .mt16 { margin-top: 16px; } .right { text-align: right; }
::selection { background: var(--accent-soft); }

/* ---------- Kenar menü ---------- */
.side {
  position: fixed; inset: 0 auto 0 0; width: 248px; background: var(--side-bg); color: var(--side-text);
  display: flex; flex-direction: column; z-index: 30; box-shadow: 4px 0 24px rgba(10,20,40,.18);
}
.side::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M24 0v48M0 24h48' stroke='%23ffffff' stroke-opacity='.035'/%3E%3C/svg%3E"); }
.side > * { position: relative; z-index: 1; }
.brand { display: flex; align-items: center; gap: 10px; padding: 20px 18px 16px; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand-mark { width: 38px; height: 38px; border-radius: 10px; background: var(--accent); display: grid; place-items: center; font-weight: 800; color: #fff; box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 45%, transparent); }
.brand-logo { height: 28px; width: auto; max-width: 140px; object-fit: contain; filter: brightness(0) invert(1); opacity: .95; }
.brand-text { font-weight: 700; font-size: .95rem; line-height: 1.15; }
.brand-text em { display: block; font-style: normal; font-weight: 500; font-size: .74rem; color: var(--side-text); letter-spacing: .04em; text-transform: uppercase; }
.side nav { padding: 12px 10px; flex: 1; overflow-y: auto; }
.side nav a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; margin-bottom: 2px; border-radius: 9px;
  color: var(--side-text); text-decoration: none; font-size: .9rem; font-weight: 500; transition: background .15s, color .15s, transform .15s;
}
.side nav a svg { width: 18px; height: 18px; flex: none; opacity: .8; }
.side nav a:hover { background: rgba(255,255,255,.07); color: #fff; transform: translateX(2px); }
.side nav a.on { background: var(--side-active); color: #fff; box-shadow: inset 3px 0 0 var(--side-active-border); }
.side nav a.on svg { opacity: 1; }
.nav-count { display: inline-block; min-width: 20px; padding: 1px 6px; margin-left: auto; border-radius: 10px; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; text-align: center; line-height: 1.5; }
.side-foot { padding: 14px 18px 18px; border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem; }
.who { display: flex; flex-direction: column; margin-bottom: 8px; }
.who strong { color: #fff; font-weight: 600; } .who span { color: var(--side-text); font-size: .78rem; }
.side-foot .lnk { display: inline-block; color: var(--side-text); text-decoration: none; padding: 3px 8px 3px 0; }
.side-foot .lnk:hover { color: #fff; }

.main { padding: 22px 30px 60px; min-height: 100vh; }
body.has-nav .main { margin-left: 248px; }
body.is-guest .main { margin: 0; padding: 0; }
.topbar {
  display: flex; align-items: center; gap: 14px; padding: 14px 20px; margin: -22px -30px 22px; position: sticky; top: 0; z-index: 20;
  background: var(--topbar-bg); border-bottom: 1px solid var(--line); backdrop-filter: blur(8px);
}
.topbar h1 { margin: 0; flex: 1; }
.burger { display: none; border: 1px solid var(--line); background: var(--paper); border-radius: 8px; padding: 5px 10px; font-size: 1rem; cursor: pointer; }

/* ---------- Paneller ---------- */
.panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 18px; box-shadow: var(--shadow); }
.panel-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.panel-head h2 { margin: 0; flex: 1; }
.panel-head .hint { color: var(--muted); font-size: .82rem; }
.panel.empty { text-align: center; padding: 52px 20px; }
.panel.empty p { margin-left: auto; margin-right: auto; color: var(--muted); }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); position: relative; overflow: hidden; transition: transform .15s, box-shadow .15s; }
.stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat .k { color: var(--muted); font-size: .8rem; margin-bottom: 6px; font-weight: 500; }
.stat .v { font-size: 1.55rem; font-weight: 700; letter-spacing: -.02em; }
.stat .s { color: var(--muted); font-size: .78rem; margin-top: 5px; }
.stat.accent { border-left: 3px solid var(--accent); }
.stat .ico { float: right; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.75); font-size: 1.15rem; box-shadow: var(--shadow); }
.stat.c1 { background: linear-gradient(135deg, #fff3ea, #ffe1cc); border: 0; } .stat.c1 .v { color: #b34a08; }
.stat.c2 { background: linear-gradient(135deg, #e9f1ff, #d3e3ff); border: 0; } .stat.c2 .v { color: #1e4fa3; }
.stat.c3 { background: linear-gradient(135deg, #e8fbf1, #cdf2de); border: 0; } .stat.c3 .v { color: #146b45; }
.stat.c4 { background: linear-gradient(135deg, #f2ecff, #e2d5ff); border: 0; } .stat.c4 .v { color: #5b2fa3; }

.hero-card { background: linear-gradient(120deg, var(--navy) 0%, #1d2b64 55%, var(--accent) 170%); color: #fff; border-radius: 16px; padding: 24px 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; right: -60px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 65%); }
.hero-card h2 { margin: 0 0 4px; color: #fff; font-size: 1.3rem; } .hero-card p { margin: 0; color: #cfd8ea; }
.hero-card .btn { border-color: transparent; }
.hero-card .pkg-pill { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); padding: 6px 14px; border-radius: 20px; font-size: .85rem; }

/* ---------- Tablolar ---------- */
.table-wrap { overflow-x: auto; margin: 0 -22px -20px; }
.table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.table th, .table td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); background: #fafbfd; font-weight: 600; }
.table tbody tr { transition: background .12s; } .table tbody tr:hover { background: #f8fafd; }
.table td.num, .table th.num { text-align: right; white-space: nowrap; }
.table .sub { display: block; color: var(--muted); font-size: .78rem; margin-top: 2px; }
.table tfoot td { font-weight: 600; background: #fafbfd; }

.badge { display: inline-block; padding: 3px 9px; border-radius: 20px; font-size: .74rem; font-weight: 600; letter-spacing: .01em; }
.badge.is-ok { background: var(--ok-soft); color: var(--ok); } .badge.is-wait { background: var(--wait-soft); color: var(--wait); }
.badge.is-bad { background: var(--bad-soft); color: var(--bad); } .badge.is-mute { background: #eef1f5; color: var(--muted); }
.pill { padding: 5px 11px; border-radius: 8px; font-size: .84rem; font-weight: 600; display: inline-block; }
.pill.p-new { background: #e8eefc; color: #2a4db0; } .pill.p-processing { background: #fdf3e0; color: #9a6206; }
.pill.p-shipped { background: #e6f4ff; color: #0b64a3; } .pill.p-delivered { background: #e7f5ee; color: #16794f; }
.pill.p-cancelled { background: #fdeceb; color: #b32318; } .pill.p-returned { background: #f1e9fb; color: #6a3ab5; }
.status-list { list-style: none; margin: 0; padding: 0; }
.status-list li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.status-list li:last-child { border-bottom: 0; }

/* ---------- Formlar ---------- */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 5px; }
.field .help { color: var(--muted); font-size: .78rem; margin-top: 4px; }
input[type=text], input[type=email], input[type=password], input[type=number], input[type=url], input[type=tel], input[type=search], input[type=date], select, textarea {
  width: 100%; padding: 9px 12px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: #fff; color: var(--ink);
  font: inherit; font-size: .9rem; transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
input:disabled, select:disabled, textarea:disabled { background: #f3f5f8; color: var(--muted); }
textarea { resize: vertical; min-height: 80px; }
input[type=file] { font-size: .85rem; }
.check { display: flex; align-items: flex-start; gap: 9px; font-size: .88rem; cursor: pointer; }
.check input { margin-top: 3px; accent-color: var(--accent); }
.filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 16px; }
.filters .field { margin: 0; min-width: 150px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-2); background: #fff; color: var(--ink); font: inherit; font-weight: 600; font-size: .88rem;
  cursor: pointer; text-decoration: none; text-align: center; transition: background .15s, transform .12s, box-shadow .15s, border-color .15s;
}
.btn:hover { background: #f6f8fb; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 30%, transparent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-dark { background: var(--navy); border-color: var(--navy); color: #fff; } .btn-dark:hover { background: var(--navy-deep); color: #fff; }
.btn-danger { color: var(--bad); border-color: #f3c9c6; } .btn-danger:hover { background: var(--bad-soft); }
.btn-sm { padding: 5px 10px; font-size: .8rem; }
.btn-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pager { display: flex; gap: 6px; margin: 4px 0 20px; flex-wrap: wrap; }
.pager a, .pager span { padding: 5px 11px; border-radius: 8px; border: 1px solid var(--line); text-decoration: none; font-size: .85rem; background: #fff; }
.pager .on { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- Uyarılar / toast ---------- */
.alert { padding: 11px 15px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: .89rem; border: 1px solid transparent; }
.alert-ok { background: var(--ok-soft); color: var(--ok); border-color: #c4e6d3; }
.alert-warn { background: var(--wait-soft); color: var(--wait); border-color: #f1dcae; }
.alert-err { background: var(--bad-soft); color: var(--bad); border-color: #f3c9c6; }
.toasts { position: fixed; right: 20px; top: 20px; z-index: 90; display: flex; flex-direction: column; gap: 8px; max-width: 360px; }
.toast { padding: 12px 16px; border-radius: 10px; background: #1b2536; color: #fff; font-size: .88rem; box-shadow: var(--shadow-lg); border-left: 4px solid var(--accent); animation: toastIn .25s ease; }
.toast.ok { border-left-color: #34d399; } .toast.err { border-left-color: #f87171; } .toast.warn { border-left-color: #fbbf24; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.progress { height: 8px; background: #e9edf3; border-radius: 20px; overflow: hidden; margin: 14px 0 8px; }
.progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); border-radius: 20px; transition: width .25s ease; }
.progress-meta { display: flex; justify-content: space-between; font-size: .82rem; color: var(--muted); }
.drop { border: 2px dashed #cbd5e1; border-radius: var(--radius); padding: 34px 20px; text-align: center; background: #fbfcfe; cursor: pointer; transition: border-color .15s, background .15s; }
.drop.over, .drop:hover { border-color: var(--accent); background: var(--accent-soft); }
.drop strong { display: block; margin-bottom: 4px; } .drop span { color: var(--muted); font-size: .85rem; }
.contract-body { max-height: 460px; overflow-y: auto; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; background: #fff; font-size: .92rem; line-height: 1.7; }
.contract-body h2, .contract-body h3 { margin-top: 1.4em; }

/* ---------- Sekmeler (ürün formu vb.) ---------- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 18px; overflow-x: auto; }
.tabs button { border: 0; background: none; padding: 10px 16px; font: inherit; font-weight: 600; font-size: .88rem; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; display: inline-flex; gap: 6px; align-items: center; }
.tabs button:hover { color: var(--ink); }
.tabs button.on { color: var(--accent-dark); border-bottom-color: var(--accent); }
.tab-pane { display: none; } .tab-pane.on { display: block; animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.sticky-box { position: sticky; top: 84px; }
.segmented { display: inline-flex; background: #eef1f6; border-radius: 10px; padding: 3px; }
.segmented label { padding: 7px 14px; border-radius: 8px; cursor: pointer; font-size: .86rem; font-weight: 600; color: var(--muted); }
.segmented input { display: none; }
.segmented label:has(input:checked) { background: #fff; color: var(--accent-dark); box-shadow: var(--shadow); }

/* Zengin metin editörü */
.rte { border: 1px solid var(--line-2); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.rte-bar { display: flex; gap: 2px; padding: 6px; border-bottom: 1px solid var(--line); background: #fafbfd; flex-wrap: wrap; }
.rte-bar button { border: 0; background: none; padding: 5px 9px; border-radius: 6px; cursor: pointer; font: inherit; font-size: .82rem; font-weight: 600; color: var(--ink); }
.rte-bar button:hover { background: #eef1f6; }
.rte-body { min-height: 180px; padding: 12px 14px; outline: none; font-size: .92rem; line-height: 1.6; }
.rte-body:focus { box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--accent) 25%, transparent); }
.rte-body h2, .rte-body h3 { margin-top: 1em; } .rte-body ul, .rte-body ol { padding-left: 22px; }

/* Görsel yükleme modülü */
.media-box { }
.media-drop { border: 2px dashed #cbd5e1; border-radius: var(--radius); padding: 22px; text-align: center; background: #fbfcfe; cursor: pointer; transition: all .15s; }
.media-drop:hover, .media-drop.over { border-color: var(--accent); background: var(--accent-soft); }
.media-drop .ico { font-size: 1.6rem; margin-bottom: 4px; }
.media-drop strong { display: block; } .media-drop span { color: var(--muted); font-size: .82rem; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; margin-top: 12px; }
.media-item { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; border: 2px solid var(--line); background: #f1f4f8; cursor: grab; transition: border-color .15s, transform .15s; }
.media-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-item.primary { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }
.media-item.dragging { opacity: .5; transform: scale(.96); }
.media-item .cover { position: absolute; left: 6px; bottom: 6px; background: var(--accent); color: #fff; font-size: .62rem; font-weight: 700; padding: 2px 7px; border-radius: 6px; letter-spacing: .04em; }
.media-item .acts { position: absolute; top: 5px; right: 5px; display: flex; gap: 4px; opacity: 0; transition: opacity .15s; }
.media-item:hover .acts { opacity: 1; }
.media-item .acts button { border: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(15,23,42,.72); color: #fff; cursor: pointer; font-size: .72rem; display: grid; place-items: center; }
.media-item .acts button:hover { background: var(--accent); }
.media-item .prog { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255,255,255,.5); }
.media-item .prog span { display: block; height: 100%; background: var(--accent); width: 0; transition: width .2s; }
.media-item.uploading::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.45); }
.media-add-url { display: flex; gap: 8px; margin-top: 10px; } .media-add-url input { flex: 1; }

/* Varyasyon paneli */
.attr-row { display: grid; grid-template-columns: 180px 1fr 36px; gap: 10px; align-items: center; margin-bottom: 8px; }
.var-card { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 8px; background: #fff; overflow: hidden; }
.var-head { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #fafbfd; cursor: pointer; }
.var-head strong { flex: 1; font-size: .9rem; }
.var-head .chev { transition: transform .15s; } .var-card.open .var-head .chev { transform: rotate(90deg); }
.var-body { display: none; padding: 14px; border-top: 1px solid var(--line); }
.var-card.open .var-body { display: grid; grid-template-columns: 96px 1fr; gap: 16px; }
.var-img { width: 96px; height: 96px; border-radius: 10px; border: 2px dashed var(--line-2); background: #f7f9fc center/cover no-repeat; display: grid; place-items: center; color: var(--muted); font-size: .7rem; cursor: pointer; }
.var-fields { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.var-fields .field { margin: 0; }
.var-fields .field label { font-size: .74rem; color: var(--muted); }

/* ---------- Pazaryeri ---------- */
.market-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 16px; }
.market-bar .field { margin: 0; flex: 1; min-width: 170px; } .market-bar .field.grow { flex: 2.5; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 16px; }
.pcard { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.pcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pcard .img { aspect-ratio: 1; background: #f1f4f8 center/cover no-repeat; position: relative; display: block; }
.pcard .img.empty::after { content: "Görsel yok"; position: absolute; inset: 0; display: grid; place-items: center; color: #9aa7b8; font-size: .85rem; }
.pcard .img .tag { position: absolute; top: 10px; left: 10px; background: rgba(20,38,64,.85); color: #fff; font-size: .7rem; padding: 3px 8px; border-radius: 6px; backdrop-filter: blur(4px); }
.pcard .body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard .title { font-weight: 600; line-height: 1.35; min-height: 2.7em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard .title a { color: inherit; text-decoration: none; }
.pcard .price { color: var(--accent-ink); font-size: 1.25rem; font-weight: 700; }
.pcard .meta { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 10px; font-size: .74rem; color: var(--muted); letter-spacing: .03em; }
.pcard .meta b { display: block; color: var(--ink); font-weight: 600; letter-spacing: 0; font-size: .84rem; }
.pcard .meta .r { text-align: right; }
.pcard .actions { display: flex; gap: 8px; margin-top: auto; padding-top: 8px; }
.qty { display: inline-flex; border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden; background: #fff; }
.qty button { border: 0; background: #f6f8fa; width: 32px; cursor: pointer; font-size: 1rem; }
.qty input { width: 44px; border: 0; text-align: center; font: inherit; padding: 6px 0; }
.qty input:focus { box-shadow: none; }
.pcard .link-btn { width: 100%; margin-top: 8px; }
.pdetail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 26px; }
.gallery .main { aspect-ratio: 1; background: #f1f4f8 center/contain no-repeat; border-radius: 14px; border: 1px solid var(--line); }
.gallery .thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.gallery .thumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 2px solid transparent; cursor: pointer; transition: border-color .15s; }
.gallery .thumbs img.on { border-color: var(--accent); }
.pdetail .price-big { font-size: 1.9rem; font-weight: 800; color: var(--accent-ink); letter-spacing: -.02em; }
.spec { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 0; }
.spec div { background: #f6f8fb; border-radius: 10px; padding: 10px 12px; font-size: .78rem; color: var(--muted); }
.spec div b { display: block; color: var(--ink); font-size: .95rem; }
.option-box { border: 1px dashed color-mix(in srgb, var(--accent) 45%, #fff); background: var(--accent-soft); border-radius: 12px; padding: 14px 16px; margin-top: 14px; }
.option-box h3 { margin: 0 0 8px; font-size: .95rem; color: var(--accent-ink); }
.variant-pick label { display: inline-block; border: 1px solid var(--line-2); border-radius: 8px; padding: 6px 12px; margin: 0 6px 6px 0; cursor: pointer; transition: all .15s; }
.variant-pick input { display: none; }
.variant-pick label:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-ink); font-weight: 600; }
.pz-list { margin: 0; padding: 0; list-style: none; font-size: .82rem; }
.pz-list li { padding: 3px 0; border-bottom: 1px dotted var(--line); } .pz-list b { color: var(--accent-ink); }
.img-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.img-grid .im { position: relative; width: 96px; height: 96px; border-radius: 10px; overflow: hidden; border: 2px solid var(--line); }
.img-grid .im.primary { border-color: var(--accent); } .img-grid .im img { width: 100%; height: 100%; object-fit: cover; display: block; }
.repeat-table td { vertical-align: middle; } .repeat-table td.rm { width: 36px; }

/* ---------- Paketler ---------- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; align-items: stretch; }
.plan { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 28px 22px; text-align: center; position: relative; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan.featured { border: 2px solid #7c3aed; box-shadow: 0 10px 30px rgba(124,58,237,.14); }
.plan .ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, #7c3aed, #a855f7); color: #fff; font-size: .76rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.plan .name { font-size: 1.35rem; font-weight: 700; margin-bottom: 6px; }
.plan .price { font-size: 2.2rem; font-weight: 800; color: #1d2b64; letter-spacing: -.03em; }
.plan .tagline { color: var(--muted); font-size: .85rem; margin-bottom: 16px; }
.plan ul { list-style: none; padding: 0; margin: 18px 0 0; text-align: left; }
.plan li { padding: 6px 0 6px 26px; position: relative; font-size: .9rem; border-bottom: 1px dashed var(--line); }
.plan li::before { content: "✓"; position: absolute; left: 0; top: 6px; color: #7c3aed; font-weight: 800; }
.plan .cta { margin-top: auto; padding-top: 16px; }
.plan .current { background: #ede9fe; color: #5b21b6; font-weight: 600; padding: 10px; border-radius: 10px; }
.pay-methods { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.bank-box { background: #f6f8fb; border-radius: 10px; padding: 14px 16px; margin-top: 10px; font-size: .9rem; }
.lock-overlay { position: relative; }
.lock-overlay::after { content: ""; position: absolute; inset: 0; backdrop-filter: blur(3px); background: rgba(255,255,255,.35); border-radius: var(--radius); }
.lock-msg { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; text-align: center; padding: 20px; }
.lock-msg > div { background: #fff; border-radius: 14px; padding: 22px 26px; box-shadow: var(--shadow-lg); max-width: 380px; }

/* ---------- Sohbet ---------- */
.chat-layout { display: grid; grid-template-columns: 300px 1fr; gap: 16px; min-height: 60vh; }
.chat-list { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: auto; max-height: 70vh; }
.chat-list a { display: block; padding: 12px 14px; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; transition: background .12s; }
.chat-list a:hover, .chat-list a.on { background: #f6f8fb; } .chat-list a.on { box-shadow: inset 3px 0 0 var(--accent); }
.chat-list .t { font-weight: 600; display: flex; justify-content: space-between; }
.chat-list .s { color: var(--muted); font-size: .8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; }
.chat-head { padding: 12px 16px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.chat-msgs { flex: 1; padding: 16px; overflow-y: auto; max-height: 55vh; display: flex; flex-direction: column; gap: 10px; background: #fbfcfe; }
.msg { max-width: 72%; padding: 10px 14px; border-radius: 14px; font-size: .92rem; line-height: 1.45; white-space: pre-wrap; word-break: break-word; }
.msg.me { align-self: flex-end; background: var(--navy); color: #fff; border-bottom-right-radius: 4px; }
.msg.them { align-self: flex-start; background: #eef2f7; border-bottom-left-radius: 4px; }
.msg.sys { align-self: center; background: transparent; color: var(--muted); font-size: .8rem; }
.msg .ts { display: block; font-size: .7rem; opacity: .7; margin-top: 4px; } .msg.me .ts { text-align: right; }
.msg a.att { display: inline-block; margin-top: 6px; font-size: .82rem; color: inherit; }
.chat-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); }
.chat-form textarea { flex: 1; min-height: 44px; max-height: 120px; }
.chat-rule { background: #fff8e6; color: #7a5200; padding: 8px 14px; font-size: .8rem; border-top: 1px solid #f3e2b3; }

/* ---------- WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: flex; align-items: center; gap: 8px; background: #25d366; color: #fff; text-decoration: none; padding: 10px 16px 10px 12px; border-radius: 30px; font-weight: 600; box-shadow: 0 6px 20px rgba(37,211,102,.35); transition: transform .15s; }
.wa-float:hover { transform: scale(1.05); color: #fff; }
.wa-inline { display: inline-flex; align-items: center; gap: 6px; color: #128c4e; font-weight: 600; text-decoration: none; }

/* ---------- Giriş / başvuru / karşılama ---------- */
.auth2 { min-height: 100vh; display: grid; grid-template-columns: 1.15fr 1fr; }
.auth2-visual { position: relative; overflow: hidden; color: #fff; display: flex; flex-direction: column; justify-content: center; padding: 64px; background: var(--auth-bg, radial-gradient(1100px 600px at 10% 10%, #2a3f7a 0%, transparent 60%), radial-gradient(900px 500px at 90% 90%, #ef6c1a 0%, transparent 55%), linear-gradient(160deg, #0e1c2f, #142640 60%, #1d2b64)); }
.auth2.role-member .auth2-visual { --auth-bg: radial-gradient(1100px 600px at 10% 10%, #4c3ad6 0%, transparent 60%), radial-gradient(900px 500px at 90% 90%, #ef6c1a 0%, transparent 55%), linear-gradient(160deg, #1a1440, #2a1d6b 60%, #1d2b64); }
.auth2.role-admin .auth2-visual { --auth-bg: radial-gradient(1100px 600px at 10% 10%, #134e4a 0%, transparent 60%), radial-gradient(900px 500px at 90% 90%, #0ea5a4 0%, transparent 55%), linear-gradient(160deg, #0b1224, #0f172a 60%, #111c33); }
.auth2-visual::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-opacity='.05'/%3E%3C/svg%3E"); }
.auth2-visual > * { position: relative; }
.auth2-visual img.logo { height: 56px; width: auto; filter: brightness(0) invert(1); margin-bottom: 40px; align-self: flex-start; }
.auth2-visual h1 { font-size: 2.7rem; line-height: 1.08; margin: 0 0 10px; font-weight: 800; letter-spacing: -.03em; max-width: 14ch; }
.auth2-visual h1 em { font-style: normal; color: #ffb27a; }
.auth2-visual p { color: #c3cfe3; max-width: 46ch; font-size: 1.05rem; }
.auth2-visual .chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.auth2-visual .chips span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); padding: 6px 12px; border-radius: 20px; font-size: .82rem; backdrop-filter: blur(4px); }
.auth2-visual .wm { position: absolute; right: -40px; bottom: -30px; font-size: 9rem; font-weight: 900; color: rgba(255,255,255,.04); transform: rotate(-12deg); letter-spacing: -.05em; user-select: none; }
.auth2-visual .role-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 6px 14px; border-radius: 20px; font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; align-self: flex-start; }
.auth2-form { display: flex; align-items: center; justify-content: center; padding: 40px 24px; background: #fff; }
.auth2-form form { width: 100%; max-width: 400px; }
.auth2-form h2 { font-size: 1.5rem; margin: 0 0 4px; color: var(--navy); }
.auth2-form .lead { color: var(--muted); margin: 0 0 22px; font-size: .9rem; }
.auth2-form .btn-primary { width: 100%; padding: 12px; font-size: 1rem; }
.auth2-form .field input, .auth2-form .field textarea { padding: 12px 14px; background: #f4f6fb; border-color: #e6eaf3; }
.auth2-form .links { margin-top: 18px; text-align: center; font-size: .9rem; color: var(--muted); }
.auth2-form .links a { color: var(--navy); font-weight: 600; }
.auth2-form .pw-wrap { position: relative; }
.auth2-form .pw-wrap button { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); border: 0; background: none; cursor: pointer; color: var(--muted); }
.auth2-form .foot { margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); text-align: center; font-size: .8rem; color: var(--muted); }
.role-tabs { display: flex; background: #f4f6fb; border-radius: 10px; padding: 4px; margin-bottom: 22px; }
.role-tabs a { flex: 1; text-align: center; padding: 8px; border-radius: 8px; text-decoration: none; color: var(--muted); font-weight: 600; font-size: .88rem; transition: all .15s; }
.role-tabs a.on { background: #fff; color: var(--navy); box-shadow: var(--shadow); }

.landing { min-height: 100vh; display: flex; flex-direction: column; background: radial-gradient(1200px 700px at 15% -10%, #2a3f7a 0%, transparent 60%), radial-gradient(900px 600px at 100% 110%, #ef6c1a 0%, transparent 55%), linear-gradient(160deg, #0e1c2f, #142640 55%, #1d2b64); color: #fff; }
.landing-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 40px; }
.landing-head img { height: 40px; filter: brightness(0) invert(1); }
.landing-head a { color: #c3cfe3; text-decoration: none; font-size: .88rem; font-weight: 600; }
.landing-hero { text-align: center; padding: 40px 24px 20px; }
.landing-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; margin: 0 0 10px; }
.landing-hero h1 em { font-style: normal; color: #ffb27a; }
.landing-hero p { color: #c3cfe3; max-width: 60ch; margin: 0 auto; font-size: 1.05rem; }
.landing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 420px)); gap: 22px; justify-content: center; padding: 30px 24px 60px; }
.role-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; padding: 30px 28px; backdrop-filter: blur(10px); transition: transform .2s, background .2s; position: relative; overflow: hidden; }
.role-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); }
.role-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--rc, #ef6c1a); }
.role-card.member { --rc: #a78bfa; } .role-card .ico { width: 54px; height: 54px; border-radius: 14px; background: var(--rc, #ef6c1a); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px; box-shadow: 0 8px 20px color-mix(in srgb, var(--rc, #ef6c1a) 45%, transparent); }
.role-card h2 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.role-card p { color: #c3cfe3; font-size: .92rem; min-height: 3.4em; }
.role-card ul { list-style: none; padding: 0; margin: 0 0 22px; color: #dfe6f3; font-size: .88rem; }
.role-card li { padding: 4px 0 4px 22px; position: relative; } .role-card li::before { content: "✓"; position: absolute; left: 0; color: var(--rc, #ef6c1a); font-weight: 800; }
.role-card .btn-row .btn { flex: 1; }
.role-card .btn-primary { background: var(--rc, #ef6c1a); border-color: var(--rc, #ef6c1a); box-shadow: none; }
.role-card .btn-ghost { background: transparent; border-color: rgba(255,255,255,.3); color: #fff; } .role-card .btn-ghost:hover { background: rgba(255,255,255,.1); }
.landing-foot { text-align: center; padding: 20px; color: #8fa0bb; font-size: .82rem; }
.landing-foot a { color: #c3cfe3; }

/* ---------- Grafik / araçlar ---------- */
.chart-wrap { position: relative; height: 260px; }
.tool-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.tool-card { display: block; text-decoration: none; color: inherit; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 18px; transition: all .18s; }
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.tool-card .ico { font-size: 1.6rem; margin-bottom: 8px; } .tool-card strong { display: block; margin-bottom: 4px; } .tool-card span { color: var(--muted); font-size: .82rem; }
.tool-result { background: linear-gradient(135deg, #f6f8fb, #eef2ff); border-radius: 14px; padding: 18px 20px; border: 1px solid var(--line); }
.tool-result .big { font-size: 2rem; font-weight: 800; letter-spacing: -.02em; }
.tool-result .big.neg { color: var(--bad); } .tool-result .big.pos { color: var(--ok); }
.tool-result dl { display: grid; grid-template-columns: 1fr auto; gap: 6px 14px; margin: 12px 0 0; font-size: .88rem; }
.tool-result dt { color: var(--muted); } .tool-result dd { margin: 0; text-align: right; font-weight: 600; }

/* ---------- Mobil ---------- */
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } .var-fields { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 900px) {
  .side { transform: translateX(-100%); transition: transform .2s ease; }
  body.nav-open .side { transform: none; }
  body.has-nav .main { margin-left: 0; padding: 16px; }
  .topbar { margin: -16px -16px 16px; }
  .burger { display: inline-block; }
  .grid-2, .grid-3, .grid-4, .pdetail, .chat-layout, .auth2 { grid-template-columns: 1fr; }
  .auth2-visual { padding: 36px 24px; min-height: 240px; } .auth2-visual h1 { font-size: 1.9rem; } .auth2-visual .wm { display: none; }
  .spec { grid-template-columns: 1fr 1fr; } .chat-list { max-height: 200px; } .table-wrap { margin: 0 -16px -16px; }
  .attr-row { grid-template-columns: 1fr; } .var-card.open .var-body { grid-template-columns: 1fr; }
}

/* ---------- Ürün detayı (v3.2, Rexven tarzı) ---------- */
.pd-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 26px; align-items: start; }
.pd-title { font-size: 1.45rem; margin: 0 0 6px; letter-spacing: -.02em; }
.pd-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; margin-bottom: 14px; box-shadow: var(--shadow); }
.pd-card h3 { margin: 0 0 12px; font-size: 1rem; }
.pd-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 14px; }
.pd-chip { background: #f6f8fb; border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; font-size: .86rem; }
.pd-meta { display: flex; gap: 18px; font-size: .84rem; color: var(--muted); flex-wrap: wrap; }
.pd-prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 6px; }
.pd-price { border: 1px solid var(--line); border-radius: 14px; padding: 14px; background: #fff; display: flex; flex-direction: column; gap: 6px; position: relative; }
.pd-price.best { border-color: #c4b5fd; background: linear-gradient(160deg, #fbfaff, #f3efff); }
.pd-price.mine { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.pd-price .k { font-size: .82rem; font-weight: 600; color: var(--muted); display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.pd-price .k .tag { background: var(--accent); color: #fff; font-size: .62rem; padding: 2px 7px; border-radius: 6px; letter-spacing: .04em; text-transform: uppercase; }
.pd-price .v { font-size: 1.7rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.pd-price .l { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 6px; }
.pd-price .l em { font-style: normal; color: var(--ok); font-weight: 700; }
.pd-price .l.t { font-weight: 700; color: var(--ink); font-size: .88rem; }
.pd-price .l b { color: var(--ink); }
.pd-up { font-size: .74rem; font-weight: 600; color: var(--accent-dark); text-decoration: none; margin-top: 4px; }
@media (max-width: 1100px) { .pd-prices { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; } }

/* ---------- Metin logo: seoturuncu tedarikçi ---------- */
.wordmark { display: inline-flex; align-items: baseline; gap: 0; font-family: "Plus Jakarta Sans", var(--font); font-weight: 800; letter-spacing: -.04em; line-height: 1; white-space: nowrap; text-decoration: none; }
.wordmark .wm-a { color: #fff; }
.wordmark .wm-b { color: var(--orange); }
.wordmark .wm-c { font-weight: 500; letter-spacing: .12em; text-transform: uppercase; margin-left: .55em; font-size: .38em; color: #ffb27a; opacity: .95; align-self: center; border-left: 2px solid rgba(255,255,255,.25); padding-left: .55em; }
.wordmark.wm-dark .wm-a { color: var(--navy); } .wordmark.wm-dark .wm-c { color: var(--orange-dark); border-left-color: rgba(20,38,64,.2); }
.wordmark.wm-sm { font-size: 1.15rem; } .wordmark.wm-md { font-size: 1.55rem; } .wordmark.wm-lg { font-size: 2.4rem; }
.brand .wordmark { font-size: 1.3rem; }
@media (max-width: 600px) { .wordmark.wm-md { font-size: 1.3rem; } .wordmark .wm-c { display: none; } }

/* ---------- Responsive genel düzeltmeler ---------- */
@media (max-width: 900px) {
  .grid[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .sticky-box { position: static; }
  .topbar h1 { font-size: 1.05rem; }
  .btn-row .btn { flex: 1 1 auto; }
  .filters .field { min-width: 100%; }
  .tabs { -webkit-overflow-scrolling: touch; }
  .plans { grid-template-columns: 1fr; }
  .var-fields { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-nav-cta .btn-primary { display: none; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .var-fields, .pd-prices, .lp-calc-form { grid-template-columns: 1fr !important; }
  .main { padding: 12px; } body.has-nav .main { padding: 12px; }
  .topbar { margin: -12px -12px 12px; padding: 10px 12px; }
  .panel { padding: 14px; } .table-wrap { margin: 0 -14px -14px; } .table th, .table td { padding: 9px 10px; }
  .stat .v { font-size: 1.25rem; }
  .hero-card { padding: 18px; }
  .chat-msgs { max-height: 45vh; } .msg { max-width: 88%; }
}
.stat.stat-danger { background: linear-gradient(135deg, #fff1f0, #ffd9d6); border: 0; }
.stat.stat-danger .v, .stat.stat-danger .s strong { color: #b32318; }
.stat.stat-danger .k { color: #8a1c14; }
