/* ══════════════════════════════════
   TEAM57 Admin Panel — Stylesheet
   Standalone, ana siteden bağımsız
   ══════════════════════════════════ */

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

:root {
  --accent:       #a42a2a;
  --accent-h:     #bf3333;
  --accent-light: rgba(164,42,42,0.08);
  --accent-border:rgba(164,42,42,0.22);
  --bg:           #ffffff;
  --bg2:          #f5f5f5;
  --card:         #fafafa;
  --text:         #111111;
  --muted:        #777777;
  --border:       rgba(0,0,0,0.08);
  --border2:      rgba(0,0,0,0.15);
  --bar-h:        56px;
  --sb-w:         220px;
}

[data-theme="dark"] {
  --bg:    #0f0f0f;
  --bg2:   #1a1a1a;
  --card:  #141414;
  --text:  #f0f0f0;
  --muted: #888888;
  --border: rgba(255,255,255,0.07);
  --border2:rgba(255,255,255,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ════════════════════════════
   ŞİFRE EKRANI
════════════════════════════ */
#gate {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.gate-card {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 52px 48px 44px;
  width: 100%; max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  text-align: center;
}

.gate-logo {
  font-family: 'League Spartan', sans-serif;
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  display: inline-block;
  text-decoration: none;
}
.gate-logo .t { color: var(--text); }
.gate-logo .r { color: var(--accent); }

.gate-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--text); margin-bottom: 6px;
}

.gate-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }

.gate-field-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.gate-field-wrap .gate-input {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  font-size: 14px;
}
.gate-paste-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  color: var(--muted);
  font-size: 11px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.gate-paste-btn:hover { color: var(--text); border-color: var(--accent); }
.gate-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  background: var(--bg2); color: var(--text);
  font-size: 16px; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s;
  margin-bottom: 14px;
  text-align: center; letter-spacing: 0.12em;
}
.gate-input:focus { border-color: var(--accent); }

.gate-btn {
  width: 100%; padding: 13px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  font-family: 'League Spartan', sans-serif;
  cursor: pointer; transition: background 0.2s;
}
.gate-btn:hover { background: var(--accent-h); }

.gate-err {
  font-size: 13px; color: var(--accent);
  font-weight: 600; margin-top: 12px; min-height: 18px;
}

/* ════════════════════════════
   APP SHELL
════════════════════════════ */
#app { display: none; min-height: 100vh; }

/* ── Üst Bar ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--bar-h); z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 24px; gap: 16px;
}

.topbar-logo {
  font-family: 'League Spartan', sans-serif;
  font-size: 20px; font-weight: 800;
  text-decoration: none; display: flex; align-items: center;
  margin-right: 8px;
}
.topbar-logo .t { color: var(--text); }
.topbar-logo .r { color: var(--accent); }

.topbar-sep {
  width: 1px; height: 20px; background: var(--border2); flex-shrink: 0;
}

.topbar-tag {
  font-size: 11px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em;
}

.topbar-site-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-left: 14px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  text-decoration: none;
  padding: 5px 10px; border-radius: 8px;
  border: 1px solid var(--border2);
  transition: color 0.15s, border-color 0.15s;
}
.topbar-site-link:hover { color: var(--text); border-color: var(--accent); }

.topbar-right {
  margin-left: auto; display: flex; align-items: center; gap: 12px;
}

.topbar-theme {
  width: 34px; height: 34px;
  border-radius: 8px; border: 1px solid var(--border2);
  background: none; color: var(--muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.topbar-theme:hover { background: var(--bg2); color: var(--text); }

.topbar-logout {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  border: 1px solid var(--border2);
  background: none; color: var(--muted);
  font-size: 13px; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: all 0.15s;
}
.topbar-logout:hover { border-color: var(--accent); color: var(--accent); }

/* ── Sidebar ── */
.sidebar {
  position: fixed;
  top: var(--bar-h); left: 0;
  width: var(--sb-w);
  height: calc(100vh - var(--bar-h));
  background: var(--card);
  border-right: 1px solid var(--border);
  padding: 24px 12px;
  display: flex; flex-direction: column;
  overflow-y: auto;
}

.sb-group-label {
  font-size: 10px; font-weight: 700;
  color: var(--muted); letter-spacing: 0.1em;
  padding: 0 10px;
  margin-bottom: 10px; margin-top: 4px;
}

.sb-btn {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 9px 12px;
  border-radius: 9px; border: none;
  background: none; color: var(--muted);
  font-size: 13px; font-family: 'DM Sans', sans-serif;
  font-weight: 500; cursor: pointer;
  text-align: left; transition: background 0.15s, color 0.15s;
  margin-bottom: 2px;
}
.sb-btn svg { flex-shrink: 0; }
.sb-btn:hover  { background: var(--bg2); color: var(--text); }
.sb-btn.active { background: var(--accent-light); color: var(--accent); font-weight: 700; }

.sb-divider { height: 1px; background: var(--border); margin: 12px 0; }

.sb-bottom { margin-top: auto; }

/* ── Main ── */
.main {
  margin-top: var(--bar-h);
  margin-left: var(--sb-w);
  padding: 36px 40px;
  min-height: calc(100vh - var(--bar-h));
}

/* ── Section ── */
.section { display: none; }
.section.active {
  display: block;
  animation: secFadeIn 0.18s ease both;
}
@keyframes secFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 26px; font-weight: 800;
  color: var(--text); margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px; height: 22px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ════════════════════════════
   STAT CARDS
════════════════════════════ */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 32px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 14px;
  padding: 20px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.stat-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.stat-val {
  font-family: 'League Spartan', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--text); line-height: 1;
  margin-bottom: 5px;
}

.stat-lbl { font-size: 12px; color: var(--muted); }

/* ════════════════════════════
   TABLE CARD
════════════════════════════ */
.tbl-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 24px;
  position: relative;
}
.tbl-wrap > table { border-radius: inherit; }
/* Dropdown'larin tasmasi engellenmesin (durum select vb) */
.tbl-wrap:has(.c-select.open) { overflow: visible; }

.tbl-bar {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.tbl-bar-title {
  font-size: 13px; font-weight: 700; color: var(--text);
}

.search-input {
  padding: 7px 12px;
  border: 1px solid var(--border2);
  border-radius: 8px; background: var(--bg);
  color: var(--text); font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  width: 200px; outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }

table { width: 100%; border-collapse: collapse; font-size: 13px; }

th {
  text-align: left; padding: 10px 20px;
  color: var(--muted); font-weight: 600;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

td {
  padding: 11px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text); vertical-align: middle;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0,0,0,0.015); transition: background 0.15s; }

[data-theme="dark"] tr:hover td { background: rgba(255,255,255,0.03); }

.tbl-empty {
  text-align: center; padding: 40px;
  color: var(--muted); font-size: 13px;
}

/* User cell */
.u-cell { display: flex; align-items: center; gap: 10px; }

.u-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  font-family: 'League Spartan', sans-serif; overflow: hidden;
}
.u-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.u-name { font-weight: 600; font-size: 13px; }
.u-id   { font-size: 11px; color: var(--muted); font-family: monospace; }

/* Inline selects */
/* .i-sel artık custom select wrapper içinde gizli, wrapper stili cs-compact'ta */
.i-sel { display: none; }

/* Tablo hücrelerinde compact wrapper genişliği */
td > .c-select.cs-compact { width: auto; min-width: 110px; }

/* Badges */
.badge {
  display: inline-block; padding: 2px 8px;
  border-radius: 20px; font-size: 11px; font-weight: 600;
}
.badge.aktif    { background: rgba(22,163,74,0.1);  color: #16a34a; }
.badge.pasif    { background: rgba(0,0,0,0.06);     color: var(--muted); }
.badge.iptal    { background: rgba(220,38,38,0.08); color: #dc2626; }
.badge.bekliyor   { background: rgba(234,179,8,0.12); color: #ca8a04; }
.badge.beklemede  { background: rgba(234,179,8,0.12); color: #ca8a04; }
.badge.odendi     { background: rgba(22,163,74,0.1);  color: #16a34a; }

.mini-btn.accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.mini-btn.accent:hover { background: var(--accent-h); border-color: var(--accent-h); color: #fff; }

.badge.free       { background: rgba(0,0,0,0.05);      color: var(--muted); }
.badge.pro        { background: rgba(37,99,235,0.1);   color: #2563eb; }
.badge.enterprise { background: rgba(161,98,7,0.1);    color: #a16207; }
.badge.starter    { background: rgba(37,99,235,0.08);  color: #3b82f6; }
.badge.kurumsal   { background: rgba(161,98,7,0.1);    color: #a16207; }

/* Small buttons */
.mini-btn {
  padding: 4px 10px; border-radius: 6px;
  border: 1px solid var(--border2);
  background: none; color: var(--muted);
  font-size: 12px; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: all 0.15s;
}
.mini-btn:hover { border-color: var(--accent); color: var(--accent); }
.mini-btn.del:hover { border-color: #dc2626; color: #dc2626; }

/* ════════════════════════════
   FORM
════════════════════════════ */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 32px;
}

.form-card.wide { max-width: 620px; }

.f-row { margin-bottom: 16px; }

.f-label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.07em; margin-bottom: 6px;
}
.f-label span { font-weight: 400; text-transform: none; letter-spacing: 0; }

.f-input {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid var(--border2);
  border-radius: 9px; background: var(--bg);
  color: var(--text); font-size: 13.5px;
  font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.f-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

textarea.f-input { resize: vertical; min-height: 78px; }
select.f-input   { cursor: pointer; }

.f-grid2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 16px;
}

.f-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 24px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 9px;
  font-size: 14px; font-weight: 700;
  font-family: 'League Spartan', sans-serif;
  cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover    { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(164,42,42,0.28); }
.btn-primary:active   { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-ghost {
  padding: 10px 18px; border-radius: 9px;
  border: 1px solid var(--border2);
  background: none; color: var(--muted);
  font-size: 13px; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); transform: translateY(-1px); }

.f-msg {
  margin-top: 12px; padding: 10px 13px;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  display: none;
}
.f-msg.ok  { background: rgba(22,163,74,0.1);  color: #16a34a; display: block; }
.f-msg.err { background: rgba(164,42,42,0.08); color: var(--accent); display: block; }

/* Kullanıcı öneri listesi */
.u-picker { position: relative; }

.u-suggest {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--bg); border: 1px solid var(--border2);
  border-radius: 9px; max-height: 190px; overflow-y: auto;
  z-index: 200; display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sug-item {
  padding: 9px 13px; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; transition: background 0.1s;
}
.sug-item:hover { background: var(--bg2); }
.sug-name { font-weight: 600; }
.sug-id   { font-size: 11px; color: var(--muted); font-family: monospace; }

.sel-badge {
  display: none; margin-top: 8px; padding: 7px 12px;
  background: var(--accent-light); border: 1px solid var(--accent-border);
  border-radius: 8px; font-size: 13px; color: var(--accent);
  font-weight: 600; align-items: center; justify-content: space-between;
}
.sel-badge.show { display: flex; }
.sel-badge button {
  background: none; border: none; cursor: pointer;
  color: var(--accent); font-size: 16px; line-height: 1;
}

/* ════════════════════════════
   HİZMET LİSTESİ
════════════════════════════ */
.hizmet-grid {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 10px;
}

.hizmet-row {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.hizmet-info { flex: 1; min-width: 0; }
.hizmet-name {
  font-weight: 700; font-size: 13.5px; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hizmet-meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
.hizmet-desc {
  font-size: 12px; color: var(--muted); margin-top: 4px;
  line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.hizmet-acts { display: flex; gap: 7px; flex-shrink: 0; }

/* ════════════════════════════
   TOAST
════════════════════════════ */
#toast {
  position: fixed; bottom: 24px; right: 24px;
  padding: 10px 18px;
  background: var(--text); color: var(--bg);
  border-radius: 9px; font-size: 13px; font-weight: 600;
  z-index: 9999; pointer-events: none;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}
#toast.show { opacity: 1; transform: translateY(0); }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 860px) {
  .sidebar { transform: translateX(-100%); transition: transform 0.25s; z-index: 90; }
  .sidebar.open { transform: translateX(0); }
  .main { margin-left: 0; padding: 24px 18px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .f-grid2  { grid-template-columns: 1fr; }

  .topbar-mb-toggle {
    display: flex !important;
  }
}

.topbar-mb-toggle {
  display: none;
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border2); background: none;
  color: var(--muted); align-items: center; justify-content: center;
  cursor: pointer;
}

@media (max-width: 500px) {
  .stat-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   SECTION SUB & STUB
════════════════════════════ */
.section-sub {
  font-size: 13px; color: var(--muted);
  margin: -14px 0 28px; line-height: 1.6;
  max-width: 540px;
}
.stub-box {
  display: flex; align-items: center; justify-content: center;
  padding: 60px 20px;
  border: 1px dashed var(--border2);
  border-radius: 16px;
  background: var(--bg2);
  max-width: 480px;
}
.stub-tag {
  font-size: 12px; font-weight: 700;
  color: var(--muted); letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid var(--border2);
  background: var(--bg);
}

/* ════════════════════════════
   DETAY SAYFA - COLLAPSIBLE
════════════════════════════ */
.detail-section-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 10px; cursor: pointer;
  font-size: 13px; font-weight: 700; color: var(--text);
  margin: 20px 0 0; user-select: none;
  transition: background 0.15s;
}
.detail-section-toggle:hover { background: var(--accent-light); }
.detail-section-toggle svg { transition: transform 0.2s; color: var(--muted); }
.detail-section-toggle.open svg { transform: rotate(180deg); }
.detail-section-toggle.open { border-color: var(--accent-border); color: var(--accent); }

.detail-section-body {
  display: none;
  padding: 16px 0 0;
  border-left: 2px solid var(--accent-border);
  margin-left: 6px;
  padding-left: 18px;
}
.detail-section-body.open { display: block; }

/* ════════════════════════════
   REPEATER
════════════════════════════ */
.repeater {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 8px;
}
.rep-hint {
  font-size: 12px; color: var(--muted);
  padding: 6px 0;
}
.rep-row {
  display: flex; gap: 8px; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 12px;
}
.rep-row .rep-fields {
  flex: 1; display: flex; flex-direction: column; gap: 6px;
}
.rep-row .rep-fields .f-grid2 {
  grid-template-columns: 1fr 1fr;
}
.rep-row input, .rep-row textarea {
  font-size: 13px; padding: 7px 10px;
  background: var(--bg); border: 1px solid var(--border2);
  border-radius: 7px; color: var(--text); width: 100%;
  font-family: inherit; resize: vertical;
}
.rep-row input:focus, .rep-row textarea:focus {
  outline: none; border-color: var(--accent);
}
.rep-del {
  flex-shrink: 0; width: 28px; height: 28px; margin-top: 2px;
  background: none; border: 1px solid var(--border2);
  border-radius: 7px; color: var(--muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: color 0.15s, border-color 0.15s;
}
.rep-del:hover { color: var(--accent); border-color: var(--accent); }

.rep-add {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  background: var(--accent-light); border: 1px solid var(--accent-border);
  border-radius: 8px; padding: 6px 12px;
  cursor: pointer; font-family: inherit;
  transition: background 0.15s;
}
.rep-add:hover { background: rgba(164,42,42,0.14); }

/* ════════════════════════════
   ROZET SİSTEMİ
════════════════════════════ */
.rz-musteri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 12px;
}

.rz-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s, opacity 0.2s;
}
.rz-card.earned { border-color: var(--accent); background: var(--accent-light); }
.rz-card.locked { opacity: 0.45; }

.rz-card-icon   { font-size: 30px; line-height: 1; margin-bottom: 8px; }
.rz-card-name   { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.rz-card-desc   { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.rz-card-odul   { font-size: 11px; font-weight: 600; color: var(--accent); }
.rz-card-status {
  font-size: 10px; font-weight: 700; margin-top: 8px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.rz-card.earned .rz-card-status { color: #16a34a; }
.rz-card.locked .rz-card-status { color: var(--muted); }

/* ── Özel Sipariş Paneli WYSIWYG ── */
.osp-wrap { max-width: 720px; }
.osp-ce {
  border-radius: 4px; cursor: text; outline: none;
  transition: background 0.15s; display: inline;
}
.osp-ce:hover { background: rgba(239,68,68,.08); }
.osp-ce:focus { background: rgba(239,68,68,.12); outline: 1.5px dashed var(--accent) !important; outline-offset: 2px; }
.osp-pane-sep {
  border: none; border-top: 2px dashed var(--border);
  margin: 32px 0 28px; opacity: .5;
}
.osp-opt-row { display: flex; align-items: center; gap: 6px; }
.osp-opt-span {
  flex: 1; font-size: 14px; padding: 10px 14px;
  border: 1px solid var(--border2); border-radius: 10px;
  outline: none; display: block; background: var(--bg); color: var(--text);
}
.osp-opt-span:focus { border-color: var(--accent); }
.osp-opt-del {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 18px; line-height: 1; padding: 4px 6px; border-radius: 4px;
}
.osp-opt-del:hover { color: var(--accent); }

/* ── Website form classes (for OSP preview) ── */
.custom-order-wrap { max-width: 720px; margin: 0 auto; }
.order-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 36px; }
.order-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border2); display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 700;
  color: var(--muted); background: var(--bg);
}
.step-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.order-step.active .step-num { border-color: var(--accent); color: var(--accent); }
.order-step.active .step-label { color: var(--text); }
.order-step-line { flex: 1; height: 2px; background: var(--border2); margin: 0 8px 22px; min-width: 60px; }
.order-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 36px 40px;
}
.order-pane-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.order-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.order-type-inner {
  border: 1.5px solid var(--border2); border-radius: 14px;
  padding: 20px 16px; display: flex; flex-direction: column; gap: 6px; color: var(--muted);
}
.order-type-inner:hover { border-color: var(--accent); }
.order-type-name { font-size: 14px; font-weight: 700; color: var(--text); }
.order-type-desc { font-size: 12px; line-height: 1.4; }
.order-row { display: flex; gap: 16px; }
.osp-form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.osp-form-group label { font-size: 13px; font-weight: 500; color: var(--text); }
.osp-form-inp {
  padding: 12px 16px; border: 1px solid var(--border2); border-radius: 10px;
  font-size: 14px; color: var(--muted); background: var(--bg2);
}
.osp-form-ta {
  padding: 12px 16px; border: 1px solid var(--border2); border-radius: 10px;
  font-size: 14px; color: var(--muted); background: var(--bg2); min-height: 80px;
}

/* ── Legal Sayfalar ── */
.legal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.legal-col-title { font-size: 12px; font-weight: 700; letter-spacing: .07em; color: var(--muted); margin-bottom: 20px; }
.legal-page-preview { padding: 0; }
.legal-page-preview h1 { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 4px; }
.legal-date { font-size: 13px; color: var(--muted); margin-bottom: 36px; display: block; }
.legal-section { margin-bottom: 32px; }
.legal-section h2 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.legal-section p, .legal-section li { font-size: 14px; color: var(--muted); line-height: 1.75; }
.legal-section ul { padding-left: 20px; margin-top: 8px; }
.legal-section li { margin-bottom: 4px; }
.legal-section a { color: var(--accent); }
.legal-ce { border-radius: 4px; cursor: text; outline: none; display: block; }
.legal-ce:hover { background: rgba(239,68,68,.07); }
.legal-ce:focus { background: rgba(239,68,68,.11); outline: 1.5px dashed var(--accent) !important; outline-offset: 2px; }

/* ── Özet Ekranları ── */
.oz-ce { border-radius:4px; cursor:text; outline:none; transition:background .15s; display:block; }
.oz-ce:hover { background:rgba(239,68,68,.07); }
.oz-ce:focus { background:rgba(239,68,68,.11); outline:1.5px dashed var(--accent) !important; outline-offset:2px; }
.oz-num  { font-size:40px; font-weight:800; line-height:1.1; margin-bottom:6px; min-width:20px; }
.oz-num2 { font-size:28px; font-weight:800; line-height:1.1; margin-bottom:4px; min-width:20px; }
.oz-lbl  { font-size:13px; color:var(--muted); min-width:10px; }

.rz-edit-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
}
.rz-edit-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.rz-edit-icon-preview { font-size: 26px; line-height: 1; min-width: 32px; text-align: center; }
.rz-edit-title        { font-size: 13px; font-weight: 700; color: var(--text); }
.rz-edit-cond {
  font-size: 11px; color: var(--muted); margin-bottom: 14px;
  padding: 6px 10px; background: var(--bg2); border-radius: 7px;
}
.rz-edit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 560px) { .rz-edit-grid { grid-template-columns: 1fr; } }

.rz-edit-save {
  margin-top: 14px; padding: 8px 18px;
  font-size: 12px; font-weight: 600;
  background: var(--accent); color: #fff;
  border: none; border-radius: 8px;
  cursor: pointer; transition: background 0.15s;
}
.rz-edit-save:hover { background: var(--accent-h); }

/* ── Abonelik Planları - Görsel Kartlar ── */
.ap-vis-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.ap-vis-card.ap-vis-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.ap-badge-row {
  text-align: center;
  min-height: 26px;
  margin-bottom: 8px;
}
.ap-populer-badge {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 14px;
  border-radius: 20px;
}
.ap-vis-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.ap-vis-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 18px;
}
.ap-vis-currency { font-size: 22px; font-weight: 700; }
.ap-vis-price-num { font-size: 42px; font-weight: 800; line-height: 1; min-width: 20px; }
.ap-vis-per { font-size: 13px; color: var(--muted); margin-left: 2px; }
.ap-vis-ozel { font-size: 32px; font-weight: 800; line-height: 1; min-width: 20px; }
.ap-vis-ozel-suf { font-size: 13px; color: var(--muted); margin-left: 6px; }
.ap-vis-hr { border: none; border-top: 1px solid var(--border); margin: 0 0 18px; }
.ap-vis-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.ap-vis-feat-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ap-feat-sym {
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.ap-feat-check { color: var(--accent); }
.ap-feat-x     { color: var(--muted); }
.ap-feat-text  { flex: 1; font-size: 14px; line-height: 1.4; }
.ap-feat-del {
  background: none; border: none; color: var(--muted);
  font-size: 16px; cursor: pointer; padding: 0 2px; line-height: 1;
  opacity: .5; transition: opacity .15s;
}
.ap-feat-del:hover { opacity: 1; color: var(--accent); }
.ap-add-btns {
  display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap;
}
.ap-feat-add-btn {
  background: none;
  border: 1px dashed var(--border);
  color: var(--muted);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.ap-feat-add-btn:hover { border-color: var(--accent); color: var(--accent); }
.ap-vis-cta-wrap { margin-bottom: 16px; }
.ap-vis-cta {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  cursor: text;
  min-width: 20px;
}
.ap-vis-toggles {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted);
  margin-bottom: 16px;
}
.ap-vis-toggles label { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.ap-vis-footer {
  display: flex; align-items: center; gap: 14px; margin-top: auto;
}
.ap-ce {
  border-radius: 4px; cursor: text; outline: none;
  transition: background .15s; display: inline-block;
}
.ap-ce:hover  { background: rgba(239,68,68,.07); }
.ap-ce:focus  { background: rgba(239,68,68,.12); outline: 1.5px dashed var(--accent) !important; outline-offset: 2px; }

/* ── Ana Sayfa Yönetimi ── */
.as-section { margin-bottom: 28px; }
.as-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 10px;
}
.as-ce {
  border-radius: 4px; cursor: text; outline: none;
  transition: background .15s; display: block;
}
.as-ce:hover { background: rgba(239,68,68,.07); }
.as-ce:focus { background: rgba(239,68,68,.12); outline: 1.5px dashed var(--accent) !important; outline-offset: 2px; }

/* Hero */
.as-hero { background: #0d0d0d; border-radius: 14px; padding: 48px 40px; }
.as-hero-title {
  font-size: 32px; font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 18px;
}
.as-hero-sub {
  font-size: 15px; color: rgba(255,255,255,.55);
  line-height: 1.75; margin-bottom: 28px; max-width: 540px;
}
.as-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.as-hero-btn-primary, .as-hero-btn-secondary {
  display: inline-block; padding: 12px 28px;
  border-radius: 10px; font-size: 14px; font-weight: 600; cursor: text;
}
.as-hero-btn-primary  { background: var(--accent); color: #fff; }
.as-hero-btn-secondary { border: 1px solid rgba(255,255,255,.25); color: #fff; }
.as-hero-btn-primary:hover, .as-hero-btn-secondary:hover { background: rgba(239,68,68,.15); }
.as-hero-btn-primary:focus, .as-hero-btn-secondary:focus {
  background: rgba(239,68,68,.2); outline: 1.5px dashed var(--accent) !important;
}

/* Light section cards */
.as-light-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 28px;
}
.as-sec-header { text-align: center; margin-bottom: 28px; }
.as-sup  { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.as-h2   { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.as-sub  { font-size: 14px; color: var(--muted); max-width: 440px; margin: 0 auto; line-height: 1.7; }

/* Nasıl Çalışır */
.as-nasil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.as-step { text-align: center; }
.as-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.as-step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.as-step-desc  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Neden Biz */
.as-neden-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.as-neden-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px;
}
.as-neden-title { font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.as-neden-desc  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Son CTA */
.as-cta { background: #0d0d0d; border-radius: 14px; padding: 48px 40px; text-align: center; }
.as-cta-title {
  font-size: 28px; font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 14px;
}
.as-cta-sub {
  font-size: 14px; color: rgba(255,255,255,.55);
  line-height: 1.75; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.as-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.as-cta-btn-primary, .as-cta-btn-secondary {
  display: inline-block; padding: 12px 32px;
  border-radius: 10px; font-size: 14px; font-weight: 600; cursor: text;
}
.as-cta-btn-primary   { background: var(--accent); color: #fff; }
.as-cta-btn-secondary { border: 1px solid rgba(255,255,255,.2); color: #fff; }
.as-cta-btn-primary:hover, .as-cta-btn-secondary:hover { background: rgba(239,68,68,.15); }
.as-cta-btn-primary:focus, .as-cta-btn-secondary:focus {
  background: rgba(239,68,68,.2); outline: 1.5px dashed var(--accent) !important;
}

/* Footer */
.as-footer-copy { font-size: 13px; color: var(--muted); }

/* ── Özel Sipariş Sayfa ── */
.os-hero-title {
  font-size: 30px; font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 18px;
}
.os-hero-anim-placeholder {
  flex-shrink: 0; width: 200px; height: 160px;
  border: 1.5px dashed rgba(255,255,255,.15); border-radius: 14px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; color: rgba(255,255,255,.3);
  font-size: 12px;
}
.os-stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.os-stat-item {
  padding: 20px 12px;
  border-right: 1px solid var(--border);
}
.os-stat-item:last-child { border-right: none; }
.os-stat-val { font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.os-stat-lbl { font-size: 13px; color: var(--muted); }
.os-sss-list { display: flex; flex-direction: column; }
.os-sss-row {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  margin-bottom: 0;
}
.os-sss-q { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.os-sss-a { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── Hizmetler Sayfa Hero ── */
.hs-hero {
  position: relative; overflow: hidden;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 48px 40px 52px;
  min-height: 220px;
}
.hs-hero-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hs-line {
  position: absolute; width: 200%; height: 2px; border-radius: 99px; opacity: .35;
  left: -50%; transform-origin: center;
}
.hs-line-1 { background: linear-gradient(90deg,#ffb7c5,transparent); top: 45%; transform: rotate(-4deg); }
.hs-line-2 { background: linear-gradient(90deg,#b1c5ff,transparent); top: 55%; transform: rotate(-2deg); }
.hs-line-3 { background: linear-gradient(90deg,#4fabff,transparent); top: 65%; transform: rotate(-6deg); }
.hs-hero-content { position: relative; z-index: 1; }
.hs-hero-title {
  font-size: 34px; font-weight: 800; line-height: 1.2;
  margin-bottom: 18px; color: var(--text);
}
.hs-highlight { color: var(--accent); }
.hs-ce-inline {
  border-radius: 4px; cursor: text; outline: none;
  transition: background .15s; display: inline;
}
.hs-ce-inline:hover { background: rgba(239,68,68,.08); }
.hs-ce-inline:focus { background: rgba(239,68,68,.13); outline: 1.5px dashed var(--accent) !important; outline-offset: 2px; }
.hs-hero-sub {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  max-width: 500px; margin-bottom: 24px;
}
.hs-hero-cta {
  display: inline-block; padding: 13px 32px;
  background: var(--bg); color: var(--text);
  border: 2px solid var(--text); border-radius: 9999px;
  font-size: 15px; font-weight: 700; cursor: text;
}
.hs-hero-cta:hover { background: rgba(239,68,68,.08); }
.hs-hero-cta:focus { background: rgba(239,68,68,.13); outline: 1.5px dashed var(--accent) !important; }

/* ── Hizmet Yeni Ekle ── */
.hye-two-col { display: grid; grid-template-columns: 320px 1fr; gap: 28px; margin-bottom: 24px; align-items: start; }
.hye-lbl { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; }
.hye-tech { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }

.sv-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px 18px;
}
.sv-icon-row {
  background: var(--bg);
  border-radius: 8px;
  padding: 16px 0;
  text-align: center;
  margin-bottom: 16px;
}
.sv-icon {
  font-size: 34px;
  cursor: text;
  outline: none;
  border-radius: 4px;
  display: inline-block;
}
.sv-icon:hover { background: rgba(239,68,68,.07); }
.sv-icon:focus { outline: 1.5px dashed var(--accent) !important; outline-offset: 2px; }
.sv-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; display: block; }
.sv-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; display: block; }

/* ── Hakkımızda Sayfa Yönetimi ── */
.hk-section { margin-bottom: 28px; }
.hk-sec-lbl { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; margin-bottom: 10px; }
.hk-ce { border-radius: 4px; cursor: text; outline: none; display: block; }
.hk-ce:hover { background: rgba(239,68,68,.07); }
.hk-ce:focus { background: rgba(239,68,68,.12); outline: 1.5px dashed var(--accent) !important; }
.hk-inline { display: inline; }

/* Hero */
.hk-hero { background: #0d0d0d; border-radius: 14px; text-align: center; padding: 48px 40px; }
.hk-vurgu { color: var(--accent); }
.hk-hero-sub { font-size: 15px; color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto; line-height: 1.65; }

/* Hikaye two-col */
.hk-hikaye { display: grid; grid-template-columns: 1fr 260px; gap: 28px; background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; padding: 28px 24px; align-items: start; }
.hk-etkt { font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--accent); text-transform: uppercase; }
.hk-ttl { font-size: 24px; font-weight: 800; line-height: 1.25; }
.hk-ttl-center { text-align: center; }
.hk-para { font-size: 14px; color: var(--muted); line-height: 1.7; }
.hk-sub { font-size: 14px; color: var(--muted); margin-top: 4px; text-align: center; }

/* Stats box */
.hk-stats-box { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); border-radius: 10px; overflow: hidden; }
.hk-stat-item { background: var(--bg); padding: 16px 12px; text-align: center; }
.hk-stat-val { font-size: 24px; font-weight: 800; color: var(--accent); }
.hk-stat-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Değerler */
.hk-deger-wrap { background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; padding: 28px 24px; }
.hk-center-header { text-align: center; margin-bottom: 20px; }
.hk-deger-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hk-deger-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 18px 16px; }
.hk-deger-icon { width: 44px; height: 44px; background: rgba(239,68,68,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.hk-deger-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.hk-deger-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Misyon */
.hk-misyon-wrap { background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; padding: 28px 24px; }
.hk-misyon-list { display: flex; flex-direction: column; }
.hk-misyon-item { display: flex; align-items: flex-start; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.hk-misyon-item:last-child { border-bottom: none; }
.hk-misyon-no { font-size: 28px; font-weight: 800; color: var(--accent); min-width: 44px; line-height: 1.1; }
.hk-misyon-body { flex: 1; }
.hk-misyon-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.hk-misyon-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── Hero text color fix ── */
.hk-hero h2 { color: #fff; }

/* ── Destek Sayfa Yönetimi ── */
.dk-info-wrap { background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; padding: 28px 24px; }
.dk-info-list { display: flex; flex-direction: column; gap: 2px; }
.dk-info-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.dk-info-row:last-child { border-bottom: none; }
.dk-info-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 10px; background: rgba(239,68,68,.08); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.dk-info-body { flex: 1; }
.dk-info-lbl { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.dk-info-val { font-size: 14px; font-weight: 500; }
.dk-url-inp { margin-top: 6px; width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 6px 10px; font-size: 12px; color: var(--muted); font-family: inherit; box-sizing: border-box; }
.dk-kart-row { display: flex; align-items: flex-start; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.dk-kart-row:last-child { border-bottom: none; }
.dk-kart-ikon { width: 44px; height: 44px; font-size: 20px; text-align: center; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; flex-shrink: 0; font-family: inherit; }
.dk-kart-fields { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.dk-kart-baslik, .dk-kart-deger, .dk-kart-link { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 6px 10px; font-size: 13px; color: var(--text); font-family: inherit; box-sizing: border-box; }
.dk-kart-baslik { font-weight: 700; font-size: 12px; }
.dk-kart-link { font-size: 11px; color: var(--muted); }
.dk-kart-del { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 20px; padding: 0 2px; line-height: 1; flex-shrink: 0; }
.dk-kart-del:hover { color: var(--accent); }
/* Form replica */
.dk-contact-grid { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.dk-form-replica { background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; padding: 24px 20px; display: flex; flex-direction: column; gap: 14px; }
.dk-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dk-field { display: flex; flex-direction: column; gap: 5px; }
.dk-flbl { font-size: 13px; font-weight: 600; color: var(--text); }
.dk-opt-lbl { font-size: 12px; color: var(--muted); font-weight: 400; }
.dk-finp { border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; background: var(--bg); min-height: 36px; }
.dk-ftextarea { border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; background: var(--bg); min-height: 100px; }
.dk-fph { color: var(--muted); font-size: 13px; }
.dk-opts-wrap { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.dk-opts-lbl { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; margin-bottom: 6px; }
.dk-opts-list { display: flex; flex-wrap: wrap; gap: 6px; }
.dk-opt-item { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 3px 10px; font-size: 13px; }
.dk-success-box { background: rgba(22,163,74,.07); border: 1px solid rgba(22,163,74,.2); border-radius: 10px; padding: 14px; margin-top: 4px; }
.sv-btn-row { display: flex; gap: 10px; }
.sv-btn-primary {
  flex: 1; padding: 10px 0; border-radius: 8px;
  text-align: center; font-size: 14px; font-weight: 600;
  background: var(--accent); color: #fff;
}
.sv-btn-secondary {
  flex: 1; padding: 10px 0; border-radius: 8px;
  text-align: center; font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--border);
}

.sv-detail-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.sv-det-sec { margin-bottom: 26px; }
.sv-det-sec-hd {
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  color: var(--muted); margin-bottom: 10px; text-transform: uppercase;
  padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.sv-det-sec-sup   { font-size: 10px; font-weight: 700; letter-spacing: .08em; color: var(--accent); text-transform: uppercase; margin-bottom: 4px; }
.sv-det-sec-title { font-size: 17px; font-weight: 800; margin-bottom: 14px; }
.sv-det-acikl { font-size: 14px; color: var(--muted); line-height: 1.7; display: block; }

/* Hero dark preview */
.sv-det-hero {
  background: #0f0f0f;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 22px;
}
.sv-det-hero-note {
  font-size: 11px; color: #555; font-style: italic; margin-bottom: 14px;
  border: 1px dashed #333; border-radius: 6px; padding: 8px 10px;
}
.sv-det-stats-bar { display: flex; gap: 0; margin-bottom: 10px; }
.sv-istat-item {
  flex: 1; text-align: center; padding: 10px 8px;
  border-right: 1px solid #222; position: relative;
}
.sv-istat-item:last-child { border-right: none; }
.sv-istat-val { font-size: 20px; font-weight: 800; color: var(--accent); display: block; min-width: 20px; line-height: 1.1; }
.sv-istat-lbl { font-size: 11px; color: #777; display: block; margin-top: 4px; min-width: 20px; }
.sv-det-add-istat { border-color: #333 !important; color: #666 !important; }
.sv-det-add-istat:hover { border-color: var(--accent) !important; color: var(--accent) !important; }
.sv-istat-del {
  position: absolute; top: 4px; right: 4px;
  background: none; border: none; color: #444; font-size: 13px;
  cursor: pointer; padding: 0; line-height: 1;
}
.sv-istat-del:hover { color: var(--accent); }

/* Nasıl Çalışır - numbered circles */
.sv-nasil-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-bottom: 10px; }
.sv-nasil-item { position: relative; }
.sv-nasil-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px; flex-shrink: 0;
}
.sv-nasil-title { font-size: 13px; font-weight: 700; margin-bottom: 5px; display: block; min-width: 20px; }
.sv-nasil-desc  { font-size: 12px; color: var(--muted); line-height: 1.5; display: block; min-width: 20px; }

/* Neler Sunuyoruz preview */
.sv-feat-grid-preview { margin-bottom: 8px; }
.sv-feat-preview-note {
  font-size: 12px; color: var(--muted); font-style: italic;
  border: 1px dashed var(--border); border-radius: 8px;
  padding: 10px 14px;
}

/* Neden Bizi - title+desc cards */
.sv-neden-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 10px; }
.sv-neden-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 14px 14px 12px;
  position: relative;
}
.sv-neden-title { font-size: 13px; font-weight: 700; margin-bottom: 5px; display: block; min-width: 20px; }
.sv-neden-desc  { font-size: 12px; color: var(--muted); line-height: 1.5; display: block; min-width: 20px; }

/* SSS accordion rows */
.sv-sss-row {
  border-top: 1px solid var(--border);
  padding: 12px 32px 12px 0;
  margin-bottom: 0;
  position: relative;
}
.sv-sss-row:last-child { border-bottom: 1px solid var(--border); margin-bottom: 10px; }
.sv-sss-q { font-size: 13px; font-weight: 600; margin-bottom: 5px; display: block; min-width: 20px; }
.sv-sss-a { font-size: 12px; color: var(--muted); line-height: 1.5; display: block; min-width: 20px; }

.sv-row-del {
  position: absolute; top: 8px; right: 4px;
  background: none; border: none; color: var(--muted);
  font-size: 15px; cursor: pointer; opacity: .4; line-height: 1; padding: 0;
}
.sv-row-del:hover { opacity: 1; color: var(--accent); }

@media (max-width: 900px) {
  .hye-two-col { grid-template-columns: 1fr; }
  .hye-tech    { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════
   CUSTOM SELECT (c-select)
   ══════════════════════════════════ */

.c-select { position: relative; width: 100%; display: inline-block; }

.c-select-btn {
  width: 100%;
  padding: 8px 10px 8px 12px;
  border: 1px solid var(--border2);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  transition: border-color .2s, box-shadow .2s, background .15s;
  text-align: left;
  min-height: 36px;
}
.c-select-btn:hover { background: var(--bg2); border-color: var(--border2); }
.c-select.open .c-select-btn {
  border-color: var(--accent);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 0 3px var(--accent-light);
  background: var(--bg);
}

.cs-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.cs-arrow {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  color: var(--muted);
  transition: transform .2s, color .2s;
  pointer-events: none;
}
.c-select.open .cs-arrow { transform: rotate(180deg); color: var(--accent); }

.c-select-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--card);
  border: 1px solid var(--accent);
  border-top: none;
  border-radius: 0 0 10px 10px;
  list-style: none;
  z-index: 9999;
  overflow: hidden;
  overflow-y: auto;
  max-height: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.c-select.open .c-select-list { display: block; }

.c-select-item {
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: background .12s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-select-item:hover { background: var(--accent-light); color: var(--accent); }
.c-select-item.cs-selected { background: var(--accent-light); color: var(--accent); font-weight: 600; }
.c-select-item.cs-disabled { color: var(--muted); cursor: default; font-style: italic; }
.c-select-item.cs-disabled:hover { background: none; color: var(--muted); }

/* Compact: inline table selects */
.c-select.cs-compact .c-select-btn {
  padding: 4px 8px;
  font-size: 12px;
  min-height: 28px;
  border-radius: 7px;
}
.c-select.cs-compact.open .c-select-btn { border-radius: 7px 7px 0 0; }
.c-select.cs-compact .c-select-list { border-radius: 0 0 7px 7px; }
.c-select.cs-compact .c-select-item { padding: 6px 10px; font-size: 12px; }

/* ══════════════════════════════════
   SÖZLEŞME OLUŞTUR
   ══════════════════════════════════ */

/* Section override: full split layout (only when active) */
#s-sozlesme-olustur.active {
  display: grid;
  grid-template-columns: 360px 1fr;
  height: calc(100vh - var(--bar-h));
  overflow: hidden;
  padding: 0;
}

/* Left: scrollable form */
.sz-form-panel {
  border-right: 1px solid var(--border);
  overflow-y: auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg);
}

.sz-form-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.sz-group { display:flex; flex-direction:column; gap:10px; }

.sz-group-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.sz-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.sz-field { display:flex; flex-direction:column; gap:5px; }
.sz-field label { font-size: 11px; font-weight: 600; color: var(--muted); }

.sz-input {
  width: 100%;
  padding: 8px 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 12.5px;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.sz-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.sz-input option { background: var(--card); }
.sz-ta { resize: vertical; line-height: 1.5; }

/* Madde satırları */
.sz-madde-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.sz-madde-row textarea {
  flex: 1;
  padding: 7px 9px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text);
  font-size: 12px;
  font-family: inherit;
  resize: vertical;
  min-height: 52px;
  line-height: 1.5;
}
.sz-madde-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.sz-madde-del {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 7px;
  width: 28px;
  height: 28px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
  transition: all .2s;
}
.sz-madde-del:hover { color: var(--accent); border-color: var(--accent); }

.sz-add-btn {
  background: none;
  border: 1px dashed var(--accent-border);
  color: var(--accent);
  border-radius: 8px;
  padding: 7px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
}
.sz-add-btn:hover { background: var(--accent-light); }

.sz-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 4px;
}

/* Right: preview */
.sz-preview-panel {
  background: #1a1a1a;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sz-paper-wrap {
  width: 100%;
  max-width: 760px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  border-radius: 2px;
}

/* ─── A4 Paper (light, PDF-safe) ─── */
.sz-paper {
  font-family: 'Inter', 'DM Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
  width: 100%;
  min-height: 297mm;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.6;
}

.szp-bar { height: 6px; background: linear-gradient(90deg, #8B1E24, #c23b43); }

.szp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 32px 20px;
  border-bottom: 1px solid #e5e5e5;
}
.szp-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  letter-spacing: 2px;
  font-family: 'League Spartan', sans-serif;
}
.szp-brand-name span { color: #8B1E24; }
.szp-brand-sub { font-size: 9px; color: #8B1E24; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; }
.szp-brand-url { font-size: 10px; color: #aaa; margin-top: 5px; }

.szp-title-box { text-align: right; }
.szp-title { font-size: 26px; font-weight: 800; color: #8B1E24; letter-spacing: 3px; font-family: 'League Spartan', sans-serif; }
.szp-subtitle { font-size: 9px; color: #aaa; letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.szp-no {
  display: inline-block;
  margin-top: 8px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
}

.szp-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 18px 32px;
  background: #fafafa;
  border-bottom: 1px solid #e5e5e5;
}
.szp-info-label { font-size: 8px; text-transform: uppercase; letter-spacing: 2px; color: #8B1E24; font-weight: 700; margin-bottom: 6px; }
.szp-info-name { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 3px; }
.szp-info-detail { font-size: 11px; color: #555; }
.szp-detail-pair { display:flex; justify-content:space-between; font-size:11px; color:#555; padding: 3px 0; border-bottom: 1px solid #f0f0f0; }
.szp-detail-pair:last-child { border-bottom: none; }
.szp-detail-pair strong { color: #222; font-weight: 600; }

.szp-hizmet {
  padding: 18px 32px;
  border-bottom: 1px solid #e5e5e5;
}
.szp-hizmet-baslik { font-size: 8px; text-transform: uppercase; letter-spacing: 2px; color: #8B1E24; font-weight: 700; margin-bottom: 10px; }
.szp-hizmet-box {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 12px;
  color: #333;
  white-space: pre-wrap;
}
.szp-tutar-row {
  display: flex;
  justify-content: flex-end;
  padding: 10px 32px 0;
}
.szp-tutar-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #8B1E24;
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  min-width: 220px;
  font-weight: 700;
  font-size: 14px;
}

.szp-maddeler { padding: 18px 32px; flex: 1; }
.szp-maddeler-baslik { font-size: 8px; text-transform: uppercase; letter-spacing: 2px; color: #8B1E24; font-weight: 700; margin-bottom: 12px; }
.szp-madde {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.szp-madde:last-child { border-bottom: none; margin-bottom: 0; }
.szp-madde-no {
  width: 22px;
  height: 22px;
  background: #8B1E24;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.szp-madde-text { font-size: 12px; color: #333; line-height: 1.6; }

.szp-notlar { padding: 0 32px 18px; }
.szp-notlar-label { font-size: 8px; text-transform: uppercase; letter-spacing: 2px; color: #8B1E24; font-weight: 700; margin-bottom: 8px; }
.szp-notlar-box { background: #fff8f8; border: 1px solid #f0d5d5; border-radius: 6px; padding: 10px 14px; font-size: 11px; color: #555; white-space: pre-wrap; }

.szp-imza {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 18px 32px;
  border-top: 1px solid #e5e5e5;
}
.szp-imza-block { display:flex; flex-direction:column; gap:6px; }
.szp-imza-label { font-size: 9px; text-transform: uppercase; letter-spacing: 2px; color: #8B1E24; font-weight: 700; }
.szp-imza-name { font-size: 13px; font-weight: 700; color: #111; }
.szp-imza-line { border-top: 1px solid #ccc; margin-top: 28px; padding-top: 5px; font-size: 10px; color: #aaa; }

.szp-footer {
  background: #111;
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.szp-footer-left { display:flex; flex-direction:column; gap:2px; }
.szp-footer-brand { font-size: 12px; font-weight: 800; color: #fff; letter-spacing: 1px; }
.szp-footer-brand span { color: #8B1E24; }
.szp-footer-detail { font-size: 9px; color: #888; }
.szp-footer-right { font-size: 20px; font-weight: 800; color: #8B1E24; letter-spacing: 2px; }

/* ══════════════════════════════════
   DASHBOARD
   ══════════════════════════════════ */
.db-admin-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 10px;
}
.db-time {
  font-size: 11px; color: var(--muted);
  margin-bottom: 16px; margin-top: 2px;
}

/* Stat row override for 6 columns */
.db-stat-row { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .db-stat-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .db-stat-row { grid-template-columns: 1fr; } }

.db-stat-link { cursor: pointer; position: relative; overflow: hidden; }
.db-stat-link:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.db-stat-icon {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--border2); opacity: 0.6;
}

/* Hızlı aksiyonlar */
.db-actions-row { margin-bottom: 24px; }
.db-actions-label {
  font-size: 10px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.db-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.db-action-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-size: 13px; font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: all 0.15s;
}
.db-action-btn:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-light); transform: translateY(-1px);
}

/* 2-col grid */
.db-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
@media (max-width: 860px) { .db-grid { grid-template-columns: 1fr; } }

.db-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px;
  overflow: hidden;
}
.db-card-hd {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  font-size: 13px; font-weight: 700; color: var(--text);
}
.db-card-sub { font-size: 11px; font-weight: 400; color: var(--muted); }
.db-see-all { font-size: 11px; }

/* Aktivite feed */
.db-act-list { display: flex; flex-direction: column; gap: 10px; }
.db-act-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px;
}
.db-act-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 4px;
}
.db-act-body { flex: 1; min-width: 0; }
.db-act-text { color: var(--text); line-height: 1.4; }
.db-act-detail { color: var(--muted); font-size: 11px; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.db-act-time { color: var(--muted); font-size: 10px; margin-top: 2px; }
.db-act-empty { font-size: 12px; color: var(--muted); padding: 8px 0; }

/* Bekleyen işler */
.db-pend-list { display: flex; flex-direction: column; gap: 6px; }
.db-pend-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--bg2); border-radius: 9px;
  font-size: 13px; cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.db-pend-item:hover { background: var(--accent-light); transform: translateX(2px); }
.db-pend-item span:first-of-type { flex: 1; }
.db-pend-arrow { color: var(--muted); font-size: 12px; }

/* Plan dağılımı */
.db-plan-list { display: flex; flex-direction: column; gap: 12px; }
.db-plan-row {}
.db-plan-bar {
  height: 6px; background: var(--bg2); border-radius: 99px;
  overflow: hidden;
}
.db-plan-fill { height: 100%; border-radius: 99px; transition: width 0.6s ease; }

/* ══════════════════════════════════
   ONAY MODALI
   ══════════════════════════════════ */
.confirm-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.55);
  align-items: center; justify-content: center;
  backdrop-filter: blur(2px);
}
.confirm-overlay.open { display: flex; animation: secFadeIn 0.15s ease both; }

.confirm-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px 24px;
  max-width: 360px; width: 90%;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.confirm-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(164,42,42,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 4px;
}

.confirm-msg {
  font-size: 14px; font-weight: 500; color: var(--text);
  text-align: center; line-height: 1.6;
}

.confirm-btns {
  display: flex; gap: 10px; margin-top: 8px; width: 100%;
}
.confirm-btns .btn-ghost  { flex: 1; text-align: center; }
.confirm-btns .btn-primary { flex: 1; text-align: center; justify-content: center; }
.confirm-btns .confirm-danger { background: #dc2626; }
.confirm-btns .confirm-danger:hover { background: #b91c1c; box-shadow: 0 4px 14px rgba(220,38,38,0.3); }

/* ══════════════════════════════════
   TOPLU İŞLEM BARI
   ══════════════════════════════════ */
.bulk-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px;
  background: var(--accent-light);
  border-bottom: 1px solid var(--accent-border);
  flex-wrap: wrap; gap: 8px;
  animation: secFadeIn 0.15s ease both;
}
.bulk-count {
  font-size: 13px; font-weight: 700; color: var(--accent);
}

/* ══════════════════════════════════
   DARK MODE OVERRIDES
   ══════════════════════════════════ */

[data-theme="dark"] .f-input,
[data-theme="dark"] .gate-input { background: var(--bg2); }

[data-theme="dark"] .f-input::placeholder,
[data-theme="dark"] .gate-input::placeholder { color: #555; }

[data-theme="dark"] .c-select-btn { background: var(--bg2); }
[data-theme="dark"] .c-select-btn:hover { background: var(--bg); }
[data-theme="dark"] .c-select.open .c-select-btn { background: var(--bg2); }
[data-theme="dark"] .c-select-list { background: var(--card); }

/* Admin log + ekonomi section overrides */
[data-theme="dark"] .sz-input { background: var(--bg2); }
[data-theme="dark"] .sz-madde-row textarea { background: var(--bg2); }
