/* ===================================================================
   SRO Mobile Market — Tema
   sromobile.tr renk paleti ve tasarım dili uyarlanmıştır
   =================================================================== */

/* ===== RENK PALETİ (sromobile.tr'den alındı) ===== */
:root {
  /* Ana renkler — sromobile.tr altın/kahve paleti */
  --primary:        #e5c282;   /* altın sarısı */
  --primary-dark:   #a4722f;   /* koyu altın */
  --primary-mid:    #998b4b;   /* orta altın */
  --primary-light:  #f0d9a0;   /* açık altın */
  --accent:         #e88d3f;   /* turuncu vurgu */

  /* Arka plan renkleri — sromobile.tr koyu kahve/siyah */
  --dark:           #020101;   /* en koyu arka plan */
  --dark2:          #060403;   /* header arka planı */
  --dark3:          #090705;   /* içerik arka planı */
  --dark4:          #181818;   /* footer arka planı */

  /* Panel/kart renkleri */
  --card-bg:        #261f16;   /* kart arka planı */
  --card-bg2:       #3b3227;   /* ikincil kart */
  --card-bg3:       #272016;   /* üçüncül kart */
  --card-border:    #4a3d2a;   /* kart kenarlığı */
  --card-border2:   #867b69;   /* açık kenarlık */

  /* Metin renkleri */
  --text:           #eae3b6;   /* ana metin (sromobile.tr'den) */
  --text-light:     #ffffff;   /* beyaz metin */
  --text-muted:     #867b69;   /* soluk metin */
  --text-dark:      #1a150f;   /* koyu metin */

  /* Durum renkleri */
  --success:        #28a745;
  --danger:         #dc3545;
  --warning:        #ffc107;
  --info:           #17a2b8;
  --gold:           #e5c282;

  /* Gradient — sromobile.tr başlık gradienti */
  --gradient-gold:  linear-gradient(to bottom, #a4722f, #998b4b, #825d2b);
  --gradient-dark:  linear-gradient(135deg, #020101 0%, #060403 100%);
  --gradient-card:  linear-gradient(135deg, #261f16, #3b3227);

  /* Gölge ve köşe */
  --shadow:         0 4px 20px rgba(0,0,0,0.6);
  --shadow-gold:    0 4px 20px rgba(229,194,130,0.15);
  --radius:         8px;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; transition: all 0.2s; }
a:hover { color: var(--primary-light); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--dark2);
  border-bottom: 2px solid var(--primary-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 0 rgba(229,194,130,0.1);
}

/* Logo görseli */
.sro-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(229,194,130,0.3));
  transition: filter 0.3s;
}
.sro-logo-img:hover {
  filter: drop-shadow(0 0 14px rgba(229,194,130,0.6));
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-accent {
  color: var(--primary);
}

.navbar-brand .sub,
.navbar-brand-text .sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  display: block;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: lowercase;
}

/* Fallback logo kutusu */
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
  flex-shrink: 0;
}

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  padding: 1rem 0.8rem !important;
  transition: all 0.2s;
  position: relative;
  font-size: 0.9rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s;
}

.nav-link:hover::after { width: 80%; }

.btn-nav-login {
  background: transparent;
  border: 1px solid var(--primary-dark);
  color: var(--primary) !important;
  border-radius: 4px;
  padding: 0.4rem 1rem !important;
  margin: 0.5rem 0.3rem;
  font-size: 0.85rem;
}

.btn-nav-login:hover {
  background: rgba(229,194,130,0.1);
  border-color: var(--primary);
  color: var(--primary-light) !important;
}

.btn-nav-register {
  background: var(--gradient-gold);
  border: 1px solid var(--primary-dark);
  color: var(--text-dark) !important;
  border-radius: 4px;
  padding: 0.4rem 1rem !important;
  margin: 0.5rem 0.3rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.btn-nav-register:hover {
  filter: brightness(1.1);
  color: var(--text-dark) !important;
  box-shadow: 0 2px 10px rgba(164,114,47,0.4);
}

.btn-nav-post {
  background: var(--gradient-gold);
  color: var(--text-dark) !important;
  border-radius: 4px;
  padding: 0.4rem 1.2rem !important;
  margin: 0.5rem 0.3rem;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 10px rgba(164,114,47,0.3);
}

.btn-nav-post:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(164,114,47,0.5);
  filter: brightness(1.1);
}

/* Arama */
.navbar-search {
  position: relative;
  flex: 1;
  max-width: 380px;
  margin: 0 1rem;
}

.navbar-search input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  color: var(--text);
  border-radius: 4px;
  padding: 0.45rem 1rem 0.45rem 2.4rem;
  width: 100%;
  transition: all 0.3s;
  font-size: 0.875rem;
}

.navbar-search input::placeholder { color: var(--text-muted); }

.navbar-search input:focus {
  outline: none;
  border-color: var(--primary-dark);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(164,114,47,0.15);
}

.navbar-search .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== HERO ===== */
.hero {
  background: var(--dark3);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(164,114,47,0.06) 0%, transparent 60%);
  animation: pulse 5s ease-in-out infinite;
}

/* Altın çizgi dekorasyon */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-dark), var(--primary), var(--primary-dark), transparent);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-stat { text-align: center; }

.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== KATEGORİ BUTONLARI ===== */
.category-tabs {
  background: var(--dark2);
  border-bottom: 1px solid var(--card-border);
  padding: 0;
}

.category-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.4rem;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.875rem;
}

.category-tab:hover, .category-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary-dark);
  background: rgba(164,114,47,0.06);
}

.category-tab .icon { font-size: 1.1rem; }

/* ===== BÖLÜM BAŞLIĞI ===== */
.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Altın gradient çizgi */
.section-title::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* ===== KARTLAR ===== */
.listing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  height: 100%;
}

.listing-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(164,114,47,0.2);
}

.listing-card .card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--dark3);
}

.listing-card .card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--card-bg3), var(--card-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
}

.listing-card .card-body { padding: 1rem; }

.listing-card .card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card .card-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.listing-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.listing-card .badge-category {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
}

.listing-card .badge-featured {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gradient-gold);
  color: var(--text-dark);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
}

.listing-card .badge-urgent {
  position: absolute;
  top: 35px;
  right: 10px;
  background: var(--danger);
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-item     { background: rgba(23,162,184,0.15); color: #17a2b8; }
.badge-character{ background: rgba(111,66,193,0.15); color: #9b59b6; }
.badge-gold     { background: rgba(229,194,130,0.15); color: var(--primary); }
.badge-account  { background: rgba(40,167,69,0.15); color: #28a745; }

/* ===== SELLER BADGE ===== */
.seller-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.seller-avatar-sm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dark);
}

.star-rating { color: var(--gold); font-size: 0.8rem; }

/* ===== FİLTRE PANELİ ===== */
.filter-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}

.filter-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
}

.filter-group { margin-bottom: 1.5rem; }

.filter-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input {
  background: var(--card-bg3);
  border: 1px solid var(--card-border);
  color: var(--text);
  border-radius: 4px;
  padding: 0.45rem 0.8rem;
  width: 100%;
  font-size: 0.875rem;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--primary-dark);
}

/* ===== FORM STİLLERİ ===== */
.form-control, .form-select {
  background: var(--card-bg3) !important;
  border: 1px solid var(--card-border) !important;
  color: var(--text) !important;
  border-radius: 6px !important;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-dark) !important;
  box-shadow: 0 0 0 3px rgba(164,114,47,0.15) !important;
}

.form-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-control::placeholder { color: var(--text-muted) !important; }

/* ===== BUTONLAR ===== */
.btn-primary {
  background: var(--gradient-gold) !important;
  border: none !important;
  color: var(--text-dark) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 0.6rem 1.5rem !important;
  transition: all 0.3s !important;
}

.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 20px rgba(164,114,47,0.4) !important;
  filter: brightness(1.1) !important;
}

.btn-outline-primary {
  border: 1px solid var(--primary-dark) !important;
  color: var(--primary) !important;
  background: transparent !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.btn-outline-primary:hover {
  background: rgba(164,114,47,0.15) !important;
  color: var(--primary-light) !important;
}

.btn-danger {
  background: var(--danger) !important;
  border: none !important;
  border-radius: 6px !important;
}

/* ===== İLAN DETAY ===== */
.listing-detail {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
}

.listing-images {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark3);
}

.listing-images img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.listing-price-box {
  background: linear-gradient(135deg, rgba(164,114,47,0.12), rgba(153,139,75,0.06));
  border: 1px solid rgba(164,114,47,0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.listing-price-box .price {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seller-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.seller-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.contact-btn.discord  { background: #5865F2; color: #fff; }
.contact-btn.whatsapp { background: #25D366; color: #fff; }
.contact-btn.phone    { background: var(--success); color: #fff; }

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* ===== STATS KARTLARI ===== */
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.stat-card .stat-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== FLASH MESAJLARI ===== */
.alert {
  border-radius: 6px;
  border: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(40,167,69,0.12);
  color: #5cb85c;
  border-left: 3px solid #28a745;
}

.alert-danger {
  background: rgba(220,53,69,0.12);
  color: #e74c3c;
  border-left: 3px solid #dc3545;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark4);
  border-top: 1px solid var(--card-border);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  position: relative;
}

/* Altın üst çizgi */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-dark), var(--primary), var(--primary-dark), transparent);
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-title {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ===== SAYFALAMA ===== */
.pagination .page-link {
  background: var(--card-bg);
  border-color: var(--card-border);
  color: var(--text);
  font-size: 0.875rem;
}

.pagination .page-link:hover {
  background: rgba(164,114,47,0.2);
  border-color: var(--primary-dark);
  color: var(--primary);
}

.pagination .page-item.active .page-link {
  background: var(--gradient-gold);
  border-color: var(--primary-dark);
  color: var(--text-dark);
}

/* ===== DASHBOARD ===== */
.dashboard-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.listing-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card-bg3);
  border-radius: 6px;
  margin-bottom: 0.5rem;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.listing-row:hover {
  border-left-color: var(--primary-dark);
  background: var(--card-bg);
}

.listing-row img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title { font-size: 1.8rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat .number { font-size: 1.5rem; }
  .navbar-search { display: none; }
  .category-tab { padding: 0.7rem 1rem; font-size: 0.82rem; }
  .sro-logo-img { height: 36px; }
}

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ===== LOADING SKELETON ===== */
.skeleton {
  background: linear-gradient(90deg, var(--card-bg) 25%, var(--card-bg3) 50%, var(--card-bg) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== ÖZEL BADGE ===== */
.badge-new {
  background: var(--success);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
}

.badge-hot {
  background: var(--danger);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
}

/* ===== TOOLTIP ===== */
.tooltip-custom { position: relative; }

.tooltip-custom::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.tooltip-custom:hover::after { opacity: 1; }

/* ===== ACİL SATIŞ KARTI ===== */
.urgent-option-card {
  background: rgba(220,53,69,0.05);
  border: 1px solid rgba(220,53,69,0.2);
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.urgent-option-card:hover {
  border-color: rgba(220,53,69,0.4);
  background: rgba(220,53,69,0.08);
}

/* ===== SİTE İÇİ MESAJ BUTONU ===== */
.contact-btn.site-msg {
  background: rgba(164,114,47,0.1);
  border: 1px solid rgba(164,114,47,0.3);
  color: var(--primary);
}
.contact-btn.site-msg:hover {
  background: rgba(164,114,47,0.2);
  color: var(--primary-light);
}

/* ===== GÜVENLİ AL BUTONU ===== */
.btn-escrow {
  background: linear-gradient(135deg, #1a6b3a, #28a745);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  text-align: center;
  width: 100%;
}
.btn-escrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40,167,69,0.3);
  color: #fff;
}

/* ===== ADMİN PANELİ ===== */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 240px;
  min-width: 240px;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark3) 100%);
  border-right: 1px solid var(--card-border);
  padding: 1.5rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 0.5rem 1.5rem;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  color: var(--text-muted) !important;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
  position: relative;
}

.admin-nav-link:hover {
  background: rgba(164,114,47,0.1);
  color: var(--primary) !important;
}

.admin-nav-link.active {
  background: rgba(164,114,47,0.15);
  color: var(--primary) !important;
  border-left: 3px solid var(--primary-dark);
}

.badge-pending {
  background: var(--danger);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: auto;
}

.admin-content {
  flex: 1;
  padding: 2rem;
  overflow-x: auto;
  background: var(--dark);
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-border);
}

.admin-page-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

/* Admin İstatistik Grid */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s;
}

.admin-stat-card:hover { transform: translateY(-2px); }

.admin-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.admin-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.admin-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Admin Kart */
.admin-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--card-border);
}

.admin-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

/* Admin Tablo */
.admin-table-wrapper { overflow-x: auto; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table thead th {
  background: rgba(164,114,47,0.06);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--card-border);
  white-space: nowrap;
}

.admin-table tbody tr {
  border-bottom: 1px solid rgba(74,61,42,0.4);
  transition: background 0.15s;
}

.admin-table tbody tr:hover {
  background: rgba(164,114,47,0.03);
}

.admin-table tbody td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
}

/* Admin Aksiyon Butonları */
.btn-admin-approve,
.btn-admin-reject,
.btn-admin-view,
.btn-admin-delete,
.btn-admin-feature,
.btn-admin-role {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-admin-approve { background: rgba(40,167,69,0.15); color: var(--success); }
.btn-admin-approve:hover { background: var(--success); color: #fff; }

.btn-admin-reject { background: rgba(220,53,69,0.15); color: var(--danger); }
.btn-admin-reject:hover { background: var(--danger); color: #fff; }

.btn-admin-view { background: rgba(23,162,184,0.15); color: var(--info); }
.btn-admin-view:hover { background: var(--info); color: #fff; }

.btn-admin-delete { background: rgba(220,53,69,0.1); color: var(--danger); }
.btn-admin-delete:hover { background: var(--danger); color: #fff; }

.btn-admin-feature { background: rgba(255,193,7,0.1); color: #aaa; }
.btn-admin-feature:hover,
.btn-admin-feature.featured { background: rgba(255,193,7,0.2); color: var(--warning); }

.btn-admin-role { background: rgba(164,114,47,0.1); color: var(--primary); }
.btn-admin-role:hover { background: rgba(164,114,47,0.2); }

/* Durum Rozetleri */
.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

.status-pending  { background: rgba(255,193,7,0.15); color: #ffc107; }
.status-active   { background: rgba(40,167,69,0.15); color: var(--success); }
.status-sold     { background: rgba(23,162,184,0.15); color: var(--info); }
.status-rejected { background: rgba(220,53,69,0.15); color: var(--danger); }

/* Kategori Rozeti */
.badge-category {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(164,114,47,0.12);
  color: var(--primary);
  margin-right: 4px;
}

/* Rol Rozetleri */
.role-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

.role-user   { background: rgba(108,117,125,0.15); color: #adb5bd; }
.role-admin  { background: rgba(164,114,47,0.15); color: var(--primary); }
.role-banned { background: rgba(220,53,69,0.15); color: var(--danger); }

/* Admin Aktivite Listesi */
.admin-activity-list { padding: 0.5rem 0; }

.admin-activity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(74,61,42,0.35);
  transition: background 0.15s;
}

.admin-activity-item:hover { background: rgba(164,114,47,0.03); }
.admin-activity-item:last-child { border-bottom: none; }

.activity-icon {
  font-size: 1.2rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.activity-info { flex: 1; min-width: 0; }

/* Admin Form Elemanları */
.admin-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.admin-select {
  background: var(--card-bg3);
  border: 1px solid var(--card-border);
  color: var(--text);
  border-radius: 5px;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.admin-select:focus {
  outline: none;
  border-color: var(--primary-dark);
}

/* Kullanıcı Avatar (küçük) */
.user-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  flex-shrink: 0;
}

/* Responsive Admin */
@media (max-width: 768px) {
  .admin-sidebar { display: none; }
  .admin-content { padding: 1rem; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== DROPDOWN MENÜ ===== */
.dropdown-menu {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 6px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6) !important;
}

.dropdown-item:hover {
  background: rgba(164,114,47,0.1) !important;
  color: var(--primary) !important;
}

/* ===== ALTINÇIZGI DEKORATİF ===== */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-dark), var(--primary), var(--primary-dark), transparent);
  margin: 1.5rem 0;
  border: none;
}

/* ===== KART BAŞLIĞI GRADIENT ===== */
.card-header-gold {
  background: linear-gradient(135deg, rgba(164,114,47,0.15), rgba(153,139,75,0.08));
  border-bottom: 1px solid var(--card-border);
  padding: 1rem 1.2rem;
}