/* ============================================================
   TeknoİLAN - style.css - Tüm Stiller
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ---- CSS Değişkenleri ---- */
:root {
  --primary:        #007287;
  --primary-hover:  #005a6b;
  --primary-light:  #e8f4f6;
  --primary-dark:   #003d48;

  --bg:             #eceef2;
  --card:           #FFFFFF;
  --header-bg:      #FFFFFF;
  --footer-bg:      #E8EAED;
  --footer-text:    #374151;
  --footer-heading: #111827;
  --footer-border:  #E5E7EB;
  --footer-muted:   #6B7280;

  --text:           #111827;
  --text-secondary: #6B7280;
  --text-muted:     #9CA3AF;
  --text-light:     #D1D5DB;

  --border:         #E5E7EB;
  --border-hover:   #D1D5DB;

  --success:        #10B981;
  --warning:        #F59E0B;
  --danger:         #EF4444;
  --info:           #3B82F6;
  --premium:        #FBBF24;

  --shadow-sm:      0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:      0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:      0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-orange:  0 4px 20px rgba(0,114,135,.25);

  --radius-card:    12px;
  --radius-btn:     8px;
  --radius-input:   8px;
  --radius-badge:   4px;
  --radius-full:    999px;

  --font:           'Plus Jakarta Sans', sans-serif;

  --site-gutter:    24px;
  --container:      1180px;
  --home-grid-cols: 7;

  --transition:     0.2s ease;
  --header-h:       64px;
  --cat-bar-h:      58px;
  --site-header-h:  110px;
  --site-wizard-header-h: 56px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding-top: var(--site-header-h);
}
body.body-wizard {
  padding-top: var(--site-wizard-header-h);
  background: #f0f2f5;
}
body.has-mobile-cta {
  padding-bottom: 76px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font-family: var(--font); }
ul, ol { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
}

/* Site header → assets/header.css */

/* Legacy compat */
.header-inner { display: flex; align-items: center; height: 100%; gap: 16px; }
.logo { font-size:22px;font-weight:900;white-space:nowrap;letter-spacing:-0.5px;flex-shrink:0; }
.logo span { color:var(--primary); }
.header-search { flex:1;max-width:560px;position:relative;margin:0 auto; }

.search-wrap {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,114,135,.1);
}
.search-wrap input {
  flex: 1;
  padding: 9px 14px;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: var(--text);
}
.search-wrap input::placeholder { color: var(--text-muted); }
.search-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--primary-hover); }
.search-btn svg { width: 18px; height: 18px; }

/* Search Suggestions (header .h-search position:relative) */
.h-search .search-suggestions,
.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  z-index: 10050;
  display: none;
  max-height: 400px;
  overflow-y: auto;
  text-align: left;
}
.search-suggestions.open { display: block; }
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
.suggestion-item:hover { background: var(--bg); }
.suggestion-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.suggestion-item .suggestion-item-text { min-width: 0; flex: 1; }
.suggestion-item .sug-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.suggestion-item .sug-price { font-size: 12px; color: var(--primary); font-weight: 700; margin-top: 2px; }
.suggestion-more {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  text-decoration: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.suggestion-more:hover { background: var(--bg-secondary); }

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 38px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}
.btn-tab-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-tab-outline:hover {
  background: var(--primary-light);
  border-color: var(--primary-hover);
  color: var(--primary-hover);
}
/* Kullanıcı profili — takip (mint) */
.profile-follow-btn {
  flex-shrink: 0;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-btn);
  padding: 6px 14px;
  font-size: 13px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px solid #66f0a9;
  transition: background 0.2s, color 0.2s, border-color 0.2s, filter 0.2s;
}
.profile-follow-btn--follow {
  background: #66f0a9;
  color: #063d2a;
}
.profile-follow-btn--follow:hover {
  filter: brightness(0.94);
}
.profile-follow-btn--following {
  background: rgba(102, 240, 169, 0.22);
  color: #0a5c42;
  border-color: #66f0a9;
}
.profile-follow-btn--following:hover {
  background: rgba(102, 240, 169, 0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--border-hover); background: #EAEDF3; }
.btn-success { background: var(--success); color: #fff; border: 2px solid var(--success); }
.btn-success:hover { background: #0EA472; filter: brightness(1.05); }
.btn-danger { background: var(--danger); color: #fff; border: 2px solid var(--danger); }
.btn-danger:hover { background: #DC2626; }
.btn-sm { padding: 5px 12px; font-size: 12px; min-height: 30px; }
.btn-lg { padding: 12px 28px; font-size: 16px; min-height: 48px; }
.btn-full { width: 100%; }
.btn-icon { width: 38px; height: 38px; padding: 0; border-radius: var(--radius-btn); }

/* Ilan Ver Butonu */
.btn-ilan {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.btn-ilan:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}
.btn-ilan .plus-icon { font-size: 18px; font-weight: 900; }

/* Notification Bell */
.notif-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-secondary);
}
.notif-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.notif-btn svg { width: 18px; height: 18px; }
.notif-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--card);
}

/* User Dropdown */
.user-dropdown { position: relative; }
.user-avatar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.user-avatar-btn:hover { border-color: var(--primary); background: var(--primary-light); }
.user-avatar-btn img {
  width: 30px; height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.user-avatar-btn .uname {
  font-size: 13px;
  font-weight: 600;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-avatar-btn svg { width: 14px; height: 14px; color: var(--text-secondary); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  z-index: 999;
  display: none;
  overflow: hidden;
}
.dropdown-menu.open { display: block; }
.dropdown-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.dropdown-header .name { font-weight: 700; font-size: 14px; color: #111111; }
.dropdown-header .username { font-size: 12px; color: var(--text-muted); }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  transition: background var(--transition);
  cursor: pointer;
}
.dropdown-item:hover { background: var(--bg); color: #111111; }
.dropdown-item svg { width: 16px; height: 16px; color: #374151; }
.dropdown-item.danger { color: #111111; }
.dropdown-item.danger svg { color: #374151; }
.dropdown-item .admin-badge { background: #111111; color: #fff; }
.dropdown-divider { border-top: 1px solid var(--border); margin: 4px 0; }

/* Hamburger */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--border);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  transition: all var(--transition);
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger:hover { border-color: var(--primary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1100;
  opacity: 0;
  transition: opacity var(--transition);
}
.drawer-backdrop.open { display: block; opacity: 1; }
.drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100%;
  width: 300px;
  max-width: 85vw;
  background: var(--card);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-header {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
}
.drawer-search { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.drawer-cats {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.drawer-cat-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
  padding: 0 16px 8px;
}
.drawer-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition);
  min-height: 44px;
  cursor: pointer;
}
.drawer-cat-item:hover { background: var(--bg); }
.drawer-cat-item .cat-icon { width: 20px; height: 20px; color: var(--text-secondary); }
.drawer-actions { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }

/* ============================================================
   CATEGORY BAR
   ============================================================ */
.cat-bar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  height: var(--cat-bar-h);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-bar::-webkit-scrollbar { display: none; }
.cat-bar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2px;
  white-space: nowrap;
}
.cat-bar-item {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.cat-bar-item:hover, .cat-bar-item.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.cat-bar-item.acil {
  color: var(--primary);
  font-weight: 700;
  margin-left: auto;
}
.cat-bar-item.acil:hover { color: var(--primary-hover); }

/* ============================================================
   CATEGORY CARDS (Ana Sayfa)
   ============================================================ */
.section-cats {
  background: var(--cats-section-bg, var(--card));
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background .3s ease;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--cats-label-color, var(--text-muted));
  margin-bottom: 18px;
}
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
/* ── Glassmorphism Kart ── */
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 16px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  text-align: center;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 124px;
  flex: 0 0 124px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.0) 70%);
  pointer-events: none;
  border-radius: inherit;
}
.cat-card:hover {
  background: rgba(255,255,255,.30);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
/* Özel hover rengi atanmış kartlar */
.cat-card-custom-hover:hover {
  border-color: var(--cat-hover, rgba(255,255,255,.6)) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.18) !important;
}
.cat-card-custom-hover:hover .cat-icon-wrap {
  background: var(--cat-hover, rgba(255,255,255,.28)) !important;
}
.cat-card:hover .cat-icon-wrap {
  background: rgba(255,255,255,.35);
}
.cat-card:hover .cat-icon-wrap svg { stroke: #fff; }
/* Acil istek kartı */
.cat-card.acil-card {
  border-color: rgba(245,158,11,.45);
  background: rgba(245,158,11,.18);
}
.cat-card.acil-card:hover {
  background: rgba(245,158,11,.28);
  border-color: rgba(245,158,11,.7);
  box-shadow: 0 12px 32px rgba(245,158,11,.22);
}
.cat-card.acil-card:hover .cat-icon-wrap { background: rgba(245,158,11,.35); }
.cat-card.cat-card-custom { }
/* İkon kutusu */
.cat-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
  flex-shrink: 0;
}
.cat-icon-wrap svg {
  width: 26px; height: 26px;
  stroke: #fff;
  transition: stroke .2s ease;
}
.cat-card-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  word-break: break-word;
  text-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.cat-card-count {
  font-size: 11px;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}

/* ============================================================
   MAIN LAYOUT (Index + Kategori)
   ============================================================ */
.main-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 24px 0 40px;
  align-items: start;
}

/* Ana sayfa — daha küçük kartlar, sabit sütun */
@media (min-width: 769px) {
  .main-layout .listing-grid[class*="listing-grid--cols-"],
  .main-layout .cat-block-grid[class*="listing-grid--cols-"] {
    grid-template-columns: repeat(var(--home-grid-cols), minmax(0, 1fr));
    gap: 12px;
  }
}

/* Filter Panel — Premium Redesign */
.filter-panel {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: calc(var(--site-header-h) + 16px);
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.05);
  border: 1px solid var(--border);
}

/* Header */
.filter-header {
  padding: 18px 20px 16px;
  background: linear-gradient(135deg, #007287 0%, #005a6b 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.filter-header::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  pointer-events: none;
}
.filter-header::after {
  content: '';
  position: absolute;
  bottom: -30px; left: 10px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.filter-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.2px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.filter-header h3::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2.2'%3E%3Cpath d='M3 4h18M6 8h12M10 12h4'/%3E%3C/svg%3E") center/contain no-repeat;
}
.filter-header-text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.filter-header .filter-header-tagline {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
}
.filter-clear {
  font-size: 11.5px;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  font-weight: 500;
  background: rgba(255,255,255,.2);
  padding: 4px 10px;
  border-radius: 20px;
  transition: background .2s;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.filter-clear:hover {
  background: rgba(255,255,255,.35);
  color: #fff;
  text-decoration: none;
}

/* Filter Section */
.filter-section {
  overflow: hidden;
}
.filter-section + .filter-section {
  border-top: 1px solid var(--border);
}
.filter-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  transition: background .15s, color .15s;
}
.filter-section-title:hover {
  background: var(--bg);
  color: var(--text);
}
.filter-section-title svg {
  width: 14px; height: 14px;
  color: var(--text-muted);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.filter-section.collapsed svg { transform: rotate(-90deg); }
.filter-section-content { padding: 2px 0 10px; }
.filter-section.collapsed .filter-section-content { display: none; }

/* Category accordion items */
.cat-acc-item {
  margin: 0 10px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1px;
}
.cat-acc-item:last-child { margin-bottom: 6px; }

.cat-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 9px 10px;
  gap: 4px;
  user-select: none;
  border-radius: 8px;
  transition: background .15s;
}
.cat-acc-header:hover {
  background: var(--bg);
}
.cat-acc-header.open {
  background: var(--primary-light);
}

.cat-acc-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  gap: 6px;
  transition: color .15s;
}
.cat-acc-header:hover .cat-acc-label,
.cat-acc-header.open .cat-acc-label {
  color: var(--primary);
  font-weight: 600;
}
.cat-acc-label.active {
  color: var(--primary);
  font-weight: 700;
}

.filter-check-count {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  padding: 1px 7px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all .15s;
  margin-left: auto;
}
.cat-acc-header.open .filter-check-count {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.cat-acc-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  line-height: 1;
  padding: 3px;
  border-radius: 4px;
  transition: transform .25s cubic-bezier(.4,0,.2,1), color .15s;
}
.cat-acc-header.open .cat-acc-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Brand panel */
.cat-acc-brands {
  display: none;
  overflow: hidden;
  max-height: 0;
  padding-left: 8px;
  padding-right: 4px;
  margin: 2px 6px 4px 14px;
  border-left: 2px solid rgba(0,114,135,.25);
  transition: max-height .3s cubic-bezier(.4,0,.2,1);
}
.cat-acc-brand-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  font-size: 12.5px;
  text-decoration: none;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: background .15s, color .15s, padding-left .15s;
}
.cat-acc-brand-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 12px;
}
.cat-acc-brand-item.active {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-light);
  padding-left: 12px;
}
.cat-acc-brand-item .filter-check-count {
  font-size: 10px;
}
.cat-acc-brand-item:hover .filter-check-count,
.cat-acc-brand-item.active .filter-check-count {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cat-acc-loading,
.cat-acc-no-brand {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px 8px;
  font-style: italic;
}

/* Checkbox items */
.filter-check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .15s, background .15s;
  border-radius: 0;
}
.filter-check-item:hover { background: var(--bg); color: var(--text); }
.filter-check-item input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

/* Price range */
.price-range {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px 4px;
}
.price-range input {
  width: 100%;
  padding: 7px 10px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.price-range input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,114,135,.1);
}
.price-range span { color: var(--text-muted); flex-shrink: 0; font-size: 12px; }

/* Active Filters */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.active-filter-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--primary-light);
  border: 1px solid rgba(0,114,135,.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
}
.active-filter-badge .remove { font-size: 14px; line-height: 1; }
.active-filter-badge:hover { background: rgba(0,114,135,.2); }

/* Listing Area */
.listing-area { }
.listing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.listing-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.listing-count span { color: var(--text); }
.sort-select {
  padding: 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  background: var(--card);
  transition: border-color var(--transition);
  color: var(--text);
}
.sort-select:focus { border-color: var(--primary); }

/* Listing Grid */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.listing-grid.listing-list-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.listing-grid.listing-list-rows .empty-state {
  width: 100%;
  grid-column: unset;
}

.listing-list-head {
  display: none;
}
@media (min-width: 769px) {
  .listing-list-head {
    display: grid;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px;
    margin: 0 0 2px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: linear-gradient(180deg, rgba(248,250,252,.9), rgba(248,250,252,.4));
    border: 1px solid var(--border);
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    border-bottom: 2px solid var(--border);
  }
  .listing-list-head--6col {
    grid-template-columns: 112px minmax(100px, 1.35fr) minmax(72px, 0.75fr) minmax(88px, 1fr) 88px 92px;
    gap: 12px;
  }
  .listing-list-head-brand,
  .listing-list-head-city,
  .listing-list-head-spec {
    min-width: 0;
  }
  .listing-list-head-price { text-align: right; justify-self: end; }
}

.listing-row-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.2s ease, transform 0.2s ease;
}
.listing-row-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.listing-row-link {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  min-height: 100px;
}
@media (min-width: 769px) {
  .listing-row-link {
    display: grid;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
  }
  .listing-row-item--kategori-cols .listing-row-link {
    gap: 12px;
    grid-template-columns: 112px minmax(100px, 1.35fr) minmax(72px, 0.75fr) minmax(88px, 1fr) 88px 92px;
  }
}
.listing-row-img {
  position: relative;
  width: 140px;
  min-width: 140px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
}
.listing-row-item--kategori-cols .listing-row-img {
  width: 112px;
  min-width: 112px;
  height: 84px;
  border-radius: 8px;
}
.listing-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.listing-row-item:hover .listing-row-img img { transform: scale(1.05); }
.listing-row-badges {
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: space-between;
  pointer-events: none;
}
.listing-row-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.listing-row-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 6px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listing-row-meta { font-size: 12px; color: var(--text-muted); }
.listing-row-brand,
.listing-row-city {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.35;
  min-width: 0;
}
.listing-row-brand-inner,
.listing-row-city-inner {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.listing-row-brand--empty,
.listing-row-city--empty {
  color: var(--text-muted);
  font-weight: 600;
}
.listing-row-spec {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  min-width: 0;
}
.listing-row-spec-inner {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.listing-row-spec--empty {
  color: var(--text-muted);
  font-weight: 600;
}
@media (max-width: 768px) {
  .listing-row-item--kategori-cols .listing-row-brand,
  .listing-row-item--kategori-cols .listing-row-spec,
  .listing-row-item--kategori-cols .listing-row-city {
    width: 100%;
    flex: 1 1 100%;
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px dashed var(--border);
  }
  .listing-row-item--kategori-cols .listing-row-brand-inner,
  .listing-row-item--kategori-cols .listing-row-city-inner {
    white-space: normal;
  }
  .listing-row-item--kategori-cols .listing-row-brand::before {
    content: attr(data-brand-label) ': ';
    font-weight: 800;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
  }
  .listing-row-item--kategori-cols .listing-row-spec::before {
    content: attr(data-spec-label) ': ';
    font-weight: 800;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
  }
  .listing-row-item--kategori-cols .listing-row-city::before {
    content: attr(data-city-label) ': ';
    font-weight: 800;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
  }
}

.listing-row-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  align-self: center;
  white-space: nowrap;
  padding-left: 8px;
}
@media (min-width: 769px) {
  .listing-row-price {
    justify-self: end;
    text-align: right;
    padding-left: 0;
    align-self: center;
  }
}

.listing-brand-chip {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(0,114,135,.12), rgba(0,114,135,.06));
  color: var(--primary);
  vertical-align: middle;
}

.filter-panel-pro .filter-section-title {
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}
.filter-panel-pro .filter-section-title:hover { color: var(--primary); }
.filter-active-brand {
  padding: 12px 14px;
  border-bottom: 1px solid #eef2f8;
  background: linear-gradient(135deg, rgba(0,114,135,.08), transparent);
}
.filter-active-brand-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}
.filter-active-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.filter-active-brand-clear {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.filter-active-brand-clear:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .listing-row-link { flex-wrap: wrap; }
  .listing-row-img { width: 100%; min-width: 100%; height: 160px; }
  .listing-row-price {
    width: 100%;
    text-align: left;
    padding-left: 0;
    padding-top: 4px;
    justify-self: stretch;
  }
}

/* ============================================================
   LISTING CARD
   ============================================================ */
.listing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.listing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}
.card-link { display: block; }
.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg);
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.listing-card:hover .card-image img { transform: scale(1.04); }
.card-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  pointer-events: none;
}
.card-body { padding: 12px; }
.card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
  margin-bottom: 8px;
}
.listing-card--compact .card-image {
  aspect-ratio: 1 / 1;
}
.listing-card--compact .card-body {
  padding: 8px 10px 10px;
}
.listing-card--compact .card-title {
  margin-bottom: 0;
  min-height: 3.9em;
  font-size: 11.5px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  -webkit-line-clamp: 3;
}

/* ---- İlan Karşılaştırma ---- */
.cmp-card-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,.92);
  color: #7C3AED;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(15,23,42,.18);
  opacity: 0;
  transition: opacity .15s, transform .15s;
}
.listing-card:hover .cmp-card-btn { opacity: 1; }
.cmp-card-btn:hover { transform: scale(1.08); }
.cmp-card-btn.cmp-active {
  opacity: 1;
  background: #7C3AED;
  color: #fff;
}
@media (max-width: 768px) {
  .cmp-card-btn { opacity: .85; }
}

#cmp-bar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 1200;
  max-width: calc(100vw - 24px);
}
.cmp-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1E293B;
  color: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(15,23,42,.35);
}
.cmp-bar-items { display: flex; gap: 8px; }
.cmp-bar-item {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: visible;
  background: #334155;
}
.cmp-bar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.cmp-bar-x {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: #EF4444;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmp-bar-actions { display: flex; align-items: center; gap: 10px; }
.cmp-bar-go {
  background: #7C3AED;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 9px;
  text-decoration: none;
  white-space: nowrap;
}
.cmp-bar-go:hover { background: #6D28D9; color: #fff; }
.cmp-bar-hint { font-size: 12px; color: #94A3B8; white-space: nowrap; }
.cmp-bar-clear {
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 12px;
  cursor: pointer;
}
.cmp-bar-clear:hover { color: #fff; }
.card-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.card-meta-left,
.card-meta-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.meta-city {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
}
.meta-city svg { flex-shrink: 0; }
.meta-time { font-size: 11px; color: var(--text-muted); }
.meta-stat {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  border-radius: var(--radius-badge);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.badge-new { background: var(--success); color: #fff; }
.badge-used { background: var(--warning); color: #fff; }
.badge-broken { background: var(--danger); color: #fff; }
.badge-hot { background: var(--primary); color: #fff; }
.badge-featured-card { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; }
.badge-video-request {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.badge-pending { background: var(--warning); color: #fff; }
.badge-active { background: var(--success); color: #fff; }
.badge-sold { background: var(--info); color: #fff; }
.badge-rejected { background: var(--danger); color: #fff; }
.badge-featured { background: var(--premium); color: #92400E; }
.badge-primary { background: var(--primary); color: #fff; }

/* Fav Button — ilan kartı içindeki küçük kalp */
.listing-card .fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  pointer-events: auto;
  width: 32px; height: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-secondary);
  z-index: 1;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}
.listing-card .fav-btn:hover, .listing-card .fav-btn.favorited {
  background: #FFF0F0;
  border-color: var(--danger);
  color: var(--danger);
}

.active-filter-badge--muted {
  background: var(--bg) !important;
  color: var(--text-secondary) !important;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}
.empty-icon {
  width: 80px; height: 80px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.empty-icon svg { width: 36px; height: 36px; color: var(--text-muted); }
.empty-state h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--text-secondary); margin-bottom: 20px; }

/* Load More */
.load-more-wrap {
  text-align: center;
  padding: 24px 0;
}
.btn-load-more {
  background: var(--card);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 12px 32px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-load-more:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.btn-load-more.loading { opacity: .6; pointer-events: none; }

/* ============================================================
   İLAN DETAY
   ============================================================ */
.listing-detail { padding: 24px 0 40px; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
.detail-left { }
.detail-right {
  position: sticky;
  top: calc(var(--site-header-h) + 16px);
}


/* Gallery dot navigation */
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  border: 1.5px solid rgba(0,0,0,.15);
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.gallery-dot:hover { transform: scale(1.3); }

/* Gallery main - cursor pointer kaldır, sadece lightbox için */
.gallery-main { cursor: zoom-in; }
/* Gallery */
.gallery { margin-bottom: 24px; }
.gallery-main {
  position: relative;
  aspect-ratio: 4/3;
  background: #f8f8f8;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 10px;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s;
}
.gallery-main:hover img { transform: scale(1.02); }
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 2;
  font-size: 20px;
  box-shadow: var(--shadow-md);
}
.gallery-arrow:hover { background: var(--primary); color: #fff; }
.gallery-arrow.prev { left: 12px; }
.gallery-arrow.next { right: 12px; }
.gallery-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.5);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 72px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Specs Table */
.specs-table { margin-bottom: 24px; }
.specs-table h2 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.specs-grid {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid var(--border);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) .spec-val { background: var(--bg); }
.spec-row:nth-child(even) .spec-key { background: #F0F2F7; }
.spec-key {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg);
  border-right: 1px solid var(--border);
}
.spec-val {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
}

/* Description */
.listing-desc { margin-bottom: 24px; }
.listing-desc h2 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.desc-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
}
.desc-text a { color: var(--primary); text-decoration: underline; }
.desc-more-btn {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  display: inline-block;
}

/* Seller Card */
.seller-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 14px;
}
.price-box {
  padding: 18px;
  border-bottom: 1px solid var(--border);
}
.price-box .price-big {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}
.price-bargain {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  background: #ECFDF5;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}
.seller-info {
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.seller-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.seller-name { font-size: 14px; font-weight: 700; }
.seller-username { font-size: 12px; color: var(--text-muted); }
.seller-stats { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.seller-actions {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   İLAN EKLEME WIZARD
   ============================================================ */
.wizard-page { padding: 32px 0 60px; }
.wizard-wrap { max-width: 800px; margin: 0 auto; }
.wizard-steps {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 16px 24px;
  gap: 0;
}
.wizard-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.wizard-step:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 12px;
  transition: background var(--transition);
}
.wizard-step.done::after { background: var(--primary); }
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}
.wizard-step.active .step-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.wizard-step.done .step-num {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}
.step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.wizard-step.active .step-label { color: var(--primary); }
.wizard-step.done .step-label { color: var(--success); }

.wizard-body {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
}
.wizard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

/* Form Elements */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-label .req { color: var(--danger); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text);
  background: var(--card);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,114,135,.1);
}
.form-control.error { border-color: var(--danger); }
.form-control:disabled { background: var(--bg); color: var(--text-muted); opacity:.6; cursor:not-allowed; }
textarea.form-control { border: 1.5px solid var(--border) !important; resize: vertical; }
.form-error { font-size: 11px; color: var(--danger); margin-top: 4px; font-weight: 500; }
.form-hint { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.char-counter { float: right; font-size: 11px; color: var(--text-muted); }
.char-counter.warn { color: var(--warning); }
.char-counter.danger { color: var(--danger); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.form-checkbox input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}
.price-input-wrap { position: relative; }
.price-input-wrap input { padding-right: 30px; }
.price-symbol {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

/* Category Card Grid (Wizard Step 1) */
.cat-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cat-select-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 14px;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cat-select-card:hover { border-color: var(--primary); background: var(--primary-light); }
.cat-select-card.selected { border-color: var(--primary); background: var(--primary-light); }
.cat-select-card .icon-wrap {
  width: 60px; height: 60px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-select-card.selected .icon-wrap,
.cat-select-card:hover .icon-wrap { background: var(--primary); }
.cat-select-card.selected .icon-wrap svg,
.cat-select-card:hover .icon-wrap svg { stroke: #fff; }
.cat-select-card .icon-wrap svg { width: 30px; height: 30px; stroke: var(--text-secondary); }
.cat-select-card .cat-name { font-size: 13px; font-weight: 700; }

/* Photo Upload */
.photo-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg);
}
.photo-upload-area:hover, .photo-upload-area.dragover {
  border-color: var(--primary);
  background: var(--primary-light);
}
.photo-upload-area svg { width: 48px; height: 48px; color: var(--text-muted); margin: 0 auto 12px; }
.photo-upload-area p { font-size: 14px; color: var(--text-secondary); }
.photo-upload-area span { font-size: 12px; color: var(--text-muted); display: block; margin-top: 4px; }
.photo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 16px; }
.photo-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
}
.photo-item.cover { border-color: var(--primary); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-item .cover-label {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(0,114,135,.9);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  padding: 3px;
  text-transform: uppercase;
}
.photo-item .remove-btn {
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transition: opacity var(--transition);
}
.photo-item:hover .remove-btn { opacity: 1; }
.photo-item .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s;
}

/* Desc Templates */
.desc-templates-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 6px;
  font-weight: 500;
}
.desc-templates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.desc-template-btn {
  padding: 4px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-secondary);
}
.desc-template-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* ============================================================
   MESAJLAŞMA
   ============================================================ */
.messages-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.conv-list { border-right: 1px solid var(--border); overflow-y: auto; }
.conv-search { padding: 14px; border-bottom: 1px solid var(--border); }
.conv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid var(--border);
}
.conv-item:hover, .conv-item.active { background: var(--bg); }
.conv-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.conv-info { flex: 1; min-width: 0; }
.conv-name { font-size: 13px; font-weight: 700; }
.conv-name.unread { font-weight: 800; }
.conv-last { font-size: 12px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.conv-last.unread { color: var(--text); font-weight: 600; }
.conv-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.conv-time { font-size: 11px; color: var(--text-muted); }
.conv-unread-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-area { display: flex; flex-direction: column; flex: 1; min-height: 0; overflow: hidden; }
.chat-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-listing-card {
  transition: background var(--transition);
}
.chat-listing-card:hover {
  background: #eef1f3 !important;
}
.conv-search-input:focus {
  border-color: var(--primary) !important;
}
.notif-clear-btn:hover {
  background: #FEF2F2;
}
.notif-item {
  transition: background .2s;
  background: transparent;
}
.notif-item:hover {
  background: var(--bg);
}
.notif-item--unread {
  background: rgba(0, 114, 135, .05);
}
.notif-item--unread:hover {
  background: var(--bg);
}
.notif-page-nav:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  overflow-anchor: none;
}
.msg-bubble {
  max-width: 70%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.6;
}
.msg-bubble.sent {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.msg-bubble.received {
  background: var(--bg);
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.msg-time { font-size: 10px; opacity: .7; margin-top: 4px; text-align: right; }
.chat-input-area {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--card);
  position: relative;
  z-index: 2;
}
.quick-msgs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.quick-msg-btn {
  padding: 4px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 11px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-secondary);
}
.quick-msg-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.chat-input-row { display: flex; gap: 10px; }
.chat-input-row textarea {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  font-size: 13px;
  font-family: var(--font);
  resize: none;
  outline: none;
  min-height: 42px;
  max-height: 120px;
  overflow-y: auto;
  transition: border-color var(--transition);
  display: block;
}
.chat-input-row textarea:focus { border-color: var(--primary); }


/* ============================================================
   HESABIM
   ============================================================ */
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 24px 0 40px;
  align-items: start;
}
.account-sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: sticky;
  top: calc(var(--site-header-h) + 16px);
}
.sidebar-user {
  padding: 20px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.sidebar-avatar-wrap {
  position: relative;
  width: 64px;
  margin: 0 auto 12px;
}
.sidebar-avatar-wrap img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.sidebar-avatar-edit {
  position: absolute;
  bottom: 0; right: -4px;
  width: 22px; height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
}
.sidebar-name { font-size: 15px; font-weight: 700; }
.sidebar-username { font-size: 12px; color: var(--text-muted); }
.sidebar-since { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.sidebar-nav { padding: 8px 0; }
.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-secondary);
  min-height: 44px;
}
.sidebar-nav-item:hover, .sidebar-nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
}
.sidebar-nav-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.sidebar-nav-item.danger { color: var(--danger); }
.sidebar-nav-item.danger:hover { background: #FEF2F2; }
.account-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.content-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content-header h1 { font-size: 18px; font-weight: 700; }
.content-body { padding: 22px; }

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.stat-card {
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 16px;
  text-align: center;
}
.stat-num { font-size: 28px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

/* Table */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--text-muted);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 12px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg); }
.table-wrap { overflow-x: auto; }
.table-img {
  width: 50px; height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

/* Profile Page - Professional 2-Column Layout */
.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  padding: 20px;
}
.profile-sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  height: fit-content;
  text-align: center;
}
.profile-avatar-section {
  margin-bottom: 24px;
}
.profile-avatar-wrap-large {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}
.profile-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--border);
}
.avatar-edit-btn-large {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 3px solid #fff;
  transition: transform 0.2s;
}
.avatar-edit-btn-large:hover {
  transform: scale(1.1);
}
.profile-name-large {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}
.profile-username-large {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.profile-bio-large {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 8px;
}
.profile-stats-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.stat-v-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 10px;
}
.stat-v-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.stat-v-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.profile-forms-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pro-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.pro-card-compact {
  border-left: 4px solid #4F46E5;
}
.pro-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.pro-card-header svg {
  color: var(--primary);
}
.pro-card-compact .pro-card-header svg {
  color: #4F46E5;
}
.pro-card-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}
.pro-form {
  padding: 24px;
}
.pro-form-compact {
  padding: 20px 24px;
}
.pro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pro-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.pro-field {
  margin-bottom: 0;
}
.pro-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.pro-field label span {
  color: var(--primary);
}
.pro-field input,
.pro-field select,
.pro-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  box-sizing: border-box;
  transition: border-color 0.2s;
  outline: none;
}
.pro-field input:focus,
.pro-field select:focus,
.pro-field textarea:focus {
  border-color: var(--primary);
}
.pro-input-icon {
  position: relative;
}
.pro-input-icon span {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}
.pro-input-icon input {
  padding-left: 28px;
}
.pro-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.pro-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.pro-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #4F46E5;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.pro-btn-secondary:hover {
  background: #4338CA;
}
@media (max-width: 900px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
  .profile-sidebar-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    text-align: left;
  }
  .profile-avatar-section {
    margin-bottom: 0;
  }
  .profile-stats-vertical {
    padding-top: 0;
    padding-left: 24px;
    border-top: none;
    border-left: 1px solid var(--border);
  }
}
@media (max-width: 640px) {
  .profile-layout {
    padding: 16px;
  }
  .profile-sidebar-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .profile-stats-vertical {
    padding-left: 0;
    padding-top: 20px;
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .pro-row,
  .pro-row-3 {
    grid-template-columns: 1fr;
  }
}

/* Listing List (Clean Horizontal Layout) */
.listing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}
.listing-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.listing-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: #E5E7EB;
}
.listing-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}
.listing-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.listing-main {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.listing-text {
  flex: 1;
  min-width: 0;
}
.listing-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.listing-title:hover {
  color: var(--primary);
}
.listing-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  gap: 6px;
}
.listing-price-wrap {
  text-align: right;
  flex-shrink: 0;
}
.listing-price {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.listing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.listing-metrics {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.listing-metrics span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.listing-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-view {
  background: #F3F4F6;
  color: #374151;
}
.btn-view:hover {
  background: #E5E7EB;
  color: #111827;
}
.btn-edit {
  background: transparent;
  color: #6B7280;
  border: 1px solid #E5E7EB;
}
.btn-edit:hover {
  background: #F9FAFB;
  color: #374151;
  border-color: #D1D5DB;
}
.btn-sold {
  background: #DEF7EC;
  color: #057A55;
}
.btn-sold:hover {
  background: #BCF0DA;
  color: #046C4E;
}
.btn-extend {
  background: #E1EFFE;
  color: #1E40AF;
}
.btn-extend:hover {
  background: #C3DDFD;
  color: #1E3A8A;
}

@media (max-width: 640px) {
  .listing-main {
    flex-direction: column;
    gap: 8px;
  }
  .listing-price-wrap {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .listing-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .listing-actions {
    flex-wrap: wrap;
    width: 100%;
  }
  .btn-action {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .listing-thumb {
    width: 80px;
    height: 64px;
  }
  .listing-item {
    padding: 12px;
    gap: 12px;
  }
  .btn-action {
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 240px;
  background: #1F2937;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-logo {
  padding: 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.admin-logo a {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}
.admin-logo a span { color: var(--primary); }
.admin-nav { padding: 8px 0; }
.admin-nav-section {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.3);
  padding: 16px 20px 6px;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}
.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.admin-nav-item.active { border-left: 3px solid var(--primary); }
.admin-nav-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.admin-badge {
  margin-left: auto;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-full);
}
.admin-badge--warn { background: #EAB308; color: #111827; }
.admin-main { flex: 1; min-width: 0; }
.admin-topbar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-topbar h1 { font-size: 18px; font-weight: 700; }
.admin-content { padding: 24px; }

/* Admin Stat Cards */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.admin-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.admin-stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.admin-stat-icon svg { width: 24px; height: 24px; }
.admin-stat-icon.orange { background: var(--primary-light); color: var(--primary); }
.admin-stat-icon.green { background: #ECFDF5; color: var(--success); }
.admin-stat-icon.blue { background: #EFF6FF; color: var(--info); }
.admin-stat-icon.yellow { background: #FFFBEB; color: var(--warning); }
.admin-stat-num { font-size: 26px; font-weight: 800; }
.admin-stat-label { font-size: 12px; color: var(--text-secondary); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-backdrop.open { 
  display: flex;
}
.modal {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.2s ease;
}
@keyframes modalIn {
  from { transform: scale(.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h2 { font-size: 16px; font-weight: 700; }
.modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.modal-close:hover { background: var(--border); }
.modal-body { padding: 20px; }
.modal-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.quick-msg-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.quick-msg-item {
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
}
.quick-msg-item:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  pointer-events: none;
}
.lightbox-close {
  z-index: 3;
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-arrow {
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-arrow:hover { background: rgba(255,255,255,.2); }
.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: #1F2937;
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
  max-width: 360px;
  animation: toastIn 0.3s ease;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); color: #92400E; }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 0;
  margin-top: 48px;
  border-top: 1px solid var(--footer-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--footer-heading);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--primary); }
.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--footer-muted);
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: #fff;
  border: 1px solid var(--footer-border);
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-muted);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--footer-heading);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--footer-muted);
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-links a:hover { color: var(--primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--footer-muted);
  line-height: 1.5;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--primary);
  opacity: 0.85;
}
.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--footer-muted);
}
.footer-bottom-tagline {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   GİRİŞ / KAYIT
   ============================================================ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--bg);
}
.auth-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow-md);
}
.auth-logo {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 24px;
}
.auth-logo span { color: var(--primary); }
.auth-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.auth-subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.auth-divider {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin: 16px 0;
  position: relative;
}
.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.auth-divider span { background: var(--card); padding: 0 12px; position: relative; }
.auth-link { text-align: center; font-size: 13px; margin-top: 16px; color: var(--text-secondary); }
.auth-link a { color: var(--primary); font-weight: 600; }
.auth-link a:hover { text-decoration: underline; }

/* ============================================================
   ARAMA
   ============================================================ */
.search-page { padding: 24px 0 40px; }
.search-header { margin-bottom: 20px; }
.search-header h1 { font-size: 20px; font-weight: 700; }
.search-header .highlight { color: var(--primary); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { margin-bottom: 16px; }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb-item {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb-item a { color: var(--text-secondary); transition: color var(--transition); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--text); font-weight: 500; }
.breadcrumb-item:not(:last-child)::after { content: '/'; color: var(--border); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 0;
}
.page-btn {
  min-width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-secondary);
  padding: 0 8px;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-dots { color: var(--text-muted); font-size: 14px; padding: 0 4px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.w-full { width: 100%; }
.hidden { display: none; }
.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: inherit;
}

/* ============================================================
   ANA SAYFA — kategori blokları + mobil filtre
   ============================================================ */
.homepage-random-sep {
  margin: 28px 0 8px;
  border: none;
  border-top: 1px solid var(--border);
}
.cat-block { margin-top: 32px; }
.cat-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.cat-block-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cat-block-accent {
  width: 4px;
  height: 22px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.cat-block-title {
  font-size: 17px;
  font-weight: 800;
  margin: 0;
}
.cat-block-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.cat-block-more:hover { color: var(--primary-hover); }
.cat-block-grid {
  display: grid;
  gap: 14px;
}
.listing-grid--cols-2,
.cat-block-grid.listing-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.listing-grid--cols-3,
.cat-block-grid.listing-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.listing-grid--cols-4,
.cat-block-grid.listing-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.listing-grid--cols-5,
.cat-block-grid.listing-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }
.listing-grid--cols-6,
.cat-block-grid.listing-grid--cols-6 { grid-template-columns: repeat(6, 1fr); }
.listing-grid--cols-7,
.cat-block-grid.listing-grid--cols-7 { grid-template-columns: repeat(7, 1fr); }
.listing-grid--cols-8,
.cat-block-grid.listing-grid--cols-8 { grid-template-columns: repeat(8, 1fr); }

.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin-bottom: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--card);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  width: 100%;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.filter-toggle-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}
.filter-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1040;
  opacity: 0;
  transition: opacity .25s ease;
}
.filter-backdrop.is-open {
  display: block;
  opacity: 1;
}
@media (max-width: 768px) {
  .filter-toggle-btn { display: flex; }
  .filter-panel {
    display: none;
    position: fixed;
    top: var(--site-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    max-height: none;
    border-radius: 0;
    overflow-y: auto;
    margin: 0;
  }
  .filter-panel.mobile-open { display: block; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .listing-grid:not([class*="listing-grid--cols-"]) { grid-template-columns: repeat(4, 1fr); }
  .cat-grid { justify-content: center; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 28px; }
}

@media (max-width: 1024px) {
  .main-layout { grid-template-columns: 200px 1fr; gap: 16px; }
  .listing-grid:not([class*="listing-grid--cols-"]) { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { justify-content: center; }
  .detail-grid { grid-template-columns: 1fr 300px; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-search { display: none; }
  .header-right .btn-ghost, .header-right .btn { display: none; }
  .hamburger { display: flex; }
  .cat-bar { display: none; }
  .main-layout { grid-template-columns: 1fr; }
  .listing-grid,
  .listing-grid--cols-2,
  .listing-grid--cols-3,
  .listing-grid--cols-4,
  .listing-grid--cols-5,
  .listing-grid--cols-6,
  .listing-grid--cols-7,
  .listing-grid--cols-8,
  .cat-block-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .cat-grid { justify-content: center; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-right { position: static; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .messages-layout { grid-template-columns: 1fr; min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { display: none; }
  .acil-layout { grid-template-columns: 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-select-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .listing-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-grid { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .auth-box { padding: 24px; }
  .wizard-steps { flex-wrap: wrap; gap: 10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}

/* Scroll lock when modal/drawer open */
body.scroll-lock { overflow: hidden; }

/* Kullanıcı profili — mükemmel satıcı + oy dağılımı */
.perfect-seller-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}
.perfect-seller-badge__icon {
  color: #f59e0b;
  font-size: 13px;
  line-height: 1;
}

.profile-rating-breakdown {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  margin-bottom: 24px;
}
.profile-rating-breakdown__head {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.profile-rating-breakdown__title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px;
}
.profile-rating-breakdown__sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.profile-rating-breakdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.profile-rating-row {
  display: grid;
  grid-template-columns: 120px 1fr 36px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}
.profile-rating-row__stars {
  font-weight: 700;
  color: #f59e0b;
  white-space: nowrap;
}
.profile-rating-row__label {
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 4px;
  font-size: 12px;
}
.profile-rating-row__bar-wrap {
  height: 8px;
  border-radius: 999px;
  background: var(--bg);
  overflow: hidden;
}
.profile-rating-row__bar {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  min-width: 0;
  transition: width 0.5s ease;
}
.profile-rating-row__cnt {
  text-align: right;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 12px;
}

/* Ana sayfa — video & acil istek vitrin */
.home-promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.home-promo-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.home-promo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.home-promo-card--video {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.06), rgba(37, 99, 235, 0.04));
  border-color: rgba(37, 99, 235, 0.2);
}
.home-promo-card--acil {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(251, 191, 36, 0.04));
  border-color: rgba(245, 158, 11, 0.25);
}
.home-promo-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.home-promo-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.home-promo-card__body strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}
.home-promo-card__body span {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .home-promo-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .profile-rating-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .profile-rating-row__bar-wrap { order: 3; }
  .profile-rating-row__cnt { text-align: left; order: 2; }
}
