/* ============================================================
   ServisPanel — style.css
   Renk Paleti:
     Primary   : #2563EB
     Background: #F8FAFC
     Text      : #1E293B
     Warning   : #F59E0B
   ============================================================ */
 
/* ── Reset & Kök Değişkenler ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
:root {
  --primary:        #2563EB;
  --primary-hover:  #1d52c8;
  --primary-light:  #EFF4FF;
  --primary-muted:  rgba(37, 99, 235, 0.10);
 
  --bg:             #F8FAFC;
  --white:          #ffffff;
 
  --text:           #1E293B;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;
 
  --border:         #E2E8F0;
 
  --warning:        #F59E0B;
  --warning-light:  #FFFBEB;
 
  --error:          #EF4444;
  --error-light:    #FEF2F2;
 
  --success:        #10B981;
 
  --shadow-md:      0 4px 16px rgba(37, 99, 235, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
 
  --radius:         12px;
  --radius-sm:      8px;
}
 
html, body {
  height: 100%;
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  color: var(--text);
}
 
/* ============================================================
   Layout — İki Sütun
   ============================================================ */
.wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 460px;
}
 
/* ============================================================
   Sol Panel
   ============================================================ */
.left-panel {
  background: var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 52px;
  overflow: hidden;
}
 
/* Dekoratif daireler */
.left-panel::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -180px;
  right: -180px;
  pointer-events: none;
}
.left-panel::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -110px;
  left: -90px;
  pointer-events: none;
}
.deco-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  bottom: 150px;
  right: -60px;
  pointer-events: none;
}
 
/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
  z-index: 1;
  animation: fadeDown 0.6s ease both;
}
 
.logo-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
 
.logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-name span {
  opacity: 0.65;
  font-weight: 600;
}
 
/* ── Hero Metin ── */
.hero-text {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both 0.15s;
}
 
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
 
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warning);
  animation: blink 2s ease infinite;
}
 
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-title .sub {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}
 
.hero-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 34px;
}
 
/* ── Özellik Kartları ── */
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.feature-card {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  animation: fadeUp 0.5s ease both;
}
.feature-card:nth-child(1) { animation-delay: 0.30s; }
.feature-card:nth-child(2) { animation-delay: 0.42s; }
.feature-card:nth-child(3) { animation-delay: 0.54s; }
 
.fc-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-icon svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.9);
}
 
.fc-title {
  font-size: 0.81rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.fc-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 2px;
}
 
/* ── Sol Alt Not ── */
.left-footer {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  animation: fadeUp 0.5s ease both 0.6s;
}
 
/* ============================================================
   Sağ Panel — Form
   ============================================================ */
.right-panel {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.05);
  animation: fadeRight 0.7s ease both 0.1s;
}
 
/* Mobil logo (sadece küçük ekranlarda görünür) */
.mobile-logo {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.mobile-logo-icon {
  background: var(--primary-light) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.15) !important;
}
.mobile-logo-icon svg {
  color: var(--primary) !important;
}
.mobile-logo-name {
  color: var(--text) !important;
}
.mobile-logo-name span {
  color: var(--text-muted) !important;
  opacity: 1 !important;
}
 
/* ── Form Başlık ── */
.form-header {
  margin-bottom: 30px;
}
.form-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 5px;
}
.form-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}
 
/* ── Form Grupları ── */
.form-group {
  margin-bottom: 18px;
}
 
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
 
/* ── Input Alanları ── */
.input-wrap {
  position: relative;
}
 
.input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  transition: color 0.2s;
}
.input-icon svg {
  width: 15px;
  height: 15px;
}
 
input[type="email"],
input[type="password"],
input[type="text"] {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px 11px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
}
input::placeholder {
  color: var(--text-light);
}
input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px var(--primary-muted);
}
.input-wrap:focus-within .input-icon {
  color: var(--primary);
}
 
/* Şifre göster/gizle butonu */
.toggle-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px;
  line-height: 0;
  transition: color 0.2s;
}
.toggle-pw:hover {
  color: var(--primary);
}
.toggle-pw svg {
  width: 16px;
  height: 16px;
}
 
/* ── Seçenekler Satırı ── */
.row-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 24px;
}
 
.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.checkbox-wrap input[type="checkbox"] {
  width: 15px;
  height: 15px;
  padding: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.checkbox-wrap span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
 
.forgot-link {
  font-size: 0.82rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.forgot-link:hover {
  color: var(--primary-hover);
}
 
/* ── Hata Mesajı ── */
.error-msg {
  display: none;
  align-items: center;
  gap: 9px;
  background: var(--error-light);
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-size: 0.82rem;
  color: var(--error);
  margin-bottom: 16px;
  animation: shake 0.35s ease;
}
.error-msg.visible {
  display: flex;
}
.error-msg svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
 
/* ── Giriş Butonu ── */
.btn-login {
  width: 100%;
  padding: 12.5px;
  background: var(--primary);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-login:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-login:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn-login.loading {
  pointer-events: none;
  opacity: 0.82;
}
 
.btn-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-login.loading .btn-text   { display: none; }
.btn-login.loading .btn-spinner { display: block; }
 
/* ── Bilgi Notu ── */
.info-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  padding: 11px 13px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  font-size: 0.77rem;
  color: #3b6fd4;
  line-height: 1.55;
}
.info-note svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
 
/* ── Form Alt Alan ── */
.form-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
.version-text {
  font-size: 0.73rem;
  color: var(--text-light);
}
.version-text strong {
  font-weight: 600;
  color: var(--text-muted);
}
 
.secure-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.73rem;
  color: var(--success);
  font-weight: 500;
}
.secure-badge svg {
  width: 12px;
  height: 12px;
}
 
/* ============================================================
   Animasyonlar
   ============================================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
 
/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .wrapper {
    grid-template-columns: 1fr;
  }
  .left-panel {
    display: none;
  }
  .right-panel {
    padding: 40px 28px;
    min-height: 100vh;
    box-shadow: none;
  }
  .mobile-logo {
    display: flex;
  }
}
 
/* ============================================================
   Modal — tüm sayfalar için ortak
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.5);
  z-index: 200;
  align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; }
 
.modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%; max-width: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  animation: modalIn 0.25s ease both;
}
.modal--sm    { max-width: 480px; }
.modal--md    { max-width: 560px; }
.modal--large { max-width: 820px; }
.modal--sm .modal-body { max-height: 72vh; overflow-y: auto; }
 
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
 
.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}
.modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--text);
  margin-bottom: 2px;
}
.modal-sub   { font-size: 0.78rem; color: var(--text-muted); }
.modal-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-light); padding: 4px; border-radius: 6px;
  transition: background 0.15s, color 0.15s; line-height: 0;
}
.modal-close:hover { background: var(--bg); color: var(--text); }
.modal-close svg { width: 18px; height: 18px; }
.modal-body   { padding: 20px 24px; }
.modal-footer {
  display: flex; justify-content: flex-end; gap: 10px;
  padding: 16px 24px; border-top: 1px solid var(--border);
}
.form-group-modal          { margin-bottom: 12px; }
.form-group-modal:last-child { margin-bottom: 0; }
.modal-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.modal-input {
  width: 100%; padding: 10px 12px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.modal-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-muted);
  background: #fff;
}
.modal-input::placeholder { color: var(--text-light); }
.delete-warning {
  width: 52px; height: 52px;
  background: var(--error-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.delete-warning svg { width: 24px; height: 24px; stroke: var(--error); }
.delete-text {
  font-size: 0.875rem; color: var(--text-muted);
  text-align: center; line-height: 1.65;
}
 
/* ============================================================
   Filtre Bar — tüm sayfalar için ortak
   ============================================================ */
.filter-bar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.filter-search {
  position: relative; flex: 1; min-width: 220px;
}
.filter-search svg {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  stroke: var(--text-light); pointer-events: none;
}
.filter-search input {
  width: 100%; padding: 9px 13px 9px 38px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.filter-search input:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-muted);
}
.filter-search input::placeholder { color: var(--text-light); }
.filter-selects { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-select {
  padding: 9px 32px 9px 12px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.83rem; color: var(--text);
  outline: none; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: border-color 0.2s;
}
.filter-select:focus { border-color: var(--primary); }
 
/* Tablo footer */
.table-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 4px; font-size: 0.78rem; color: var(--text-muted);
}
.table-count { font-weight: 500; }
 
/* ============================================================
   Ortak sayfa elemanları — tüm detay sayfaları için
   ============================================================ */
 
/* Listeye Dön butonu */
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); padding: 0;
  transition: color 0.15s;
}
.back-btn:hover { color: var(--primary); }
.back-btn svg { width: 15px; height: 15px; }
 
/* Navigasyon okları */
.nav-arrows {
  display: flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 4px 8px;
}
.nav-arrow-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 3px;
  display: flex; align-items: center;
  border-radius: 4px; transition: color 0.15s, background 0.15s;
}
.nav-arrow-btn:hover { color: var(--primary); background: var(--primary-light); }
.nav-arrow-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.nav-arrow-btn svg { width: 15px; height: 15px; }
.nav-arrow-info {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text); padding: 0 4px; white-space: nowrap;
}
 
/* Form section */
.form-section {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.form-section-header {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  background: #FAFBFC;
}
.form-section-icon {
  width: 30px; height: 30px; background: var(--primary-light);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.form-section-icon svg { width: 14px; height: 14px; stroke: var(--primary); }
.form-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem; font-weight: 700; color: var(--text);
}
.section-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label {
  font-size: 0.78rem; font-weight: 600; color: var(--text);
}
.form-field input, .form-field select, .form-field textarea {
  padding: 9px 12px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.855rem; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%; box-sizing: border-box;
}
.form-field input:focus, .form-field select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-muted); background: #fff;
}
.form-field input::placeholder { color: var(--text-light); }
.input-readonly { background: var(--bg) !important; color: var(--text-muted); cursor: default; }
.req { color: var(--error); font-size: 0.75rem; }
 
/* compact-col */
.compact-col { display: flex; flex-direction: column; gap: 14px; }
 
/* Sticky kaydet */
.form-actions-sticky {
  position: sticky; bottom: 0; z-index: 10;
  background: rgba(248,250,252,0.95); backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  margin: 16px -28px -40px; padding: 12px 28px;
}
.form-actions-inner { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.form-actions-hint { font-size: 0.78rem; color: var(--error); font-weight: 500; flex: 1; }
 
/* Zorunlu alan hata */
.field-error input, .field-error select { border-color: var(--error) !important; background: #FEF2F2 !important; }
.field-error-msg { font-size: 0.72rem; color: var(--error); font-weight: 500; margin-top: 3px; display: block; }
 
/* Toast */
.toast-msg {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1E293B; color: #fff;
  font-size: 0.82rem; font-weight: 500;
  padding: 11px 18px; border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  display: none; align-items: center; gap: 9px;
  z-index: 9999; opacity: 0;
  transition: opacity 0.25s, transform 0.25s; white-space: nowrap;
}
.toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }
 
/* address-wrap */
.address-wrap { display: flex; gap: 8px; }
.address-wrap input { flex: 1; }
.btn-map-pin {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 12px; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted); white-space: nowrap;
  transition: all 0.15s;
}
.btn-map-pin:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn-map-pin svg { width: 13px; height: 13px; }
 
/* input-prefix */
.input-prefix-wrap { position: relative; }
.input-prefix {
  position: absolute; left: 10px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  pointer-events: none;
}
 
/* ============================================================
   Sekmeler — tüm sayfalar için ortak
   ============================================================ */
.tabs {
  display: flex; gap: 4px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 5px;
  margin-bottom: 20px; width: fit-content;
}
.tab-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 20px; background: none; border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.tab-btn svg { width: 15px; height: 15px; }
.tab-btn:hover { background: var(--bg); color: var(--text); }
.tab-active { background: var(--primary) !important; color: #fff !important; font-weight: 600 !important; }
.tab-active:hover { background: var(--primary-hover) !important; }
.tab-btn:disabled { opacity: 0.4; cursor: not-allowed; }
 
.tabs--inline {
  background: none; border: none; padding: 0;
  margin-bottom: 0; width: fit-content;
}
.tabs--inline .tab-btn { padding: 8px 16px; font-size: 0.83rem; }
 
/* ============================================================
   Breadcrumb — tüm sayfalar için ortak
   ============================================================ */
.topbar-breadcrumb {
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb-link {
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb-link:hover { color: var(--primary); }
.breadcrumb-sep {
  font-size: 0.82rem; color: var(--border);
  font-weight: 400; user-select: none;
}
.breadcrumb-page {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem; font-weight: 700; color: var(--text);
}
 
/* ============================================================
   Ortak UI Bileşenleri — pay-type, radio, method-radio
   ============================================================ */
 
/* Pay type butonlar */
.pay-type-group { display: flex; gap: 10px; }
.pay-type-btn {
  display: flex; align-items: center; gap: 8px; flex: 1;
  padding: 10px 14px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: 0.84rem; font-weight: 500;
  color: var(--text-muted); transition: all 0.2s; user-select: none;
}
.pay-type-btn input[type="radio"] { display: none; }
.pay-type-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.pay-type-btn--active,
.pay-type-btn:has(input:checked) {
  border-color: var(--primary); background: var(--primary-light);
  color: var(--primary); font-weight: 600;
}
 
/* Radio group */
.radio-group { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-item {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; font-size: 0.83rem; font-weight: 500;
  color: var(--text-muted); transition: all 0.15s; user-select: none;
}
.radio-item input[type="radio"] { display: none; }
.radio-item--active,
.radio-item:has(input:checked) {
  border-color: var(--primary); background: var(--primary-light);
  color: var(--primary); font-weight: 600;
}
 
/* Method radio */
.method-radio-group {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.method-radio {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 8px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted); transition: all 0.15s; user-select: none;
}
.method-radio input[type="radio"] { display: none; }
.method-radio svg { width: 14px; height: 14px; flex-shrink: 0; }
.method-radio--active,
.method-radio:has(input:checked) {
  border-color: var(--primary); background: var(--primary-light);
  color: var(--primary); font-weight: 600;
}