/* ============================================================
   Gemini Travel — Rehber Portal
   Tasarım: gemini|travel kurumsal kimliği
   ============================================================ */

:root {
  --brand: #0d9488;
  --brand-600: #0f766e;
  --brand-700: #115e59;
  --brand-50: #f0fdfa;
  --brand-100: #ccfbf1;

  --ink: #0f172a;
  --ink-700: #1e293b;
  --ink-600: #334155;
  --ink-500: #475569;
  --ink-400: #64748b;
  --ink-300: #94a3b8;
  --ink-200: #cbd5e1;
  --ink-100: #e2e8f0;
  --ink-50:  #f1f5f9;

  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-sunken: #f1f5f9;

  --danger: #dc2626;
  --danger-50: #fef2f2;
  --warn: #d97706;
  --warn-50: #fffbeb;
  --ok: #059669;
  --ok-50: #ecfdf5;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 20px -8px rgba(15, 23, 42, 0.12), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.18);

  --sidebar-w: 244px;
  --header-h: 64px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
img { max-width: 100%; display: block; }

/* Brand wordmark — gemini|travel */
.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 400;
  letter-spacing: -0.02em;
  user-select: none;
  line-height: 1;
}
.brand-mark .brand-name {
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--ink);
}
.brand-mark .brand-sep {
  color: var(--brand);
  font-weight: 300;
  font-size: 1.55rem;
  margin: 0 1px;
}
.brand-mark .brand-tag {
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--ink-600);
  letter-spacing: -0.01em;
}
.brand-mark .brand-sub {
  align-self: flex-end;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--ink-300);
  text-transform: lowercase;
  margin-left: 4px;
  margin-bottom: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: background-color .15s, color .15s, border-color .15s, transform .05s;
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1.2;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-600); }
.btn-ghost { background: transparent; color: var(--ink-500); }
.btn-ghost:hover { background: var(--ink-50); color: var(--ink); }
.btn-outline { background: #fff; border: 1px solid var(--ink-200); color: var(--ink-600); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #b91c1c; }
.btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 8px; }
.btn-xs { padding: 5px 10px; font-size: 12px; border-radius: 8px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* Form */
.field { display: block; margin-bottom: 16px; }
.field-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.field-input,
.field-select,
.field-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  background: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}
.field-input::placeholder { color: var(--ink-300); }
.field-textarea { resize: vertical; min-height: 90px; }
.field-hint { font-size: 12px; color: var(--ink-400); margin-top: 6px; }
.field-error { font-size: 12px; color: var(--danger); margin-top: 6px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Avatar */
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-lg { width: 88px; height: 88px; font-size: 28px; }
.avatar-xl { width: 120px; height: 120px; font-size: 38px; }
.avatar-sm { width: 32px; height: 32px; font-size: 11px; }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--ink-50);
  color: var(--ink-700);
  white-space: nowrap;
}
.badge-brand { background: var(--brand-50); color: var(--brand-700); }
.badge-ok { background: var(--ok-50); color: var(--ok); }
.badge-warn { background: var(--warn-50); color: var(--warn); }
.badge-danger { background: var(--danger-50); color: var(--danger); }
.badge-dot::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

/* Tabs */
.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-sunken);
  border-radius: 12px;
}
.tab {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-500);
  transition: background .15s, color .15s;
}
.tab:hover { color: var(--ink); }
.tab.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-xs); }

/* Card */
.card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.card + .card { margin-top: 20px; }

/* Toast */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  pointer-events: none;
}
.toast {
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  max-width: 360px;
  pointer-events: auto;
  animation: toastIn .2s ease-out;
}
.toast.toast-ok { background: var(--ok); }
.toast.toast-err { background: var(--danger); }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  padding: 20px;
  animation: fadeIn .15s ease-out;
}
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn .2s ease-out;
}
.modal-lg { max-width: 720px; }
.modal-xl { max-width: 960px; }
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--ink-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 { margin: 0; font-size: 17px; font-weight: 700; }
.modal-body { padding: 24px; }
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--ink-100);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.modal-close {
  color: var(--ink-400);
  font-size: 24px;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 8px;
}
.modal-close:hover { background: var(--ink-50); color: var(--ink); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--ink-200); border-radius: 10px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-300); background-clip: content-box; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 56px 20px;
  color: var(--ink-400);
}
.empty-state h4 { color: var(--ink-700); margin: 0 0 6px; font-size: 15px; }

/* Utility */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 4px; } .gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mb-4 { margin-bottom: 4px; } .mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 12px; }
.text-muted { color: var(--ink-400); }
.text-ink { color: var(--ink); }
.text-ink-500 { color: var(--ink-500); }
.text-brand { color: var(--brand); }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.hidden { display: none !important; }
.w-full { width: 100%; }
.uppercase { text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.leading-tight { line-height: 1.25; }

/* ============================================================
   LOGIN SAYFASI
   ============================================================ */
.login-page {
  min-height: 100vh;
  position: relative;
  background: var(--ink-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.login-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: 1fr;
  gap: 2px;
  filter: grayscale(1) contrast(0.95) brightness(0.95);
  opacity: 0.55;
  z-index: 0;
}
.login-mosaic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at center, rgba(241, 245, 249, 0.95), rgba(241, 245, 249, 0.55));
  z-index: 1;
}
.login-mosaic .tile {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 1;
}
.login-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px -20px rgba(15, 23, 42, 0.25), 0 8px 20px -8px rgba(15, 23, 42, 0.12);
  padding: 44px 40px 36px;
}
.login-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 8px;
  margin-bottom: 12px;
  border-radius: 10px;
}
.login-subtitle {
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
  margin: 0 0 28px;
  font-weight: 500;
}
.login-footer {
  text-align: center;
  color: var(--ink-300);
  font-size: 12px;
  margin-top: 24px;
  letter-spacing: 0.02em;
}
.login-error {
  background: var(--danger-50);
  border: 1px solid #fecaca;
  color: var(--danger);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}
.login-error.visible { display: block; }
.login-admin-link {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-300);
}
.login-admin-link a { color: var(--ink-400); text-decoration: underline; text-decoration-color: var(--ink-200); }
.login-admin-link a:hover { color: var(--brand); }

@media (max-width: 500px) {
  .login-card { padding: 32px 24px 28px; }
  .login-mosaic { grid-template-columns: repeat(5, 1fr); }
}

/* ============================================================
   SİDEBAR / APP SHELL
   ============================================================ */
.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
  background: var(--bg-alt);
}
.sidebar {
  background: #fff;
  border-right: 1px solid var(--ink-100);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 30;
}
.sidebar-logo {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--ink-100);
  display: flex;
  align-items: center;
}
.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink-500);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 2px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.nav-item:hover { background: var(--ink-50); color: var(--ink); }
.nav-item.active { background: var(--brand); color: #fff; }
.nav-item.active .nav-icon { color: #fff; }
.nav-icon {
  width: 18px;
  height: 18px;
  color: var(--ink-400);
  flex-shrink: 0;
}
.nav-item:hover .nav-icon { color: var(--ink); }
.nav-section {
  padding: 18px 14px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-300);
}
.sidebar-user {
  padding: 14px 16px;
  border-top: 1px solid var(--ink-100);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-user-info { flex: 1; min-width: 0; }
.sidebar-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-user-role {
  font-size: 11px;
  color: var(--ink-400);
}
.logout-btn {
  color: var(--ink-300);
  padding: 6px;
  border-radius: 8px;
}
.logout-btn:hover { background: var(--danger-50); color: var(--danger); }

.app-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.app-header {
  height: var(--header-h);
  padding: 0 32px;
  background: #fff;
  border-bottom: 1px solid var(--ink-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
}
.app-header h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.app-header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-500);
  font-size: 13px;
}
.app-content {
  padding: 28px 32px;
  flex: 1;
}
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.page-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.page-subtitle {
  color: var(--ink-400);
  font-size: 13px;
  margin-top: 4px;
}
.page-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Mobile toggles */
.mobile-menu-btn {
  display: none;
  padding: 8px;
  border-radius: 8px;
  color: var(--ink-500);
}
.mobile-menu-btn:hover { background: var(--ink-50); }

/* ============================================================
   MOBİL
   ============================================================ */
@media (max-width: 900px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    transform: translateX(-100%);
    transition: transform .2s;
    box-shadow: var(--shadow-lg);
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 29;
    display: none;
  }
  .sidebar-backdrop.visible { display: block; }
  .mobile-menu-btn { display: flex; }
  .app-header { padding: 0 16px; }
  .app-header h1 { font-size: 15px; }
  .app-header-meta { gap: 12px; font-size: 12px; }
  .app-content { padding: 18px 16px; }
  .page-title { font-size: 22px; }
}

/* ============================================================
   KART / LİSTELER — ortak
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
}
.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
  letter-spacing: -0.02em;
}
.stat-foot { font-size: 12px; color: var(--ink-400); margin-top: 6px; }

.data-table {
  width: 100%;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.data-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-400);
  padding: 14px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--ink-100);
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ink-100);
  font-size: 13.5px;
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table tr:hover td { background: var(--bg-alt); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); }

/* --- Rehber uygulaması özel --- */
.assignment-list { display: flex; flex-direction: column; gap: 12px; }
.assignment-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  transition: border-color .15s, box-shadow .15s;
}
.assignment-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.assignment-code {
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 12px;
  color: var(--brand-700);
  background: var(--brand-50);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}
.assignment-main h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; }
.assignment-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--ink-500); flex-wrap: wrap; }
.assignment-dates { text-align: right; font-size: 13px; color: var(--ink-600); }
.assignment-dates b { display: block; color: var(--ink); font-size: 14px; }
@media (max-width: 700px) {
  .assignment-card { grid-template-columns: 1fr; }
  .assignment-dates { text-align: left; }
}

/* --- Mağaza kartları --- */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 18px;
}
.store-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s;
  position: relative;
}
.store-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--hero-accent, var(--brand));
  z-index: 2;
}
.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.store-hero {
  height: 200px;
  padding: 14px 16px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #334155;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.store-card:hover .store-hero { background-size: 108%; }
.store-hero, .store-hero > * { transition: all .4s ease; }

.store-hero-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  z-index: 1;
}
.store-chip {
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: .02em;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.store-badge {
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
}
.store-badge-gold {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 2px 10px rgba(217,119,6,0.4);
}
.store-badge-silver {
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  color: var(--ink);
  border-color: rgba(255,255,255,0.35);
}

.store-hero-bottom {
  position: relative;
  z-index: 1;
  padding-right: 90px;
}
.store-hero-bottom h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  line-height: 1.2;
}
.store-hero-loc {
  font-size: 12px;
  opacity: 0.95;
  margin-top: 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.store-hero-comm {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--hero-accent, var(--brand-700));
  border-radius: 12px;
  padding: 8px 14px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.5);
}
.store-hero-comm b {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.store-hero-comm span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
  font-weight: 600;
}

.store-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-600);
}
.store-kv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  padding: 10px 12px;
  background: var(--bg-sunken);
  border-radius: 10px;
}
.store-body .kv {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.store-body .kv span:first-child {
  color: var(--ink-400);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.store-body .kv b {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}
.store-notes {
  background: linear-gradient(135deg, var(--warn-50), #fff);
  border: 1px solid #fde68a;
  border-left: 3px solid var(--warn);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--ink-700);
  line-height: 1.55;
  margin-top: auto;
}
.store-notes-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warn);
  margin-bottom: 4px;
}

/* --- Takvim --- */
.calendar {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink-100);
}
.calendar-head h3 { margin: 0; font-size: 17px; font-weight: 700; }
.calendar-nav { display: flex; gap: 6px; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-dow {
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  border-bottom: 1px solid var(--ink-100);
  background: var(--bg-alt);
  text-align: left;
}
.calendar-cell {
  min-height: 90px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--ink-100);
  border-right: 1px solid var(--ink-100);
  background: #fff;
  position: relative;
}
.calendar-cell:nth-child(7n) { border-right: 0; }
.calendar-cell.other-month { background: var(--bg-alt); color: var(--ink-300); }
.calendar-cell.is-today .cell-date { color: var(--brand); font-weight: 700; }
.calendar-cell.is-today::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 2px var(--brand);
  pointer-events: none;
}
.cell-date { font-size: 12px; font-weight: 600; color: var(--ink-600); margin-bottom: 4px; }
.calendar-cell.is-booked { background: linear-gradient(180deg, var(--brand-50), #fff); }
.calendar-cell.is-free::after {
  content: 'BOŞ';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ok);
  background: var(--ok-50);
  padding: 2px 6px;
  border-radius: 4px;
}
.cal-chip {
  display: block;
  font-size: 11px;
  font-weight: 600;
  background: var(--brand);
  color: #fff;
  padding: 3px 6px;
  border-radius: 4px;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal-chip.pending { background: var(--warn); }
.cal-chip.cancelled { background: var(--ink-300); }
@media (max-width: 700px) {
  .calendar-cell { min-height: 64px; padding: 6px; }
  .cell-date { font-size: 11px; }
  .cal-chip { font-size: 10px; padding: 2px 4px; }
  .calendar-dow { font-size: 10px; padding: 8px 6px; }
}

/* Session bar: "ilk girişte şifre değiştir" */
.banner {
  background: var(--warn-50);
  border: 1px solid #fde68a;
  color: #92400e;
  padding: 12px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  margin-bottom: 20px;
}
.banner button { color: #92400e; }

/* Login-inline admin kartı */
.admin-card { border: 1px solid var(--ink-100); }

/* Table row with actions */
.row-actions { display: flex; gap: 6px; justify-content: flex-end; }

/* Icon button */
.icon-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--ink-400);
  transition: background .15s, color .15s;
}
.icon-btn:hover { background: var(--ink-50); color: var(--ink); }
.icon-btn.danger:hover { background: var(--danger-50); color: var(--danger); }

/* Chip */
.chip {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: var(--ink-50);
  color: var(--ink-600);
  letter-spacing: 0.02em;
}
.chip-brand { background: var(--brand-50); color: var(--brand-700); }
.chip-warn { background: var(--warn-50); color: var(--warn); }
.chip-ok { background: var(--ok-50); color: var(--ok); }
.chip-danger { background: var(--danger-50); color: var(--danger); }

/* Divider */
.divider {
  height: 1px;
  background: var(--ink-100);
  margin: 20px 0;
}

/* Kategori rozetleri */
.cat-B6 { background: #ecfeff; color: #155e75; }
.cat-A  { background: var(--brand-50); color: var(--brand-700); }
.cat-B  { background: #eef2ff; color: #3730a3; }
.cat-C  { background: #fef3c7; color: #92400e; }

/* ============================================================
   MOBİL & DOKUNMATİK — iPhone / Android
   ============================================================ */

/* Dokunmatik dostu genel ayarlar */
html { -webkit-text-size-adjust: 100%; }
body {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  overscroll-behavior-y: none;
}
button, .btn, .nav-item, .tab, a {
  -webkit-tap-highlight-color: transparent;
}
body.no-scroll { overflow: hidden; position: fixed; width: 100%; }

/* iOS'ta input focus'unda sayfayı yakınlaştırmayı önle (≥16px) */
@media (max-width: 768px) {
  .field-input, .field-select, .field-textarea, input[type="text"],
  input[type="password"], input[type="email"], input[type="number"],
  input[type="tel"], input[type="date"], textarea, select {
    font-size: 16px !important;
  }
}

/* Safe-area (iPhone çentik / ana ekran çubuğu) */
.app-header { padding-top: env(safe-area-inset-top, 0); }
.app-content { padding-bottom: calc(28px + env(safe-area-inset-bottom, 0)); }
.login-page { padding-bottom: env(safe-area-inset-bottom, 0); }
.sidebar {
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.modal-backdrop { padding: calc(12px + env(safe-area-inset-top, 0)) 12px calc(12px + env(safe-area-inset-bottom, 0)); }

/* iOS'da 100vh sorununu aş — dvh varsa onu kullan */
@supports (height: 100dvh) {
  .sidebar { height: 100dvh; }
  .app-shell { min-height: 100dvh; }
  .login-page { min-height: 100dvh; }
}

/* 900px altı — mevcut sidebar kuralları güçlendir */
@media (max-width: 900px) {
  .sidebar {
    width: min(86vw, 320px);
    max-width: 320px;
  }
  .sidebar-logo { padding: 18px 20px; }
  .sidebar-nav { padding: 12px 10px; }
  .nav-item {
    padding: 12px 14px;
    font-size: 14.5px;
    min-height: 44px;
  }
  .nav-icon { width: 20px; height: 20px; }
  .sidebar-user { padding: 14px 16px; }
  .mobile-menu-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .app-header {
    padding: 0 14px;
    gap: 8px;
  }
  .app-header h1 {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .app-header-meta { font-size: 11.5px; gap: 8px; }
  .app-content { padding: 16px 14px; }
  .page-title { font-size: 20px; }
  .page-subtitle { font-size: 12.5px; }
  .page-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 16px;
  }

  /* Stat grid — iPad'e kadar 2 kolon */
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
  }
  .stat-card { padding: 14px 16px; }
  .stat-value { font-size: 24px; margin-top: 4px; }
  .stat-label { font-size: 10px; }
  .stat-foot { font-size: 11px; margin-top: 4px; }

  /* Card ve form */
  .card { padding: 18px 16px; }
  .card + .card { margin-top: 14px; }

  /* Tabs - yatay kaydırmalı */
  .tabs {
    display: flex;
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab {
    padding: 9px 14px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Buton — dokunma hedefi */
  .btn {
    min-height: 42px;
    padding: 10px 16px;
  }
  .btn-sm { min-height: 36px; padding: 8px 14px; }
  .btn-xs { min-height: 30px; }

  /* Modal — alt yaprak (bottom sheet) */
  .modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }
  .modal {
    max-width: 100%;
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 92dvh;
    animation: sheetIn .22s cubic-bezier(.2,.8,.2,1);
  }
  .modal-lg, .modal-xl { max-width: 100%; }
  .modal-header { padding: 16px 18px; position: sticky; top: 0; background: #fff; z-index: 2; }
  .modal-body { padding: 16px 18px; }
  .modal-footer {
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0));
    position: sticky;
    bottom: 0;
    background: #fff;
  }
  @keyframes sheetIn {
    from { transform: translateY(32px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  /* Login sayfası */
  .login-card {
    margin: 12px;
    padding: 28px 22px 24px;
    max-width: 100%;
    width: calc(100% - 24px);
  }
  .login-subtitle { font-size: 13px; }

  /* Atama kartı */
  .assignment-card {
    grid-template-columns: 1fr !important;
    gap: 6px;
    padding: 14px;
  }
  .assignment-card h4 { font-size: 15px; }
  .assignment-meta { flex-wrap: wrap; gap: 8px; }
  .assignment-dates { text-align: left; }

  /* Mağaza kartları */
  .store-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .store-hero { height: 170px; padding: 12px 14px; }
  .store-hero-bottom { padding-right: 84px; }
  .store-hero-bottom h4 { font-size: 17px; }
  .store-hero-comm { right: 10px; bottom: 10px; padding: 6px 10px; }
  .store-hero-comm b { font-size: 17px; }
  .store-body { padding: 14px 16px 16px; }
  .store-kv-row { padding: 10px; }

  /* Takvim */
  .calendar-head { padding: 12px 14px; flex-wrap: wrap; gap: 8px; }
  .calendar-head h3 { font-size: 16px; }
  .calendar-cell { min-height: 56px; padding: 4px; }
  .cell-date { font-size: 11px; }
  .cal-chip { font-size: 9.5px; padding: 2px 4px; }
  .calendar-dow { font-size: 10px; padding: 6px 4px; }

  /* Tablolar — yatay kaydırma işaretleyicisi */
  .table-wrap {
    margin: 0 -14px;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
  }
  .data-table { border-radius: 0; border-left: 0; border-right: 0; font-size: 13px; }
  .data-table th, .data-table td { padding: 12px 14px; }

  /* Toast */
  .toast-container {
    top: calc(12px + env(safe-area-inset-top, 0));
    right: 12px;
    left: 12px;
  }
  .toast { min-width: 0; max-width: 100%; font-size: 13px; }

  /* Banner */
  .banner { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 13px; padding: 12px 14px; }

  /* Icon butonlar dokunma alanı */
  .icon-btn { width: 38px; height: 38px; }
}

/* 600px altı — çoğu telefon */
@media (max-width: 600px) {
  .login-card { padding: 24px 18px 22px; border-radius: 18px; }
  .brand-mark .brand-name,
  .brand-mark .brand-sep { font-size: 1.35rem; }
  .brand-mark .brand-tag { font-size: 1.25rem; }

  /* Login mozaik - daha az sıra */
  .login-mosaic { grid-template-columns: repeat(4, 1fr) !important; }

  /* Avatarlar küçült */
  .avatar-xl { width: 92px; height: 92px; font-size: 30px; }
  .avatar-lg { width: 64px; height: 64px; font-size: 22px; }

  /* Profil kartı tek kolona */
  .card[style*="grid-template-columns: 160px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: center;
  }

  /* Ana takvim - 7 sütun dar */
  .calendar-grid { font-size: 11px; }
  .calendar-cell { min-height: 48px; }
}

/* 420px altı - en dar telefonlar */
@media (max-width: 420px) {
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-card { padding: 12px 14px; }
  .stat-value { font-size: 22px; }
  .sidebar { width: 90vw; }
  .store-hero { height: 150px; }
  .store-hero-bottom h4 { font-size: 15.5px; }
  .calendar-cell { min-height: 44px; padding: 3px; }
  .cal-chip { font-size: 9px; }
  .app-header-meta { display: none; }
}

/* Yatay (landscape) telefon - kısa ekran */
@media (max-height: 500px) and (orientation: landscape) {
  .login-card { padding: 20px 22px; }
  .login-mosaic { grid-template-columns: repeat(8, 1fr) !important; }
  .sidebar { height: 100vh; }
}

/* ============================================================
   REHBER TANIMA FORMU — PREMIUM
   ============================================================ */
.intake-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 980px;
}

/* Loading */
.intake-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 20px;
  color: var(--ink-400);
  font-size: 14px;
}
.spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--ink-100);
  border-top-color: var(--brand);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- HERO ---------- */
.intake-hero {
  position: relative;
  max-width: 980px;
  margin-bottom: 24px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(1200px 400px at 85% -10%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(135deg, #0b5f58 0%, #0d9488 55%, #14b8a6 100%);
  color: #fff;
  padding: 40px 44px 34px;
  box-shadow: 0 24px 50px -20px rgba(13, 148, 136, 0.45), 0 2px 4px rgba(15, 23, 42, 0.08);
}
.intake-hero-glow {
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.35), transparent 70%);
  pointer-events: none;
}
.intake-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.intake-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.intake-hero-eyebrow svg { width: 16px; height: 16px; }
.intake-hero-sparkle { color: #fef3c7; }
.intake-hero-title {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.intake-hero-title b { font-weight: 800; color: #fff; }
.intake-hero-sub {
  margin: 0 0 26px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
}
.intake-hero-sub b { color: #fff; font-weight: 600; }

.intake-progress-wrap {
  padding: 16px 18px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
}
.intake-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.intake-progress-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
}
.intake-progress-value {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
}
.intake-progress-value b {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
.intake-progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  overflow: hidden;
}
.intake-progress-bar > div {
  height: 100%;
  background: linear-gradient(90deg, #fef3c7, #fff);
  border-radius: 999px;
  transition: width .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 0 12px rgba(255,255,255,0.5);
}
.intake-progress-foot {
  margin-top: 12px;
  font-size: 12.5px;
}
.intake-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 12px;
}
.intake-hero-chip svg { width: 14px; height: 14px; }
.intake-hero-chip-ok {
  background: rgba(134, 239, 172, 0.22);
  border-color: rgba(134, 239, 172, 0.4);
  color: #ecfccb;
}

/* ---------- BÖLÜMLER ---------- */
.intake-section {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  padding: 30px 32px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: box-shadow .2s ease, transform .2s ease;
}
.intake-section:hover {
  box-shadow: 0 6px 18px -6px rgba(15, 23, 42, 0.09), 0 2px 4px rgba(15, 23, 42, 0.03);
}

.intake-section-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}
.intake-section-title { flex: 1; min-width: 0; }
.intake-section-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-700, #1e293b);
  letter-spacing: -0.015em;
}
.intake-section-title p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--ink-400);
  line-height: 1.55;
}
.intake-step {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ccfbf1, #f0fdfa);
  color: var(--brand-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  border: 1px solid rgba(13, 148, 136, 0.15);
}
.intake-optional-tag {
  flex-shrink: 0;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ink-100);
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.intake-subfield .field-label { color: var(--ink-500); font-size: 13px; }

/* ---------- TUR KARTLARI ---------- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.tour-choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--ink-100);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: all .18s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}
.tour-choice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.tour-choice:hover {
  border-color: rgba(13, 148, 136, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(13, 148, 136, 0.2);
}
.tour-choice:hover::before { opacity: 1; }
.tour-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tour-choice.is-checked {
  border-color: var(--brand);
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
  box-shadow: 0 6px 20px -6px rgba(13, 148, 136, 0.35), inset 0 0 0 1px rgba(13, 148, 136, 0.1);
}
.tour-choice.is-checked::before { opacity: 1; }
.tour-choice-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--bg-sunken);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  transition: all .18s ease;
}
.tour-choice-icon svg { width: 26px; height: 26px; }
.tour-choice:hover .tour-choice-icon {
  background: var(--brand-50);
  color: var(--brand);
}
.tour-choice.is-checked .tour-choice-icon {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px -3px rgba(13, 148, 136, 0.5);
}
.tour-choice-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tour-choice-title {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-700, #1e293b);
  letter-spacing: -0.005em;
}
.tour-choice-desc {
  font-size: 12px;
  color: var(--ink-400);
}
.tour-choice-tick {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 3px 8px -2px rgba(13, 148, 136, 0.5);
}
.tour-choice-tick svg { width: 14px; height: 14px; }
.tour-choice.is-checked .tour-choice-tick { opacity: 1; transform: scale(1); }

/* ---------- RADYO (KOKART) ---------- */
.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.radio-choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1.5px solid var(--ink-100);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: all .18s cubic-bezier(.4, 0, .2, 1);
}
.radio-choice:hover {
  border-color: rgba(13, 148, 136, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(13, 148, 136, 0.2);
}
.radio-choice input { position: absolute; opacity: 0; pointer-events: none; }
.radio-choice.is-checked {
  border-color: var(--brand);
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
  box-shadow: 0 6px 20px -6px rgba(13, 148, 136, 0.35);
}
.radio-choice-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-sunken);
  color: var(--ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .18s ease;
}
.radio-choice-icon svg { width: 28px; height: 28px; }
.radio-choice.is-checked .radio-choice-icon {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px -3px rgba(13, 148, 136, 0.5);
}
.radio-choice-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.radio-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-700, #1e293b);
}
.radio-desc {
  font-size: 12.5px;
  color: var(--ink-400);
  line-height: 1.4;
}
.radio-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ink-200);
  background: #fff;
  position: relative;
  transition: all .18s ease;
}
.radio-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--brand);
  transform: scale(0);
  transition: transform .18s cubic-bezier(.4, 0, .2, 1);
}
.radio-choice.is-checked .radio-dot {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}
.radio-choice.is-checked .radio-dot::after { transform: scale(1); }

/* ---------- INFO BANNER ---------- */
.info-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--warn-50);
  color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13.5px;
  margin-bottom: 16px;
  line-height: 1.55;
}
.info-banner-soft {
  background: linear-gradient(135deg, #f0fdfa, #fafffe);
  border-color: rgba(13, 148, 136, 0.2);
  color: var(--brand-700);
}
.info-banner-soft b { color: var(--brand-700); font-weight: 700; }
.info-banner-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-top: 1px;
}
.info-banner-icon svg { width: 18px; height: 18px; }

/* ---------- CURRENCY ---------- */
.currency-wrap { position: relative; }
.currency-wrap .field-input { padding-right: 90px; }
.field-input-lg {
  font-size: 18px !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.currency-suffix {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-400);
  pointer-events: none;
}

/* ---------- CHIP PICKER (DİLLER) ---------- */
.chip-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-toggle {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--ink-200);
  background: #fff;
  color: var(--ink-500);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all .15s cubic-bezier(.4, 0, .2, 1);
  font-family: inherit;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.chip-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}
.chip-toggle.is-on {
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px -3px rgba(13, 148, 136, 0.5);
}

/* ---------- SERTİFİKALAR ---------- */
.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  min-height: 48px;
  padding: 14px;
  border-radius: 12px;
  background: var(--bg-sunken);
  border: 1.5px dashed var(--ink-200);
  align-items: center;
  transition: all .18s ease;
}
.cert-list:has(.cert-tag) {
  border-style: solid;
  border-color: rgba(13, 148, 136, 0.25);
  background: linear-gradient(135deg, #f0fdfa, #fafffe);
}
.cert-empty {
  flex: 1;
  font-size: 13px;
  color: var(--ink-400);
  font-style: italic;
  padding: 4px 6px;
  text-align: center;
}
.cert-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 7px 7px 12px;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-700);
  box-shadow: 0 2px 6px -2px rgba(13, 148, 136, 0.2);
  animation: certIn .2s cubic-bezier(.4, 0, .2, 1);
}
@keyframes certIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
.cert-tag-icon {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
}
.cert-tag-icon svg { width: 16px; height: 16px; }
.cert-tag-name { letter-spacing: -0.005em; }
.cert-tag-x {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 0;
  background: var(--ink-100);
  color: var(--ink-500);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all .15s ease;
}
.cert-tag-x svg { width: 10px; height: 10px; }
.cert-tag-x:hover {
  background: var(--danger);
  color: #fff;
  transform: rotate(90deg);
}

.cert-input-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.cert-input-wrap {
  position: relative;
  flex: 1;
}
.cert-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-400);
  pointer-events: none;
  display: inline-flex;
}
.cert-input-icon svg { width: 18px; height: 18px; }
.cert-input.field-input { padding-left: 42px; }
.cert-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  font-weight: 600;
}
.cert-add-btn .cert-add-icon { display: inline-flex; }
.cert-add-btn svg { width: 16px; height: 16px; }
.cert-add-btn:hover {
  background: var(--brand-50);
  color: var(--brand-700);
  border-color: var(--brand);
}

.cert-suggest-head {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-400);
  font-weight: 700;
}
.cert-suggest {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cert-suggest-empty {
  font-size: 13px;
  color: var(--ink-400);
  font-style: italic;
  padding: 4px 0;
}
.cert-suggest-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  border: 1.5px dashed var(--ink-200);
  background: #fff;
  color: var(--ink-500);
  font-weight: 500;
  font-size: 12.5px;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s ease;
}
.cert-suggest-chip .cert-suggest-plus {
  display: inline-flex;
  align-items: center;
  color: var(--ink-400);
}
.cert-suggest-chip svg { width: 13px; height: 13px; }
.cert-suggest-chip:hover {
  border-style: solid;
  border-color: var(--brand);
  color: var(--brand-700);
  background: var(--brand-50);
  transform: translateY(-1px);
}
.cert-suggest-chip:hover .cert-suggest-plus { color: var(--brand); }

/* ---------- SUBMIT ---------- */
.intake-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  position: sticky;
  bottom: 16px;
  box-shadow: 0 14px 34px -12px rgba(15, 23, 42, 0.22), 0 2px 4px rgba(15, 23, 42, 0.04);
  flex-wrap: wrap;
  margin-top: 4px;
}
.intake-submit-meta {
  flex: 1;
  min-width: 220px;
  font-size: 13px;
  color: var(--ink-400);
  line-height: 1.5;
}
.intake-submit-meta b { color: var(--ink-600); font-weight: 600; }
.btn-lg {
  padding: 13px 28px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 6px 18px -6px rgba(13, 148, 136, 0.5);
}
.intake-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.intake-submit-btn .intake-submit-icon {
  display: inline-flex;
  align-items: center;
}
.intake-submit-btn svg { width: 18px; height: 18px; }

/* ---------- ADMIN OKUNUR GÖRÜNÜM ---------- */
.intake-readout { padding: 26px 28px; display: flex; flex-direction: column; gap: 0; }
.intake-readout-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-100);
  align-items: flex-start;
}
.intake-readout-row:first-child { padding-top: 0; }
.intake-readout-row:last-child { border-bottom: 0; padding-bottom: 0; }
.intake-readout-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-400);
  font-weight: 700;
  padding-top: 4px;
}
.intake-readout-value {
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
  white-space: pre-wrap;
}
.intake-readout-value .chip { margin: 2px 4px 2px 0; }
.intake-empty {
  color: var(--ink-400);
  font-style: italic;
  font-size: 13px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 720px) {
  .intake-hero { padding: 30px 24px 26px; border-radius: 18px; }
  .intake-hero-title { font-size: 26px; }
  .intake-hero-sub { font-size: 13.5px; }
  .intake-section { padding: 24px 20px; border-radius: 16px; }
  .intake-section-head { gap: 14px; margin-bottom: 20px; }
  .intake-step { width: 38px; height: 38px; font-size: 13px; }
  .intake-readout { padding: 20px 18px; }
  .intake-readout-row { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
  .intake-submit { padding: 16px 18px; }
  .btn-lg { width: 100%; justify-content: center; }
  .intake-optional-tag { align-self: flex-start; }
}
