/* Tutulur.net — lacivert/yeşil kimlik, Sora + Manrope
   Mevcut sınıf adları korunmuştur; admin/auth şablonları da bu dosyayla çalışır. */
:root {
  --ink: #16222F;
  --ink-soft: #5C6C7C;
  --ink-faint: #8395A6;
  --brand: #1C5180;
  --brand-dark: #16405F;
  --brand-tint: #EAF1F7;
  --accent: #1E7A60;
  --accent-dark: #14573F;
  --accent-tint: #E6F3EE;
  --accent-line: #BFDFD3;
  --amber: #A8761B;
  --bg: #F2F6F9;
  --panel: #ffffff;
  --line: #DFE6EC;
  --danger: #B04343;
  --danger-tint: #FBEEEE;
  --danger-line: #E3BCBC;
  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Sora", -apple-system, sans-serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-wide { max-width: 1280px; }

a { color: var(--brand); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
h1 { font-size: 1.7rem; }
h2 { font-size: 1.25rem; margin-top: 2.2rem; }
h3 { font-size: 1.02rem; }

.muted { color: var(--ink-soft); font-size: 0.92rem; }

/* --- Üst menü --- */
.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}
.logo span { color: var(--brand); font-size: 0.9rem; font-weight: 700; }
.logo::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent);
  align-self: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
.main-nav a:hover { color: var(--brand); background: var(--brand-tint); }
.main-nav a.nav-active { color: #fff; background: var(--brand); }
.nav-cta {
  color: #fff !important;
  background: var(--brand);
}
.nav-cta:hover { background: var(--brand-dark) !important; color: #fff !important; }

.inline-form { display: inline; }
.link-button {
  background: none;
  border: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.link-button:hover { color: var(--brand); background: var(--brand-tint); }

/* --- Bildirimler --- */
.flash {
  margin: 1rem 0 0;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--panel);
  font-weight: 600;
  font-size: 0.92rem;
}
.flash-success { border-color: var(--accent-line); background: var(--accent-tint); color: var(--accent-dark); }
.flash-error   { border-color: var(--danger-line); background: var(--danger-tint); color: #8A2E2E; }
.flash-info    { border-color: #BCD0E3; background: #EEF3FB; color: #2A4D76; }

/* --- Ana sayfa --- */
/* Masaüstü varsayılan; mobil app görünümü 640px'te devreye girer */
.home-desktop { display: block; }
.home-mobile { display: none; }

.hero {
  text-align: center;
  padding: 3.4rem 0 1.5rem;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
  text-wrap: balance;
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 1.6rem;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 1.02rem;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats { margin-top: 1.2rem; font-weight: 600; }

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-tint);
  border: 1px solid var(--accent-line);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

/* Masaüstü hero araması (input + Ara düğmesi) */
.hero-search {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 580px;
  margin: 0 auto;
  background: var(--panel);
  border: 2px solid var(--brand);
  border-radius: 16px;
  padding: 0.35rem 0.4rem 0.35rem 1rem;
  box-shadow: 0 12px 36px rgba(28, 81, 128, 0.14);
}
.hero-search input[type="text"] {
  flex: 1;
  min-width: 0;
  margin: 0;
  border: none;
  padding: 0.55rem 0;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
}
.hero-search input[type="text"]:focus { outline: none; }
.hero-search .button { border-radius: 12px; flex-shrink: 0; }

/* Mobil hero araması (ikon-pili, image 1) */
.msearch {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 560px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 12px 36px rgba(28, 81, 128, 0.12);
}
.msearch:focus-within { border-color: var(--brand); }
.hero-search-icon { width: 20px; height: 20px; color: var(--ink-faint); flex-shrink: 0; }
.msearch input[type="text"] {
  flex: 1;
  min-width: 0;
  margin: 0;
  border: none;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
}
.msearch input[type="text"]:focus { outline: none; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hero-stats .stat-verified { color: var(--accent-dark); font-weight: 700; }

/* Doğrulanmış kiracı kartı (ana sayfa) */
.verified-card {
  margin-top: 1.8rem;
  background: linear-gradient(155deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
}
.verified-card-head { display: flex; align-items: center; gap: 0.75rem; }
.verified-card-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}
.verified-card-icon svg { width: 22px; height: 22px; }
.verified-card h3 { margin: 0; color: #fff; font-size: 1.1rem; }
.verified-card > p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 500;
  text-wrap: pretty;
}
.verified-card-band {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem;
}
.verified-card-band strong { font-size: 1.35rem; font-family: var(--font-display); }
.verified-card-band span { font-size: 0.82rem; font-weight: 600; color: rgba(255, 255, 255, 0.92); }

/* "Serbest metin yorum yok" kartı */
.info-card {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.2rem;
}
.info-card svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.info-card p { margin: 0; font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); text-wrap: pretty; }
.info-card strong { color: var(--ink); }

/* Bölüm başlığı + "Tümü" linki */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
}
.section-head h2 { margin: 0; }
.section-head a { font-weight: 700; font-size: 0.9rem; text-decoration: none; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}
.feature h3 { margin-top: 0; }
.feature p { color: var(--ink-soft); font-size: 0.92rem; font-weight: 600; margin-bottom: 0; text-wrap: pretty; }

.how-it-works ol { padding-left: 1.2rem; }
.how-it-works li { margin-bottom: 0.4rem; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.step-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}
.step-num {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.step-card h3 { margin: 0.7rem 0 0.2rem; }
.step-card p { color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; margin: 0; }

/* --- Düğmeler --- */
.button {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
}
.button-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(28, 81, 128, 0.25); }
.button-primary:hover { background: var(--brand-dark); }
.button-secondary {
  background: var(--panel);
  color: var(--brand);
  border-color: var(--line);
}
.button-secondary:hover { background: var(--brand-tint); border-color: var(--brand); }
.button-danger { background: var(--danger); color: #fff; }
.button-small { padding: 0.35rem 1rem; font-size: 0.85rem; }

/* --- Paneller ve kartlar --- */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1rem 0;
}
.panel-cta { text-align: center; }

.card-list { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1rem; }
.card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
}
.card-link { text-decoration: none; color: inherit; transition: border-color 0.15s, box-shadow 0.15s; }
.card-link:hover { border-color: var(--brand); box-shadow: 0 6px 20px rgba(28, 81, 128, 0.1); }
.card p { margin: 0.15rem 0 0; }
.card strong { font-weight: 700; }

.rating-pill {
  flex-shrink: 0;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.7rem;
  font-size: 0.95rem;
  min-width: 44px;
  text-align: center;
}
/* puana göre renk: şablonda s-good / s-mid / s-bad sınıfı eklenir */
.rating-pill.s-good { background: var(--accent); }
.rating-pill.s-mid  { background: var(--amber); }
.rating-pill.s-bad  { background: var(--danger); }
.rating-pill.s-none { background: #B9C5D0; }

/* --- Formlar --- */
label { display: block; margin: 0.8rem 0; font-weight: 700; font-size: 0.9rem; }
input[type="text"], input[type="email"], input[type="password"],
input[type="number"], input[type="month"], input[type="file"],
select, textarea {
  display: block;
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 600;
  background: #FAFCFD;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: -1px;
}
textarea { resize: vertical; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.checkbox-label input { width: auto; margin: 0; }

.search-form button { margin-top: 0.6rem; }

.auth-box { max-width: 420px; margin: 2rem auto; }

/* --- Adres detayı --- */
.breadcrumb { margin-top: 1rem; font-weight: 600; }
.breadcrumb a { text-decoration: none; font-weight: 700; }
.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.detail-header h1 { margin-bottom: 0.2rem; font-size: 1.55rem; }

.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.scope-panel { margin: 0; }
.scope-panel h3 { margin-top: 0; }
.scope-panel .overall-rating { text-align: left; margin-bottom: 0.8rem; }

.overall-rating { text-align: center; min-width: 110px; }
.overall-score {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1.1;
}
.overall-score.s-good { color: var(--accent); }
.overall-score.s-mid  { color: var(--amber); }
.overall-score.s-bad  { color: var(--danger); }

.rating-bars { display: flex; flex-direction: column; gap: 0.45rem; }
.rating-bar-row {
  display: grid;
  grid-template-columns: 95px 1fr 32px;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.rating-bar {
  height: 7px;
  border-radius: 999px;
  background: #E8EDF2;
  overflow: hidden;
}
.rating-bar-fill { height: 100%; background: var(--brand); border-radius: 999px; }
.rating-bar-fill.s-good { background: var(--accent); }
.rating-bar-fill.s-mid  { background: var(--amber); }
.rating-bar-fill.s-bad  { background: var(--danger); }
.rating-bar-value { font-weight: 700; text-align: right; color: var(--ink); }

/* --- Harita --- */
.address-map {
  height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 1rem 0;
  z-index: 0;
}
.address-map-large { height: 480px; }

/* Harita işaretçisi (divIcon) */
.map-score-marker {
  background: var(--brand);
  color: #fff;
  font: 700 13px var(--font-display);
  padding: 4px 10px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(10, 30, 50, 0.35);
  white-space: nowrap;
  display: inline-block;
}
.map-score-marker.s-good { background: var(--accent); }
.map-score-marker.s-mid  { background: var(--amber); }
.map-score-marker.s-bad  { background: var(--danger); }
.map-score-marker.s-none { background: #B9C5D0; }

/* "Konumuma git" düğmesi (Leaflet kontrolü) */
.map-locate-btn {
  width: 34px;
  height: 34px;
  font-size: 17px;
  line-height: 1;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  cursor: pointer;
}
.map-locate-btn:hover { background: #f4f4f4; }

/* --- Bölünmüş harita + liste düzeni (map.html) --- */
.split-layout {
  display: flex;
  height: calc(100vh - 62px);
  min-height: 480px;
}
.split-list {
  width: 420px;
  flex-shrink: 0;
  background: var(--panel);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.split-list-head { padding: 1rem 1.1rem 0; }
.split-list-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0.4rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.split-map { flex: 1; position: relative; min-width: 0; }
.split-map #map { position: absolute; inset: 0; height: 100%; margin: 0; border: none; border-radius: 0; }

@media (max-width: 860px) {
  .split-layout { flex-direction: column; height: auto; }
  .split-list { width: 100%; border-right: none; border-bottom: 1px solid var(--line); max-height: 45vh; }
  .split-map { height: 55vh; }
}

.verified-band {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-tint);
  border: 1px solid var(--accent-line);
  color: var(--accent-dark);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-size: 0.83rem;
  font-weight: 700;
}

/* Arama + öneriler */
.map-search { position: relative; margin: 0.8rem 0 0.4rem; }
.map-search input[type="text"] {
  margin: 0;
  background: var(--bg);
  border-radius: var(--radius-sm);
}
.suggest-list {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 6px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 48px rgba(12, 35, 60, 0.18);
  overflow: hidden;
  z-index: 30;
}
.suggest-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--ink);
  text-decoration: none;
}
.suggest-item:hover { background: #F4F8FB; }
.suggest-item .s-title { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.suggest-item .s-sub { font-size: 0.78rem; color: var(--ink-soft); }
.suggest-item .rating-pill { font-size: 0.8rem; padding: 0.2rem 0.5rem; min-width: 36px; margin-left: auto; }

/* Seçilen bina kartı */
.pick-card {
  position: absolute;
  left: 16px; bottom: 16px;
  width: 320px;
  z-index: 10;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 0.9rem 1rem 1rem;
  box-shadow: 0 16px 44px rgba(12, 35, 60, 0.26);
}
.pick-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
}
.pick-close {
  width: 24px; height: 24px;
  border: none;
  border-radius: 999px;
  background: #EDF1F5;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1;
}
.pick-close:hover { background: var(--line); }
.pick-title { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; margin-top: 0.45rem; }
.pick-sub { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
.pick-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem;
}
.pick-card .button { display: block; text-align: center; margin-top: 0.7rem; }

/* --- Puan etiketleri --- */
.score-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.score-chip {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.score-chip strong { color: var(--ink); font-family: var(--font-display); }

/* --- Yorumlar --- */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.review-meta { margin: 0.2rem 0 0; }
.review-body { white-space: pre-line; }
.review-scores { margin-top: 0.5rem; }

.badge {
  display: inline-block;
  padding: 0.12rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.badge-verified { background: var(--accent-tint); color: var(--accent); border: 1px solid var(--accent-line); }
.badge-pending  { background: #FDF3E3; color: #8A6116; border: 1px solid #ECD9AE; }
.badge-approved { background: #EEF7F1; color: #1E5C3A; border: 1px solid #BCD9C8; }
.badge-rejected { background: var(--danger-tint); color: var(--danger); border: 1px solid var(--danger-line); }

.report-box { margin-top: 0.8rem; font-size: 0.9rem; }
.report-box summary { cursor: pointer; }
.report-box form { margin-top: 0.5rem; }

.verification-row { margin-top: 0.6rem; font-size: 0.92rem; }
.verification-row summary { cursor: pointer; font-weight: 700; color: var(--accent); }

.action-row { display: flex; gap: 0.6rem; margin-top: 0.8rem; }

/* --- Alt bilgi --- */
.site-footer {
  margin-top: 3rem;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.site-footer p { margin: 0.3rem 0; }

/* --- Moderasyon paneli --- */
.admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.admin-head h1 { margin: 0 0 0.2rem; }
.admin-head p { margin: 0; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
  margin: 1.2rem 0 0.4rem;
}
.stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.stat-num.t-amber { color: var(--amber); }
.stat-num.t-brand { color: var(--brand); }
.stat-num.t-green { color: var(--accent); }
.stat-num.t-red   { color: var(--danger); }
.stat-label { font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); }

.queue-empty {
  border: 1px dashed #C9D4DE;
  border-radius: 14px;
  padding: 1.4rem;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--panel);
  margin-top: 1rem;
}

.doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.7rem;
  padding: 0.5rem 0.9rem;
  border: 1.5px dashed #C9D4DE;
  border-radius: 12px;
  background: #FBFCFE;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brand);
}
.doc-chip:hover { border-color: var(--brand); }
.doc-ico {
  background: var(--brand-tint);
  color: var(--brand);
  border-radius: 6px;
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.button-success { background: var(--accent); color: #fff; }
.button-success:hover { background: var(--accent-dark); }
.button-danger-soft {
  background: var(--danger-tint);
  color: #8A2E2E;
  border-color: var(--danger-line);
}
.button-danger-soft:hover { background: #F6DFDF; }

.form-hint { font-size: 0.82rem; margin: 0.6rem 0 0; }

.report-note {
  margin: 0.7rem 0 0;
  padding: 0.7rem 0.9rem;
  background: #F7FAFC;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3D5266;
  text-wrap: pretty;
}
.report-target {
  margin-top: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  background: var(--bg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.report-target p { margin: 0.1rem 0 0; }

/* --- Mobil katman: alt sekme çubuğu (app görünümü) --- */
.tabbar { display: none; }

@media (max-width: 640px) {
  .main-nav a:not(.nav-cta) { display: none; }
  .main-nav .inline-form { display: none; }

  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }

  .tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: flex;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  }
  .tabbar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 0;
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.66rem;
    font-weight: 700;
  }
  .tabbar a.tab-active { color: var(--brand); }
  .tabbar svg { width: 22px; height: 22px; }

  /* ana sayfa: masaüstü içeriği gizle, app görünümünü göster */
  .home-desktop { display: none; }
  .home-mobile { display: block; }

  /* yoğunluk ayarları */
  .hero { padding: 2rem 0 1.6rem; }
  .hero h1 { font-size: 1.95rem; }
  .msearch { padding: 0.75rem 0.95rem; }
  .verified-card { padding: 1.15rem; }
  .panel { padding: 0.9rem 1rem; }
  .review-header { flex-wrap: wrap; gap: 0.5rem; }
  .action-row { flex-wrap: wrap; }
  .site-footer { padding-bottom: 0.6rem; }
}
