/* ===== Yüksel Otomotiv - Sarı & Siyah Tema ===== */
:root {
  /* Sarı tonları */
  --yellow: #f5b301;
  --yellow-dark: #d4a005;
  --yellow-light: #fcd34d;
  --yellow-soft: rgba(245, 179, 1, 0.14);
  --yellow-glow: rgba(245, 179, 1, 0.35);
  /* Siyah tonları */
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-muted: #1f1f1f;
  /* Eski primary → sarı (uyumluluk) */
  --primary: var(--yellow);
  --primary-dark: var(--yellow-dark);
  --primary-light: var(--yellow-light);
  --primary-soft: var(--yellow-soft);
  --bg: #f6f6f6;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  --text: #0c0c0c;
  --text-muted: #4a4a4a;
  --text-soft: #6b6b6b;
  --border: #e0e0e0;
  --border-light: #e8e8e8;
  --focus: var(--yellow);
  --focus-ring: rgba(245, 179, 1, 0.3);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.22s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.62;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Header (Siyah) ----- */
.header {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.logo:hover {
  opacity: 0.95;
  border-bottom-color: rgba(245, 179, 1, 0.4);
}

.logo-mark {
  flex-shrink: 0;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
  box-shadow: 0 7px 0 var(--yellow);
}

.logo-text {
  display: inline;
}

.logo-name {
  color: #fff;
}

.logo-accent {
  color: var(--yellow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 9px 16px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav a:hover {
  color: var(--yellow);
  background: rgba(245, 179, 1, 0.1);
}

.nav a.active {
  color: var(--yellow);
  font-weight: 600;
  background: rgba(245, 179, 1, 0.12);
}

.btn-ilan-ver {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%) !important;
  color: var(--black) !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 12px var(--yellow-glow) !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.btn-ilan-ver:hover, .btn-ilan-ver.active {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px var(--yellow-glow) !important;
}

.nav-admin-giris { color: rgba(255, 255, 255, 0.7); }
.nav-admin-giris:hover { color: var(--yellow); }
.nav-cikis { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.nav-cikis:hover { color: var(--yellow); }

#nav-admin-area {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 2px 12px var(--yellow-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--yellow-glow);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--black);
  background: var(--yellow-soft);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--black);
  background: var(--yellow-soft);
}

.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; margin-top: 8px; }
.btn-hero { padding: 16px 32px; font-size: 1.05rem; box-shadow: 0 4px 24px var(--yellow-glow); }

/* ----- Hero (Siyah + Sarı vurgu) ----- */
.hero {
  position: relative;
  background: linear-gradient(165deg, #0c0c0c 0%, var(--black-soft) 40%, #0a0a0a 100%);
  color: #fff;
  padding: 64px 24px 72px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245, 179, 1, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.82) 50%, rgba(10, 10, 10, 0.9) 100%),
    url('galeri-arkaplan.png') center center / cover no-repeat;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.55;
}

.hero .btn-hero {
  margin-top: 8px;
}

/* ----- Filtre ----- */
.filtre {
  margin-top: -28px;
  margin-bottom: 32px;
}

.filtre-inner {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--yellow);
}

.input-search {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input-search::placeholder { color: var(--text-soft); }
.input-search:focus {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.select-filtre {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--bg-card);
  min-width: 150px;
  cursor: pointer;
  transition: border-color var(--transition);
}

.select-filtre:focus {
  outline: none;
  border-color: var(--focus);
}

/* ----- İlan listesi ----- */
.ilanlar-section {
  padding-top: 12px;
  padding-bottom: 64px;
}

.section-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
}

.ilan-listesi {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ilan-karti {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.ilan-karti:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 179, 1, 0.4);
}

.ilan-karti-foto {
  width: 260px;
  min-height: 180px;
  background: var(--black-muted);
  object-fit: cover;
  flex-shrink: 0;
}

.ilan-karti-body {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.ilan-karti-baslik {
  font-weight: 700;
  font-size: 1.15rem;
  width: 100%;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.35;
}

.ilan-karti-ozet {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.ilan-karti-fiyat {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.28rem;
  margin-left: auto;
  letter-spacing: -0.02em;
}

.bos-mesaj {
  text-align: center;
  color: var(--text-muted);
  padding: 64px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(245, 179, 1, 0.4);
  font-size: 1.05rem;
}

/* ----- Adres & Harita ----- */
.adres-section {
  padding-bottom: 56px;
}

.adres-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.adres-metin {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.adres-baslik {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.adres-satir {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 6px;
}

.adres-btn {
  margin-top: 16px;
}

.adres-harita {
  background: var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  min-height: 260px;
}

.adres-harita iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ----- İlan Ver sayfası ----- */
.ilan-ver-main {
  flex: 1;
  padding: 40px 0 56px;
}

.page-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page-desc {
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 640px;
  font-size: 1rem;
}

.ilan-formu { max-width: 920px; }

.form-section {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 24px;
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}

.form-section .form-group,
.form-section .form-row,
.form-section .form-grid { padding: 18px 24px; }
.form-row { display: flex; flex-wrap: wrap; gap: 18px; }
.form-row .form-group { padding: 0; flex: 1; min-width: 160px; }
.form-row .form-group.flex-2 { flex: 2; min-width: 260px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.form-grid .form-group { padding: 0; }
.form-group { margin-bottom: 0; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text);
}

.required { color: #c92a2a; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-hint {
  padding: 0 24px 14px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.file-label { display: block; cursor: pointer; }
.file-label input[type="file"] {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.file-custom {
  display: inline-block;
  padding: 14px 28px;
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}

.file-label:hover .file-custom {
  border-color: var(--yellow);
  background: var(--yellow-soft);
  color: var(--yellow-dark);
}

.foto-onizleme {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.foto-onizleme img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.form-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 0 4px;
}

/* ----- Footer (Siyah) ----- */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  padding: 36px 24px;
  margin-top: auto;
  text-align: center;
}

.footer p {
  font-size: 0.92rem;
}

/* ----- İlanlar sayfası ----- */
.ilanlar-page .hero { padding: 40px 24px 48px; }
.ilanlar-page .hero h1 { font-size: 1.85rem; }

/* ----- Admin giriş ----- */
.login-page .login-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.login-kutu {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
  padding: 40px;
}

.login-baslik {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.login-aciklama {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.login-form-wrap h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.login-form-wrap .form-group { margin-bottom: 18px; }
.login-hata { color: #c92a2a; font-size: 0.9rem; margin-bottom: 12px; }

/* ===== İlan detay sayfası ===== */
.ilan-detay-page .detay-main { flex: 1; padding: 28px 0 56px; }

.detay-geri {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 24px;
  padding: 6px 0;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.detay-geri:hover {
  color: var(--yellow);
  background: var(--yellow-soft);
}

.detay-yukleniyor,
.detay-bulunamadi {
  text-align: center;
  padding: 56px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.detay-bulunamadi .btn { margin-top: 20px; }

.detay-ust {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.detay-ust-baslik-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.detay-admin-actions {
  flex-shrink: 0;
}

.btn-sil {
  background: transparent !important;
  color: #b91c1c !important;
  border: 1px solid #b91c1c !important;
  font-size: 0.9rem;
  padding: 8px 16px;
}

.btn-sil:hover {
  background: rgba(185, 28, 28, 0.1) !important;
}

.detay-baslik {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.detay-fiyat-wrap { margin-bottom: 10px; }

.detay-fiyat {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow-dark);
  letter-spacing: -0.02em;
}

.detay-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.detay-meta span + span::before { content: ' · '; margin: 0 6px; }

.detay-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.detay-galeri-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.detay-galeri-ana {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  aspect-ratio: 4/3;
}

.detay-galeri-ana img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.detay-galeri-thumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--border-light);
  background: #f5f5f5;
}

.detay-thumb {
  width: 68px;
  height: 68px;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: none;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color var(--transition), transform var(--transition);
}

.detay-thumb:hover,
.detay-thumb.active {
  border-color: var(--yellow);
  transform: scale(1.02);
}

.detay-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detay-sag { display: flex; flex-direction: column; gap: 24px; }

.detay-blok-baslik {
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 24px;
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  border-bottom: 1px solid var(--border-light);
  margin: 0;
}

.detay-ozellikler {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detay-tablo { width: 100%; border-collapse: collapse; }
.detay-tablo tr {
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
}
.detay-tablo tr:hover { background: #fafbfc; }
.detay-tablo tr:last-child { border-bottom: none; }

.detay-tablo-etiket {
  padding: 14px 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  width: 42%;
  vertical-align: top;
}

.detay-tablo-deger {
  padding: 14px 24px;
  font-weight: 600;
}

.detay-iletisim-kutu {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detay-iletisim-icerik { padding: 24px; }

.detay-satici-ad { margin-bottom: 14px; font-size: 1.05rem; }

.detay-telefon-wrap { margin-bottom: 10px; }

.detay-telefon-gizli {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.detay-telefon-acik {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.detay-telefon-acik a {
  color: var(--yellow-dark);
  text-decoration: none;
}

.detay-telefon-acik a:hover {
  text-decoration: underline;
}

.detay-eposta-wrap { margin-top: 14px; }
.detay-eposta-wrap a {
  color: var(--yellow-dark);
  text-decoration: none;
  font-weight: 600;
}
.detay-eposta-wrap a:hover { text-decoration: underline; }

.detay-aciklama {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detay-aciklama .detay-blok-baslik { border-bottom: 1px solid var(--border-light); }

.detay-aciklama-metin {
  padding: 24px 28px;
  line-height: 1.7;
  color: var(--text);
  font-size: 1rem;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header-inner { height: 56px; }
  .nav > a { display: none; }
  .nav { gap: 6px; }

  .hero {
    padding: 40px 16px 48px;
  }
  .hero h1 { font-size: 1.85rem; }
  .hero-desc { font-size: 1rem; }
  .hero-badge { font-size: 0.75rem; }

  .filtre { margin-top: -20px; margin-bottom: 24px; }
  .filtre-inner { padding: 16px; flex-direction: column; align-items: stretch; }

  .ilan-karti { flex-direction: column; }
  .ilan-karti-foto { width: 100%; min-height: 200px; }
  .ilan-karti-body { padding: 18px; }
  .ilan-karti-fiyat { margin-left: 0; width: 100%; font-size: 1.15rem; }

  .section-title { font-size: 1.2rem; margin-bottom: 16px; }

  .adres-inner { grid-template-columns: 1fr; }
  .adres-harita { min-height: 220px; }

  .form-section .form-group, .form-section .form-row, .form-section .form-grid { padding: 16px 18px; }
  .form-row { flex-direction: column; }
  .form-row .form-group.flex-2 { min-width: 100%; }
  .form-grid { grid-template-columns: 1fr; }

  .detay-grid { grid-template-columns: 1fr; gap: 20px; }
  .detay-ust { padding: 20px 20px; }
  .detay-ust-baslik-wrap { flex-direction: column; align-items: stretch; }
  .detay-admin-actions { order: 1; }
  .detay-baslik { font-size: 1.35rem; }
  .detay-fiyat { font-size: 1.6rem; }
  .ilan-karti-foto { width: 100%; min-height: 200px; }
  .detay-galeri-ana { aspect-ratio: 16/10; }
  .detay-thumb { width: 56px; height: 56px; }
  .detay-tablo-etiket, .detay-tablo-deger { padding: 12px 16px; }
}
