/* ==========================================================================
   Makineci TV | Kurumsal Modern E-Ticaret Tasarım Sistemi
   Turuncu & Siyah Odaklı Endüstriyel Pazaryeri Tasarımı
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- 1. CSS Değişkenleri & Tasarım Belirteçleri --- */
:root {
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  /* Ana Renk Paleti (Turuncu & Siyah) */
  --bg-page: #0b0c0f;
  --bg-surface: #121419;
  --bg-card: #181b22;
  --bg-card-hover: #1f232c;
  --bg-sidebar: #13151b;
  --bg-input: #101217;

  --border-subtle: #222630;
  --border-card: #272c38;
  --border-focus: #ff6600;

  /* Canlı Endüstriyel Turuncu Vurgu */
  --color-orange: #ff6600;
  --color-orange-hover: #ff771a;
  --color-orange-dark: #cc5200;
  --color-orange-glow: rgba(255, 102, 0, 0.28);
  --color-orange-light: rgba(255, 102, 0, 0.12);

  /* İkincil Renkler */
  --color-success: #10b981;
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #22bf5b;

  /* Tipografi Renkleri */
  --text-white: #ffffff;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dim: #475569;

  /* Gölgeler & Efektler */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(255, 102, 0, 0.3);
  --shadow-glow-intense: 0 0 35px rgba(255, 102, 0, 0.5);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. Global Sıfırlamalar --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Özel Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0e1014;
}
::-webkit-scrollbar-thumb {
  background: #2b303e;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

/* --- 3. Preloader --- */
.preloader-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--bg-page);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.preloader-content {
  text-align: center;
  position: relative;
}

.preloader-icon-wrapper {
  background: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.preloader-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
  color: #ffffff;
}

.preloader-accent {
  color: var(--color-orange);
}

.preloader-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

.preloader-spinner-container {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.preloader-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 102, 0, 0.2);
  border-top-color: var(--color-orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- 4. Üst Bilgi Şeridi (Industrial Ticker Bar) --- */
.top-ticker-bar {
  background: #08090b;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.4rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.top-ticker-container {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-ticker-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ticker-item i {
  color: var(--color-orange);
  width: 14px;
  height: 14px;
}

.ticker-item strong {
  color: var(--text-primary);
}

.top-ticker-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-portal-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.top-portal-link:hover {
  color: var(--color-orange);
}

/* --- 5. Ana Header (Kurumsal E-Ticaret Başlığı) --- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 15, 19, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Sol Kısım: Hamburger + Makineci TV Başlığı */
.header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

/* Büyük Hamburger Menü Butonu */
.hamburger-large-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #191c24;
  border: 1px solid var(--border-card);
  color: var(--text-white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.hamburger-large-btn:hover {
  background: #212631;
  border-color: var(--color-orange);
  color: var(--color-orange);
  box-shadow: 0 0 15px var(--color-orange-glow);
}

.hamburger-large-btn i {
  width: 24px;
  height: 24px;
}

.hamburger-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

/* Logo & Marka Başlığı */
.header-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}

.brand-title-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #ffffff;
}

.brand-accent {
  background: var(--color-orange);
  color: #ffffff;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-sm);
  font-style: italic;
  font-weight: 900;
  display: inline-block;
  margin-left: 0.2rem;
  box-shadow: 0 2px 10px var(--color-orange-glow);
}

.brand-badge-ustalar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.brand-badge-ustalar .badge-pill {
  background: #ffffff;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
}

.brand-ustalar-img {
  height: 1.1rem;
  width: auto;
  object-fit: contain;
}

.brand-subtext {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Orta Kısım: Geniş E-Ticaret Arama Çubuğu */
.header-center {
  flex: 1;
  max-width: 760px;
}

.header-search-bar {
  display: flex;
  align-items: stretch;
  background: var(--bg-input);
  border: 2px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.header-search-bar:focus-within {
  border-color: var(--color-orange);
  box-shadow: 0 0 20px var(--color-orange-glow);
}

/* Arama İçi Kategori Dropdown'u */
.search-category-dropdown {
  position: relative;
  background: #171920;
  border-right: 1px solid var(--border-card);
  display: flex;
  align-items: center;
}

.header-cat-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--text-primary);
  border: none;
  outline: none;
  padding: 0.75rem 2.2rem 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.header-cat-select option {
  background: #171920;
  color: #fff;
  padding: 0.5rem;
}

.cat-select-arrow {
  position: absolute;
  right: 0.75rem;
  width: 14px;
  height: 14px;
  color: var(--text-secondary);
  pointer-events: none;
}

/* Arama Giriş Alanı */
.search-input-box {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon-inside {
  position: absolute;
  left: 1rem;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.header-search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  padding: 0.75rem 2.5rem 0.75rem 2.75rem;
  font-size: 0.95rem;
  font-family: inherit;
}

.header-search-input::placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.search-clear-btn {
  position: absolute;
  right: 0.75rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #252a36;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.search-clear-btn:hover {
  background: var(--color-orange);
  color: #fff;
}
.search-clear-btn i {
  width: 12px;
  height: 12px;
}

/* Arama Tetikleme Butonu */
.btn-search-submit {
  background: var(--color-orange);
  color: #ffffff;
  padding: 0 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.btn-search-submit:hover {
  background: var(--color-orange-hover);
}

.btn-search-submit i {
  width: 18px;
  height: 18px;
}

/* Sağ Kısım: İletişim & İlan Ver Butonu */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.header-contact-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.header-contact-link:hover {
  background: #191c24;
}

.header-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f232c;
  border: 1px solid var(--border-card);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-contact-icon i {
  width: 18px;
  height: 18px;
}

.header-contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-val {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-white);
}

/* Büyük Turuncu İlan Ver Butonu */
.btn-ilan-ver {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 4px 15px var(--color-orange-glow);
  transition: all var(--transition-normal);
  text-transform: uppercase;
}

.btn-ilan-ver:hover {
  background: linear-gradient(135deg, #ff771a 0%, #ffa366 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 102, 0, 0.45);
  color: #ffffff;
}

.btn-ilan-ver i {
  width: 20px;
  height: 20px;
}

/* --- 6. Off-Canvas Hamburger Drawer (Sol Menü) --- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 360px;
  max-width: 88vw;
  background: var(--bg-surface);
  border-right: 1px solid var(--border-card);
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.7);
}

.drawer-menu.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.25rem 1.5rem;
  background: #0f1116;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
}

.drawer-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: #1b1e27;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.drawer-close-btn:hover {
  background: var(--color-orange);
  color: #fff;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-cta-box {
  width: 100%;
}

.drawer-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px var(--color-orange-glow);
}

.drawer-section-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.drawer-section-title i {
  color: var(--color-orange);
  width: 16px;
  height: 16px;
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer-nav-item-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  text-align: left;
  background: transparent;
}

.drawer-nav-item-btn:hover, .drawer-nav-item-btn.active {
  background: #1b1e27;
  color: var(--color-orange);
}

.drawer-nav-item-btn .item-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.drawer-nav-item-btn i {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
}

.drawer-nav-list a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.drawer-nav-list a:hover {
  background: #1b1e27;
  color: #fff;
}

.drawer-nav-list a i {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.drawer-support-card {
  background: #171a22;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.drawer-support-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.drawer-phone-link {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.drawer-wa-link {
  background: var(--color-whatsapp);
  color: #fff;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* --- 7. E-Ticaret Düzeni (2 Kolonlu Layout) --- */
.marketplace-wrapper {
  max-width: 1560px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}

.marketplace-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* --- 8. Sol Sidebar (Kategoriler & Filtreler) --- */
.marketplace-sidebar {
  width: 310px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  padding-right: 4px;
}

.sidebar-card {
  background: var(--bg-sidebar);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sidebar-card-header {
  padding: 1rem 1.25rem;
  background: #0e1014;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-header-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sidebar-header-title h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.sidebar-header-icon {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
}

.sidebar-reset-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.sidebar-reset-btn:hover {
  color: var(--color-orange);
  background: rgba(255, 102, 0, 0.1);
}

.sidebar-reset-btn i {
  width: 12px;
  height: 12px;
}

/* Kategori Listesi */
.sidebar-category-list {
  list-style: none;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  color: var(--text-secondary);
}

.sidebar-category-item:hover {
  background: #191c24;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.05);
  transform: translateX(3px);
}

.sidebar-category-item.active {
  background: linear-gradient(90deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 102, 0, 0.03) 100%);
  border-color: rgba(255, 102, 0, 0.4);
  border-left: 4px solid var(--color-orange);
  color: #ffffff;
  font-weight: 700;
}

.cat-item-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cat-icon {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  flex-shrink: 0;
}

.cat-count-badge {
  background: #1f232c;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  min-width: 24px;
  text-align: center;
}

.sidebar-category-item.active .cat-count-badge {
  background: var(--color-orange);
  color: #ffffff;
  box-shadow: 0 0 10px var(--color-orange-glow);
}

/* Filtre Seçenekleri */
.sidebar-filter-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-label i {
  width: 14px;
  height: 14px;
  color: var(--color-orange);
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.sidebar-filter-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  padding: 0.65rem 2.2rem 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sidebar-filter-select:focus {
  outline: none;
  border-color: var(--color-orange);
}

.sidebar-filter-select option {
  background: #171920;
  color: #ffffff;
}

.select-arrow-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

/* Tip Seçim Hap Butonları */
.filter-pills-row {
  display: flex;
  gap: 0.35rem;
}

.filter-pill-btn {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  padding: 0.5rem 0.4rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  transition: all var(--transition-fast);
}

.filter-pill-btn:hover {
  background: #1c202a;
  color: #fff;
}

.filter-pill-btn.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
  box-shadow: 0 0 12px var(--color-orange-glow);
}

/* Sidebar Tanıtım Kartı */
.sidebar-promo-card {
  background: linear-gradient(145deg, #181b22 0%, #111317 100%);
  border: 1px solid rgba(255, 102, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.sidebar-promo-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.4);
  color: var(--color-orange);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.sidebar-promo-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.sidebar-promo-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.promo-btn {
  background: var(--color-whatsapp);
  color: #fff;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}
.promo-btn:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* --- 9. Sağ Ana İçerik (Vitrin Başlığı & Kartlar) --- */
.marketplace-content {
  flex: 1;
  min-width: 0;
}

/* Vitrin Başlık Kartı */
.content-header-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.category-heading-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.main-category-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.2;
}

.count-badge-highlight {
  background: var(--color-orange);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px var(--color-orange-glow);
}

.category-subtext {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.content-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Sıralama Seçici */
.sort-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-label {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 600;
}

.sort-select-wrapper {
  min-width: 200px;
}

.sort-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  padding: 0.6rem 2.2rem 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sort-select:focus {
  outline: none;
  border-color: var(--color-orange);
}

/* Mobil Filtre Açma Butonu (Masaüstünde gizli) */
.mobile-filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: #191c24;
  border: 1px solid var(--border-card);
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
}
.mobile-filter-toggle-btn i {
  width: 16px;
  height: 16px;
  color: var(--color-orange);
}

/* Aktif Filtreler Şeridi */
.active-filters-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #111318;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.active-filters-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.active-filters-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tag-pill {
  background: #1a1e27;
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-tag-remove {
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.filter-tag-remove:hover {
  color: var(--color-orange);
}

.clear-all-tags-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-orange);
  text-decoration: underline;
  cursor: pointer;
  margin-left: auto;
}

/* --- 10. İlanlar Grid'i & E-Ticaret Makine Kartı --- */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* Makine Kartı Tasarımı */
.listing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.listing-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--color-orange);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 102, 0, 0.2);
}

/* Kart Görsel Alanı */
.card-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0d0e12;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.listing-card:hover .card-image-box img {
  transform: scale(1.06);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

/* Görsel Üzerindeki Rozetler */
.card-badges-row {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.badge-type {
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-condition {
  background: var(--color-orange);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  box-shadow: 0 2px 8px var(--color-orange-glow);
}

.badge-photo-count {
  position: absolute;
  bottom: 0.75rem;
  right: 0.85rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

.badge-photo-count i {
  width: 12px;
  height: 12px;
}

/* Kart Görsel Sayacı & Noktalar */
.card-dots-row {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

.card-image-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease;
}

.card-image-dot.active {
  background: var(--color-orange);
  width: 16px;
  border-radius: 4px;
}

/* Kart Gövde Alanı */
.card-content-area {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Lokasyon & Kategori Satırı */
.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.card-location i {
  color: var(--color-orange);
  width: 14px;
  height: 14px;
}

.card-category-pill {
  color: var(--color-orange);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 102, 0, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* Kart Başlığı (Büyük & Vurgulu) */
.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.listing-card:hover .card-title {
  color: var(--color-orange);
}

/* Teknik Özellikler Kutusu (Grid) */
.card-specs-container {
  background: #111318;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.card-spec-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.spec-box-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.spec-box-val {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Fiyat Satırı (Büyük Turuncu Tipografi) */
.card-price-container {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-price-wrapper {
  display: flex;
  flex-direction: column;
}

.card-price-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.card-price-value {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Kart Aksiyon Butonları */
.card-actions-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-card-whatsapp {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--color-whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
  flex-shrink: 0;
}
.btn-card-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  transform: scale(1.08);
}
.btn-card-whatsapp i {
  font-size: 1.15rem;
}

.btn-card-detail {
  background: #20242e;
  border: 1px solid var(--border-card);
  color: #ffffff;
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.listing-card:hover .btn-card-detail {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #ffffff;
}

.btn-card-detail i {
  width: 14px;
  height: 14px;
}

/* --- 11. Sonuç Bulunamadı Kutusu --- */
.no-results-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 3rem auto;
}

.no-results-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.3);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.no-results-icon-wrapper i {
  width: 36px;
  height: 36px;
}

.no-results-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.no-results-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.no-results-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-reset-large {
  background: #20242e;
  border: 1px solid var(--border-card);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}
.btn-reset-large:hover {
  background: #2b313e;
}

.btn-talep-large {
  background: var(--color-whatsapp);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-talep-large:hover {
  background: var(--color-whatsapp-hover);
}

/* --- 12. İskelet Yükleyici (Skeleton) --- */
.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.skeleton-pulse {
  background: linear-gradient(90deg, #181b22 25%, #222631 50%, #181b22 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s infinite;
}

@keyframes skeletonLoading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.skeleton-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skeleton-line {
  height: 14px;
  border-radius: 4px;
}
.skeleton-line.short { width: 35%; }
.skeleton-line.medium { width: 60%; }

.skeleton-title {
  height: 22px;
  width: 85%;
  border-radius: 4px;
}

.skeleton-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.skeleton-spec-item {
  height: 40px;
  border-radius: 6px;
}

.skeleton-price {
  height: 28px;
  width: 45%;
  border-radius: 6px;
}

/* --- 13. Alt Hızlı İlan & Talep Şeridi --- */
.talep-formu-section {
  background: #0f1116;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 4.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.talep-layout-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.talep-title-pre {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.5rem;
}

.talep-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.talep-heading-gradient {
  color: var(--color-orange);
}

.talep-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.props-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.prop-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.prop-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.35);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prop-icon-box i {
  width: 20px;
  height: 20px;
}

.prop-details h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.prop-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.talep-right-panel {
  display: flex;
  justify-content: center;
}

.btn-talep-cta {
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #ffffff;
  padding: 1.4rem 3rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 30px var(--color-orange-glow);
  transition: all var(--transition-normal);
  text-transform: uppercase;
}
.btn-talep-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
  color: #fff;
}

/* --- 14. Detay Modalı (Turuncu & Siyah Lüks Görünüm) --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  max-width: 1080px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 102, 0, 0.15);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1c202a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
}
.modal-close-btn:hover {
  background: var(--color-orange);
  transform: rotate(90deg);
}

/* Sol Galeri */
.modal-left-gallery {
  background: #0a0b0e;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main-view {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

.gallery-main-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(18, 20, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.gallery-nav-btn:hover {
  background: var(--color-orange);
}
.gallery-nav-btn-prev { left: 0.75rem; }
.gallery-nav-btn-next { right: 0.75rem; }

.gallery-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.gallery-badges-opp {
  background: var(--color-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.gallery-badges-type {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.gallery-thumbnails-strip {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.gallery-thumb-item {
  width: 76px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border-card);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition-fast);
}
.gallery-thumb-item.active {
  border-color: var(--color-orange);
}
.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sağ Detay Paneli */
.modal-right-panel {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-meta-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modal-meta-cat {
  color: var(--color-orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-listing-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
}

.modal-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
}
.modal-location-badge i {
  color: var(--color-orange);
}

/* Modal Fiyat Kartı */
.modal-price-panel {
  background: #101217;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.modal-price-current {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-orange);
}

/* Modal Özellikler Grid */
.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.modal-spec-card {
  background: #111319;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  text-align: center;
}

.modal-spec-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.modal-spec-value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.modal-spec-value i {
  color: var(--color-orange);
  width: 14px;
  height: 14px;
}

.modal-desc-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Modal Aksiyon Butonları */
.modal-action-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
}

.btn-modal-wa {
  flex: 1;
  background: var(--color-whatsapp);
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}
.btn-modal-wa:hover {
  background: var(--color-whatsapp-hover);
}

.btn-modal-call {
  flex: 1;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}
.btn-modal-call:hover {
  box-shadow: 0 4px 20px var(--color-orange-glow);
}

/* --- 15. Footer (Kurumsal Alt Bilgi) --- */
.app-footer {
  background: #08090c;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1560px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 28px;
  height: 3px;
  background: var(--color-orange);
  border-radius: var(--radius-full);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-list a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-links-list a:hover {
  color: var(--color-orange);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-contact-list i {
  color: var(--color-orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-back-to-top {
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.footer-back-to-top:hover {
  color: var(--color-orange);
}

/* Yüzen WhatsApp Butonu */
.whatsapp-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
}
.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* --- 16. Duyarlı (Responsive) Medya Sorguları --- */
@media (max-width: 1200px) {
  .marketplace-layout {
    gap: 1.5rem;
  }
  .marketplace-sidebar {
    width: 270px;
  }
  .listings-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 1024px) {
  .header-container {
    gap: 1rem;
  }
  .header-center {
    max-width: none;
  }
  .header-contact-link {
    display: none;
  }
  .marketplace-layout {
    flex-direction: column;
  }
  .marketplace-sidebar {
    display: none; /* Mobilde açılır çekmeceye aktarılacak */
    width: 100%;
    position: static;
    max-height: none;
  }
  .marketplace-sidebar.mobile-open {
    display: flex;
  }
  .mobile-filter-toggle-btn {
    display: inline-flex;
  }
  .modal-container {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .talep-layout-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .talep-right-panel {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-ticker-bar {
    display: none;
  }
  .header-container {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }
  .header-left {
    width: auto;
  }
  .brand-title {
    font-size: 1.45rem;
  }
  .hamburger-label {
    display: none;
  }
  .hamburger-large-btn {
    padding: 0.5rem;
  }
  .header-right {
    margin-left: auto;
  }
  .btn-ilan-ver {
    padding: 0.55rem 0.95rem;
    font-size: 0.8rem;
  }
  .btn-ilan-ver span {
    display: inline;
  }
  .header-center {
    order: 3;
    width: 100%;
    margin-top: 0.5rem;
  }
  .search-category-dropdown {
    display: none; /* Mobilde arama inputu tam genişlik */
  }
  .btn-search-text {
    display: none;
  }
  .btn-search-submit {
    padding: 0 1rem;
  }
  .content-header-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-header-right {
    width: 100%;
    justify-content: space-between;
  }
  .sort-select-wrapper {
    min-width: 160px;
  }
  .listings-grid {
    grid-template-columns: 1fr;
  }
}
