:root {
  --bg: #faf9f8;
  --surface: #ffffff;
  --text: #242424;
  --text-secondary: #605e5c;
  --border: #e5e5e5;
  --border-strong: #d1d1d1;
  --accent: #242424;
  --brand: #d06526;
  --brand-light: #ea8544;
  --success: #107c10;
  --danger: #a4262c;
  --radius: 6px;
}

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

html { -webkit-font-smoothing: antialiased; }

body {
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 1600px) {
  .container { padding: 0 40px; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
}

/* Üst bar */
.nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 3px 0 0 var(--brand);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.brand-logo { width: 28px; height: 28px; display: block; }
.brand-name { line-height: 1; }
.brand-suffix {
  color: var(--text-secondary);
  font-weight: 500;
  padding-left: 8px;
  margin-left: 4px;
  border-left: 1px solid var(--border);
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
}
.nav-links a:hover { color: var(--text); }

/* İçerik */
.content { padding: 36px 28px 80px; }
@media (max-width: 640px) {
  .content { padding: 24px 16px 48px; }
}
h1 { font-size: 26px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
h2 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
p { color: var(--text); }
.muted { color: var(--text-secondary); font-size: 14px; }
.back {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
}
.back:hover { color: var(--text); }

/* Uygulama kartları */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.card-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.card-link:hover {
  border-color: var(--border-strong);
  box-shadow: 0 1.6px 3.6px rgba(0, 0, 0, 0.08);
}
.card-title { font-size: 15px; font-weight: 600; }
.card-desc { font-size: 13px; color: var(--text-secondary); }

.empty {
  margin-top: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 14px;
}
.panel-box {
  margin-top: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
}

/* Formlar */
.form-narrow { max-width: 380px; }
label {
  display: block;
  margin: 16px 0 6px;
  font-size: 14px;
  font-weight: 600;
}
.input {
  width: 100%;
  padding: 9px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}
.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

/* Butonlar */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: #ffffff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { background: #000000; border-color: #000000; }
.btn-block { width: 100%; }
.btn-secondary {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: #f3f2f1; }
.btn-danger {
  color: #ffffff;
  background: var(--danger);
  border-color: var(--danger);
}
.btn-danger:hover { background: #8a1f24; border-color: #8a1f24; }

/* Tablolar */
.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.row-between .btn { margin-top: 0; }
.table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.table th, .table td {
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.table th {
  font-weight: 600;
  color: var(--text-secondary);
  background: #faf9f8;
}
.table tr:last-child td { border-bottom: none; }
.table .right { text-align: right; }
.table a { color: var(--text); }

.pill {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
}
.pill-on { color: var(--success); background: rgba(16, 124, 16, 0.1); }
.pill-off { color: var(--text-secondary); background: #f3f2f1; }

/* Bölümler */
.section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  font-weight: 400;
  font-size: 14px;
}
.check input { margin-top: 3px; }
.actions { display: flex; gap: 12px; }
.actions .btn { margin-top: 0; }

/* Duygu analizi */
.sent-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 16px 0;
}
.sent-tile {
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.sent-tile-pos { background: linear-gradient(180deg, rgba(16,124,16,0.06), var(--surface)); }
.sent-tile-neu { background: linear-gradient(180deg, rgba(181,120,20,0.06), var(--surface)); }
.sent-tile-neg { background: linear-gradient(180deg, rgba(168,0,0,0.06), var(--surface)); }
.sent-tile-label { font-size: 12px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.sent-tile-value { font-size: 34px; font-weight: 600; line-height: 1.1; margin: 6px 0 2px; font-variant-numeric: tabular-nums; }
.sent-tile-pos .sent-tile-value { color: #107c10; }
.sent-tile-neu .sent-tile-value { color: #b57814; }
.sent-tile-neg .sent-tile-value { color: #a80000; }
.sent-tile-sub { font-size: 13px; color: var(--text-secondary); }
.sent-bar {
  display: flex;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  background: #eee;
}
.sent-bar > span { display: block; height: 100%; }
.sent-pos { background: #107c10; }
.sent-neu { background: #b57814; }
.sent-neg { background: #a80000; }

/* Rakipler haritası (Leaflet) */
.leaflet-map {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 8px;
}
.pin-icon { background: transparent; border: none; }
.pin {
  display: block;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Trend sayfası */
.trend-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.scope-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.scope-form .input { width: auto; min-width: 150px; }
.seg {
  display: inline-flex;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
}
.seg-item {
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-right: 1px solid var(--border-strong);
}
.seg-item:last-child { border-right: none; }
.seg-item:hover { background: #f3f2f1; color: var(--text); }
.seg-item.active {
  background: var(--text);
  color: #ffffff;
  font-weight: 600;
}
.chart-wrap { overflow-x: auto; margin-top: 8px; }
.line-chart {
  width: 100%;
  min-width: 600px;
  height: auto;
  display: block;
}
.line-chart .axis-label {
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  font-size: 12px;
  fill: var(--text-secondary);
}
.line-chart .point-value {
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  fill: var(--text);
}
.delta.up   { color: #107c10; font-weight: 600; }
.delta.down { color: #a80000; font-weight: 600; }

/* Trend akış hücresi (mağaza kapsamı) */
.flow-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  line-height: 1.3;
}
.flow-cell .rating { font-size: 15px; }
.flow-cell .flow-flow { font-size: 11px; color: var(--text-secondary); white-space: nowrap; }
.flow-cell .flow-flow b { color: var(--text); font-weight: 600; }
.flow-cell .flow-none { font-size: 11px; color: var(--text-secondary); font-style: italic; }
.flow-cell .delta { font-size: 11px; padding: 1px 6px; }

/* Genişletilebilir tablo (ör. mağaza listesi ilk 10 → tümü) */
.region-table tr.store-row-extra { display: none; }
.region-table.expanded tr.store-row-extra { display: table-row; }

/* Bölge / direktörlük tablosu (Panorama içinde) */
.region-table-wrap { overflow-x: auto; margin-top: 8px; }
.region-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.region-table th {
  text-align: left;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  background: #faf9f8;
  white-space: nowrap;
}
.region-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.region-table tbody tr:hover { background: #faf9f8; }
.region-table th .sort-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.region-table th .sort-link:hover { color: var(--text); }
.region-table th .sort-link.active { color: var(--text); }
.region-table th .sort-arrow { font-size: 10px; opacity: 0.8; }
.region-table th.right .sort-link { justify-content: flex-end; width: 100%; }
.region-table tr:last-child td { border-bottom: none; }
.region-table .right { text-align: right; }
.region-table .stars-col { width: 140px; }
.region-table .strong { font-weight: 600; }
.region-table .mono {
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  color: var(--text);
}
.mini-stars { display: block; }

/* Türkiye il haritası */
.map-card {
  padding: 24px 28px;
  margin-bottom: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
@media (max-width: 640px) {
  .map-card { padding: 20px 18px; margin-bottom: 20px; }
}
.map-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.map-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--text-secondary);
}
.lg-item { display: inline-flex; align-items: center; gap: 6px; }
.lg-sw {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.08);
}
.lg-scale { display: inline-flex; align-items: center; gap: 8px; }
.lg-scale-label { font-size: 12px; color: var(--text-secondary); }
.lg-scale-bar {
  display: inline-block;
  width: 140px;
  height: 10px;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(to right,
    #a80000 0%, #d05c3c 25%, #d7c88c 50%, #aac86e 75%, #107c10 100%);
}
.map-wrap {
  position: relative;
  width: 100%;
}
#tr-map, #tr-map-vs {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: block;
  margin: 0 auto;
}
#tr-map path, #tr-map-vs path {
  transition: fill-opacity 0.15s ease, stroke-width 0.15s ease;
  cursor: pointer;
}
#tr-map path:hover, #tr-map-vs path:hover {
  fill-opacity: 0.85;
  stroke: #242424;
  stroke-width: 1.5;
}
.map-tooltip {
  position: absolute;
  pointer-events: none;
  background: #242424;
  color: #ffffff;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  white-space: nowrap;
  z-index: 10;
}
.map-tooltip strong { font-weight: 600; }
.map-tooltip b { font-weight: 600; color: #fef3c7; }

/* Panorama üst göstergesi — puan + yıldız */
.hero-score {
  padding: 32px 28px;
  margin-bottom: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
@media (max-width: 640px) {
  .hero-score { padding: 24px 18px; margin-bottom: 20px; }
}
.hero-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.score-value {
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stars {
  width: 220px;
  height: auto;
  max-width: 100%;
}
.score-context {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.score-context strong { color: var(--text); font-weight: 600; }

.hero-meta {
  margin-top: 12px;
  font-size: 14px;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
}
.hero-meta .prev strong { color: var(--text); }
.hero-meta .delta {
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 13px;
}
.hero-meta .delta.up   { color: #107c10; background: rgba(16, 124, 16, 0.08); }
.hero-meta .delta.down { color: #a80000; background: rgba(168, 0, 0, 0.08); }
.hero-meta .delta.flat { color: var(--text-secondary); background: #f3f2f1; }

@media (max-width: 480px) {
  .score-row { gap: 10px; }
  .score-value { font-size: 44px; }
  .stars { width: 180px; }
}

/* Sekmeler (Mağazalar > Panorama / Liste) */
.tabs {
  display: flex;
  gap: 4px;
  margin: 16px 0 28px;
  border-bottom: 1px solid var(--border);
}
.tab {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab:hover { color: var(--text); }
.tab.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

/* KPI kartları */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.kpi {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.kpi-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.kpi-value {
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* İki sütun */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.card-block {
  padding: 24px 28px;
  margin-bottom: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.two-col .card-block { margin-bottom: 0; }
.card-block h2 { margin-bottom: 4px; }
.card-block .muted { margin-bottom: 16px; }
@media (max-width: 640px) {
  .card-block { padding: 20px 18px; margin-bottom: 20px; }
}

/* Mini tablo (dashboard kartları içinde) */
.mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.mini-table th {
  text-align: left;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}
.mini-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.mini-table tr:last-child td { border-bottom: none; }
.mini-table .right { text-align: right; }

/* Puan gösterimi — TÜM tablolarda tutarlı stil */
.rating {
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
/* Eşik renkleri — <3.0 kırmızı, 3.0-3.5 sarı, >=3.5 yeşil */
.rating.rating-low  { color: #a80000; }
.rating.rating-mid  { color: #b57814; }
.rating.rating-high { color: #107c10; }

/* Google Maps linki (mağaza adı yanında) */
.gmaps-link {
  display: inline-block;
  margin-left: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.6;
  transition: opacity 0.15s ease;
}
.gmaps-link:hover { opacity: 1; color: var(--text); }
.gmaps-link::before { content: "↗"; }

/* Mağaza tablosu ve filtre */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 12px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.filter-bar .input { flex: 1 1 180px; min-width: 140px; width: auto; }
.filter-bar .btn { margin-top: 0; }
.table-wrap {
  margin-top: 12px;
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.table-wrap .table { margin-top: 0; border: none; border-radius: 0; }
.mono { font-family: "SF Mono", "Consolas", monospace; font-size: 12px; }
.small { font-size: 12px; margin-top: 2px; }
.strong { font-weight: 600; }

/* Uyarılar */
.alert {
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
}
.alert-error { color: var(--danger); background: rgba(164, 38, 44, 0.08); border-color: rgba(164, 38, 44, 0.25); }
.alert-success { color: var(--success); background: rgba(16, 124, 16, 0.08); border-color: rgba(16, 124, 16, 0.25); }

/* Giriş ekranı */
.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.login-card {
  width: 100%;
  max-width: 400px;
  padding: 36px 32px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 1.6px 3.6px rgba(0, 0, 0, 0.08), 0 0.3px 0.9px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.login-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-light) 0%, var(--brand) 100%);
}
.login-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.login-brand-logo { width: 64px; height: 64px; }
.login-brand-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.login-brand-sub {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.login-card h1 { font-size: 18px; margin-bottom: 4px; text-align: center; }
.login-card .sub {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}
.login-footer {
  margin-top: 18px;
  font-size: 13px;
  text-align: center;
}
.login-footer a {
  color: var(--text-secondary);
  text-decoration: none;
}
.login-footer a:hover { color: var(--brand); }
.login-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}
.login-footer a { color: var(--text-secondary); text-decoration: none; }
.login-footer a:hover { color: var(--text); }

/* ---- Görsel denetim ---- */
.tone-bad  { color: #a80000; }
.tone-warn { color: #b57814; }
.tone-good { color: #107c10; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  font-size: 13px;
  background: #faf9f8;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-secondary);
}
.chip strong { color: var(--text); font-variant-numeric: tabular-nums; }

.btn-sm { padding: 6px 12px; font-size: 13px; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.photo-card.is-kritik { border-left: 3px solid #a80000; }
.photo-card.is-uyari  { border-left: 3px solid #c78a00; }

.photo-thumb { position: relative; background: #f3f2f1; aspect-ratio: 4 / 3; }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-placeholder {
  display: flex; align-items: center; justify-content: center;
  height: 100%; color: var(--text-secondary); font-size: 13px;
}
.photo-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 9px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  border-radius: 4px; color: #fff;
}
.photo-badge.bad  { background: #a80000; }
.photo-badge.warn { background: #b57814; }

.photo-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 5px; }
.photo-store { font-size: 15px; }
.photo-verdict { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.photo-reason { margin: 2px 0 0; font-size: 14px; line-height: 1.45; }
.photo-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
