/* ============================================
   ÜNSAL GAYRIMENKUL - SHARED STYLES
   Tüm landing page'ler için ortak stiller
   ============================================ */

:root {
  --navy: #0A2A5E;
  --navy-dark: #051A3D;
  --navy-light: #1B4380;
  --orange: #F49B1C;
  --orange-light: #FFB547;
  --white: #ffffff;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 24px; }

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  position: relative;
  z-index: 99999;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.top-info { display: flex; gap: 24px; align-items: center; }
.top-info span { display: flex; align-items: center; gap: 6px; }
.top-info i { color: var(--orange); }
.top-right { display: flex; gap: 18px; align-items: center; }
.top-social { display: flex; gap: 14px; }
.top-social a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.top-social a:hover { color: var(--orange); }

.lang-switcher { position: relative; cursor: pointer; user-select: none; }
.lang-current { display: flex; align-items: center; gap: 6px; padding: 4px 10px; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; transition: var(--transition); }
.lang-current:hover { background: rgba(255,255,255,0.1); border-color: var(--orange); }
.flag { display: inline-block; width: 24px; height: 16px; border-radius: 2px; overflow: hidden; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); vertical-align: middle; }
.flag svg { width: 100%; height: 100%; display: block; }
.lang-code { font-weight: 600; font-size: 12px; letter-spacing: 0.5px; }

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,0,0,0.08);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 99999;
  border: 2px solid var(--gray-200);
  overflow: hidden;
}
.lang-switcher:hover .lang-dropdown,
.lang-switcher.active .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a { display: flex; align-items: center; gap: 10px; padding: 12px 16px; color: var(--gray-900); font-size: 14px; font-weight: 500; transition: var(--transition); border-bottom: 1px solid var(--gray-100); }
.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover { background: var(--gray-100); color: var(--navy); }
.lang-dropdown a.active { background: var(--orange); color: var(--navy); font-weight: 700; }

/* ============ HEADER ============ */
.header {
  background: var(--navy);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; padding: 0 24px; gap: 32px; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { width: 200px; max-height: 64px; }

.nav { display: flex; gap: 32px; align-items: center; }
.nav a { color: var(--white); font-weight: 500; font-size: 14px; letter-spacing: 0.5px; transition: var(--transition); position: relative; text-transform: uppercase; }
.nav a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--orange); transition: var(--transition); }
.nav a:hover { color: var(--orange); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--orange); }
.nav a.active::after { width: 100%; }
.nav-badge { background: var(--orange); color: var(--navy); font-size: 9px; padding: 2px 6px; border-radius: 10px; margin-left: 4px; font-weight: 700; vertical-align: top; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.btn-call { background: var(--orange); color: var(--navy); padding: 10px 20px; border-radius: 6px; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-call:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.menu-toggle { display: none; }

/* ============ PAGE HERO ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L60 40L100 50L60 60L50 100L40 60L0 50L40 40z" fill="%23ffffff" opacity="0.03"/></svg>');
  pointer-events: none;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; margin-bottom: 20px; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 10px; align-self: center; }

.page-hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--navy);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'League Spartan', 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
.page-hero h1 .highlight { color: var(--orange); font-style: italic; }
.page-hero p { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto 32px; }

.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 28px; font-weight: 800; color: var(--orange); display: block; }
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; text-transform: uppercase; }

/* ============ FILTER BAR ============ */
.filter-bar {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  margin: -40px auto 0;
  max-width: 1100px;
  position: relative;
  z-index: 10;
}
.filter-tabs { display: flex; gap: 6px; padding: 4px; background: var(--gray-100); border-radius: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.filter-tab { flex: 1; min-width: 100px; padding: 12px 16px; background: transparent; border: none; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--gray-700); text-align: center; }
.filter-tab:hover { color: var(--navy); }
.filter-tab.active { background: var(--navy); color: var(--white); box-shadow: var(--shadow-sm); }

.filter-search { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-search input,
.filter-search select { flex: 1; min-width: 180px; padding: 14px 18px; border: 2px solid var(--gray-200); border-radius: 8px; font-size: 14px; transition: var(--transition); background: var(--white); }
.filter-search input:focus,
.filter-search select:focus { outline: none; border-color: var(--orange); }
.filter-search button { background: var(--orange); color: var(--navy); padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.filter-search button:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============ SUB FILTERS ============ */
.sub-filters { padding: 40px 24px 0; max-width: 1280px; margin: 0 auto; }
.sub-filters-title { font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.sub-filters-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.sub-filter-pill { padding: 10px 18px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--gray-700); cursor: pointer; transition: var(--transition); }
.sub-filter-pill:hover { border-color: var(--orange); color: var(--navy); }
.sub-filter-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============ SECTION HEADERS ============ */
.section-header { text-align: center; margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-eyebrow { display: inline-block; background: rgba(244,155,28,0.15); color: var(--orange); padding: 6px 16px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 16px; }
.section-header h2 { font-family: 'League Spartan', 'Montserrat', sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.section-header p { color: var(--gray-500); font-size: 16px; }

/* ============ LISTINGS GRID ============ */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; max-width: 1280px; margin: 0 auto; }
.listing-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); cursor: pointer; border: 1px solid var(--gray-100); }
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.listing-image { position: relative; height: 240px; overflow: hidden; background: var(--gray-200); }
.listing-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.listing-card:hover .listing-image img { transform: scale(1.08); }
.listing-tag { position: absolute; top: 12px; left: 12px; background: var(--orange); color: var(--navy); padding: 6px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; }
.listing-tag.vip { background: var(--navy); color: var(--orange); }
.listing-tag.rent { background: #10B981; color: var(--white); }
.listing-favorite { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.listing-favorite:hover { background: var(--orange); color: var(--white); }
.listing-content { padding: 20px; }
.listing-location { display: flex; align-items: center; gap: 6px; color: var(--gray-500); font-size: 13px; margin-bottom: 8px; }
.listing-location i { color: var(--orange); }
.listing-title { font-family: 'League Spartan', 'Montserrat', sans-serif; font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.listing-features { display: flex; gap: 14px; padding: 12px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); margin-bottom: 14px; flex-wrap: wrap; }
.listing-features span { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--gray-700); }
.listing-features i { color: var(--orange); }
.listing-price { font-size: 22px; font-weight: 700; color: var(--navy); }
.listing-price span { font-size: 12px; color: var(--gray-500); font-weight: 400; }

.listing-placeholder { background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%); display: flex; align-items: center; justify-content: center; color: var(--gray-300); font-size: 48px; }

.no-listings-soon { text-align: center; padding: 80px 20px; background: var(--gray-50); border-radius: 12px; max-width: 700px; margin: 0 auto; }
.no-listings-soon i { font-size: 60px; color: var(--orange); margin-bottom: 20px; }
.no-listings-soon h3 { font-family: 'League Spartan', 'Montserrat', sans-serif; font-size: 26px; color: var(--navy); margin-bottom: 12px; }
.no-listings-soon p { color: var(--gray-500); margin-bottom: 20px; }

/* ============ SEO CONTENT BLOCK ============ */
.seo-content { background: var(--gray-50); padding: 80px 24px; }
.seo-content-inner { max-width: 900px; margin: 0 auto; }
.seo-content h2 { font-family: 'League Spartan', 'Montserrat', sans-serif; font-size: clamp(26px, 3vw, 34px); color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.seo-content h3 { font-family: 'League Spartan', 'Montserrat', sans-serif; font-size: 22px; color: var(--navy); margin: 28px 0 12px; }
.seo-content p { color: var(--gray-700); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.seo-content ul { padding-left: 24px; margin-bottom: 16px; }
.seo-content li { color: var(--gray-700); margin-bottom: 8px; }
.seo-content strong { color: var(--navy); }

/* ============ CTA SECTION ============ */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); padding: 80px 24px; text-align: center; }
.cta-section h2 { font-family: 'League Spartan', 'Montserrat', sans-serif; font-size: clamp(28px, 4vw, 38px); margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-buttons a { padding: 16px 36px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: var(--transition); display: inline-flex; align-items: center; gap: 10px; }
.cta-call { background: var(--orange); color: var(--navy); }
.cta-call:hover { background: var(--orange-light); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cta-wa { background: #25D366; color: var(--white); }
.cta-wa:hover { background: #1DA851; transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============ RELATED PAGES ============ */
.related-pages { padding: 60px 24px; max-width: 1280px; margin: 0 auto; }
.related-pages h2 { text-align: center; font-family: 'League Spartan', 'Montserrat', sans-serif; font-size: 28px; color: var(--navy); margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.related-card { background: var(--white); padding: 24px; border: 1px solid var(--gray-200); border-radius: 10px; transition: var(--transition); text-align: center; }
.related-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card i { font-size: 32px; color: var(--orange); margin-bottom: 12px; }
.related-card h4 { font-family: 'League Spartan', 'Montserrat', sans-serif; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.related-card p { font-size: 12px; color: var(--gray-500); }

/* ============ FOOTER ============ */
.footer { background: var(--navy-dark); color: var(--white); padding: 60px 24px 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1280px; margin: 0 auto; }
.footer-brand .logo-svg { margin-bottom: 16px; }
.footer-about { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.footer-social a:hover { background: var(--orange); color: var(--navy); transform: translateY(-3px); }
.footer-col h4 { font-family: 'League Spartan', 'Montserrat', sans-serif; font-size: 17px; margin-bottom: 18px; color: var(--orange); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col span { color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--orange); }
.footer-col i { color: var(--orange); width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; margin-top: 40px; text-align: center; color: rgba(255,255,255,0.5); font-size: 13px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.footer-bottom a { color: rgba(255,255,255,0.7); margin: 0 8px; }
.footer-bottom a:hover { color: var(--orange); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: #25D366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: var(--shadow-lg); z-index: 999; transition: var(--transition); animation: pulse 2s infinite; }
.wa-float:hover { transform: scale(1.1); background: #1DA851; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); } 50% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .menu-toggle { display: flex; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 22px; cursor: pointer; width: 44px; height: 44px; border-radius: 6px; }
  .header { padding: 12px 0; }
  .header-inner { gap: 12px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 16px; border-top: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-lg); z-index: 999; }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 15px; }
  .nav a:last-child { border-bottom: none; }
  .header-cta { margin-top: 8px; text-align: center; justify-content: center; }
  .logo-svg { width: 180px; max-height: 56px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .top-bar-inner { gap: 8px; padding: 0 16px; }
  .top-info { gap: 14px; font-size: 12px; }
  .top-info span:nth-child(2) { display: none; }
  section { padding: 56px 20px; }
  .page-hero { padding: 60px 20px 50px; }
  .filter-bar { margin: -30px 16px 0; padding: 20px; }
  .filter-search input, .filter-search select { min-width: 100%; }
  .filter-search button { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 540px) {
  .top-bar { font-size: 11px; }
  .top-info span:first-child { display: none; }
  .top-right { gap: 12px; }
  .top-social { gap: 10px; }
  .logo-svg { width: 150px; max-height: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .listings-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons a { width: 100%; justify-content: center; }
  .section-header h2 { font-size: 26px; }
  .filter-tabs { gap: 4px; }
  .filter-tab { font-size: 11px; padding: 10px 8px; }
  .hero-stats { gap: 18px; }
  .hero-stat .num { font-size: 24px; }
}

/* ========================================================
   TURYAP İSMAİL ÜNSAL — TÜM DÜZELTMELER v2
   Bu kısmı style.css dosyanızın EN SONUNA yapıştırın.

   Düzeltmeler:
   1. Lang dropdown - dil isimleri beyaz görünmüyordu
   2. Search suggestions - alttan kesiliyor
   3. Mobile "HEMEN ARA" - iki satıra düşmüştü
   4. Küçük ekran optimizasyonu
   ======================================================== */

/* ----- 1. LANG DROPDOWN ----- */
.lang-dropdown {
  background: #FFFFFF !important;
  border: 1px solid rgba(10,42,94,0.1) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}
.lang-option {
  color: #0A2A5E !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 14px !important;
  text-decoration: none !important;
}
.lang-option span {
  color: #0A2A5E !important;
  font-weight: 600 !important;
}
.lang-option:hover {
  background: rgba(244,155,28,0.1) !important;
}
.lang-option:hover span {
  color: #0A2A5E !important;
}
.lang-option.active {
  background: #0A2A5E !important;
}
.lang-option.active span {
  color: #FFFFFF !important;
}
.lang-option .flag {
  display: inline-flex !important;
  align-items: center !important;
  width: 24px !important;
  flex-shrink: 0 !important;
}
.lang-option .flag svg {
  width: 24px !important;
  height: auto !important;
  border-radius: 2px !important;
}

/* ----- 2. SEARCH SUGGESTIONS ----- */
.search-suggestions {
  max-height: 380px !important;
  overflow-y: auto !important;
  z-index: 9999 !important;
}
.hero {
  overflow: visible !important;
}
.smart-search-box {
  position: relative !important;
  z-index: 100 !important;
}

/* ----- 3. MOBILE "HEMEN ARA" BUTONU ----- */
@media (max-width: 968px) {
  .btn-call {
    padding: 10px 14px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-width: auto !important;
    width: auto !important;
    line-height: 1 !important;
  }
  .btn-call span {
    white-space: nowrap !important;
    display: inline !important;
  }
  .btn-call i {
    font-size: 12px !important;
  }
  .header-inner {
    gap: 8px !important;
  }
  .header-cta {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
}

/* ----- 4. KÜÇÜK EKRAN OPTİMİZASYONU ----- */
@media (max-width: 480px) {
  .btn-call {
    padding: 8px 12px !important;
    font-size: 11px !important;
  }
  .btn-call span {
    font-size: 11px !important;
  }
  .logo-svg {
    height: 36px !important;
    max-width: 180px !important;
  }
  .top-bar {
    font-size: 11px !important;
  }
  .top-info span {
    font-size: 11px !important;
  }
}

/* ===== MOBILE FILTER TAB FIX - 18 May 2026 ===== */
@media (max-width: 540px) {
  .search-filter-tab { padding: 8px 4px !important; font-size: 11px !important; letter-spacing: 0.3px !important; gap: 4px !important; white-space: nowrap !important; flex: 1 !important; min-width: 0 !important; flex-direction: row !important; align-items: center !important; justify-content: center !important; }
  .search-filter-tab i { font-size: 11px !important; margin: 0 !important; }
  .search-filter-tab span:not(.badge-mini) { font-size: 10px !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; line-height: 1 !important; }
  .badge-mini { font-size: 9px !important; padding: 1px 5px !important; min-width: 14px !important; height: 16px !important; line-height: 14px !important; }
  .search-filter-tabs { gap: 2px !important; padding: 4px !important; display: flex !important; flex-wrap: nowrap !important; }
}
@media (min-width: 541px) and (max-width: 768px) {
  .search-filter-tab { padding: 10px 8px !important; font-size: 12px !important; white-space: nowrap !important; }
  .search-filter-tab span:not(.badge-mini) { white-space: nowrap !important; }
}
.lang-dropdown { z-index: 9999 !important; }
.lang-switcher { z-index: 9999 !important; position: relative !important; }
