/* =========================================================
   AvcılarVIP - Ana Stil Dosyası
   BEM naming convention, mobil öncelikli responsive tasarım
   ========================================================= */

/* Değişkenler (Critical CSS ile senkronize tutulur) */
:root {
  --bg: #0f0f1a;
  --surface: #1a1a2e;
  --surface-light: #252540;
  --accent: #e94560;
  --accent-dark: #c23a51;
  --text: #f1f1f1;
  --muted: #b8b8b8;
  --success: #00d26a;
  --warning: #f5a623;
  --info: #3b82f6;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.2);
  --transition: all 0.2s ease;
}

/* Temel Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Erişilebilirlik */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Tipografi */
h1, h2, h3, h4 {
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: #fff;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

a {
  color: var(--accent);
  transition: var(--transition);
}

a:hover {
  color: #ff6b81;
}

strong {
  color: #fff;
  font-weight: 600;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.4rem;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  min-height: 44px;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  min-height: 36px;
}

.btn-success {
  background: var(--success);
}

.btn-success:hover {
  background: #00b85c;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-whatsapp {
  background: #25d366;
}

.btn-whatsapp:hover {
  background: #1fb955;
}

.btn-call {
  background: var(--info);
}

.btn-call:hover {
  background: #2563eb;
}

.btn-back {
  background: var(--purple);
  width: 100%;
}

.btn-back:hover {
  background: #7c3aed;
}

/* Form Elemanları */
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
  min-height: 44px;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  outline: none;
  background: var(--surface-light);
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Header */
header {
  background: var(--surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.logo:hover {
  opacity: 0.9;
}

@media (max-width: 640px) {
  .logo img {
    height: 54px;
  }
}

nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

nav a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.25rem 0;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  z-index: 60;
  padding: 0;
}

.header-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
  transition: color 0.2s ease;
}

.header-whatsapp:hover {
  color: #1fb955;
}

/* Top Banner */
.top-banner {
  background: var(--info);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  padding: 3rem 0 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(233, 69, 96, 0.08) 0%, transparent 100%);
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 0.5rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* =========================================================
   YENİ İLAN KARTI TASARIMI
   ========================================================= */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.listing-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.listing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(233, 69, 96, 0.3);
}

.listing-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.listing-card__link img {
  width: 100%;
  aspect-ratio: 450 / 300;
  object-fit: cover;
  background: #2a2a40;
  display: block;
}

/* =========================================================
   PLATİN KART TASARIMI (Ana sayfa öne çıkan ilanlar)
   ========================================================= */
.platin-section {
  padding: 0 0 2rem;
}

.platin-title {
  background: #3a3a4a;
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.platin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.platin-card {
  background: #0f0f1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.platin-card:hover {
  transform: translateY(-2px);
  border-color: rgba(233, 69, 96, 0.4);
  box-shadow: 0 6px 24px rgba(233, 69, 96, 0.15);
}

.platin-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.platin-card__link img {
  width: 100%;
  aspect-ratio: 450 / 300;
  object-fit: cover;
  background: #2a2a40;
  display: block;
}

@media (min-width: 641px) {
  .platin-grid {
    gap: 0.75rem;
  }
}

/* Eski kart stili (index.html vb. için korunur) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #2a2a40;
}

.card-body {
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.card-body h3 a {
  color: #fff;
  text-decoration: none;
}

.card-body h3 a:hover {
  color: var(--accent);
}

.card-body p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-block;
  background: rgba(233, 69, 96, 0.15);
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
}

.badge--success {
  background: rgba(0, 210, 106, 0.15);
  color: var(--success);
}

.badge--warning {
  background: rgba(245, 166, 35, 0.15);
  color: var(--warning);
}

.price {
  font-weight: 700;
  color: var(--success);
}

.favorite-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.favorite-btn:hover,
.favorite-btn.is-active {
  background: var(--accent);
  color: #fff;
}

/* Bölümler */
.section {
  padding: 2.5rem 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* İçerik Kolonları */
.content-columns {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.main-content {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

.main-content section {
  margin-bottom: 2.5rem;
}

.main-content h2 {
  margin-top: 1.5rem;
}

.main-content h3 {
  margin-top: 1.25rem;
  font-size: 1.2rem;
}

.main-content p {
  text-align: justify;
}

aside {
  background: var(--surface);
  padding: 1.25rem;
  border-radius: var(--radius);
  position: sticky;
  top: 80px;
}

.aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aside-list li {
  margin-bottom: 0.5rem;
}

.aside-list a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  padding: 0.35rem 0;
}

.aside-list a:hover {
  color: var(--accent);
}

/* Feature Cards */
.feature-card {
  background: var(--surface-light);
  padding: 1.25rem;
  border-radius: var(--radius);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Filtreleme */
.filters {
  background: var(--surface);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.filters__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  align-items: end;
}

.filters__count {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Tablo */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

th {
  background: var(--surface-light);
  color: #fff;
  font-weight: 600;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Telefon Maskeleme */
.phone-mask {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.phone-mask:hover {
  background: var(--accent);
  color: #fff;
}

.phone-mask.is-revealed {
  background: var(--success);
  color: #fff;
}

/* 18+ Modal */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.age-modal.is-hidden {
  display: none;
}

.age-modal__content {
  background: var(--surface);
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.age-modal__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.age-modal__text {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.age-modal__buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   İLAN DETAY SAYFASI
   ========================================================= */
.detail-page {
  background: #e5e7eb;
  min-height: 100vh;
  padding: 0.75rem;
}

.detail-container {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.detail-back {
  padding: 0.75rem;
}

/* Thumbnail galeri */
.detail-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0 0.75rem 0.75rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.detail-thumbs::-webkit-scrollbar {
  height: 4px;
}

.detail-thumbs::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.detail-thumb {
  flex: 0 0 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.detail-thumb:hover,
.detail-thumb.is-active {
  border-color: var(--purple);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ana görsel */
.detail-main-image {
  padding: 0 0.75rem 0.75rem;
}

.detail-main-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #ddd;
}

/* Eylem butonları */
.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0 0.75rem 0.75rem;
}

.detail-actions .btn {
  min-height: 48px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

/* Bilgi tablosu */
.detail-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.15rem;
  padding: 0 0.75rem 0.75rem;
}

.detail-info__item {
  padding: 0.5rem 0.25rem;
  text-align: center;
  border-radius: 4px;
}

.detail-info__item--purple {
  background: var(--purple);
  color: #fff;
}

.detail-info__item--pink {
  background: var(--pink);
  color: #fff;
}

.detail-info__item--blue {
  background: var(--info);
  color: #fff;
}

.detail-info__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.detail-info__value {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Açıklama */
.detail-desc {
  padding: 0 0.75rem 0.75rem;
}

.detail-desc__box {
  border: 2px solid var(--purple);
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: var(--purple);
  font-size: 0.95rem;
  line-height: 1.7;
}

.detail-desc__box p {
  color: inherit;
  margin-bottom: 0;
}

/* Benzer ilanlar */
.detail-related {
  padding: 0 0.75rem 0.75rem;
}

.detail-related h3 {
  font-size: 1rem;
  color: var(--bg);
  margin-bottom: 0.5rem;
}

/* İlan Detay (eski stil) */
.listing-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.listing-detail__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.listing-detail__gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  background: #2a2a40;
}

.listing-detail__info {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.listing-detail__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}

.listing-detail__meta-item {
  background: var(--surface-light);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
}

.listing-detail__meta-label {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
}

.listing-detail__meta-value {
  font-weight: 600;
  color: #fff;
}

.listing-detail__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

/* Blog */
.blog-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.blog-content h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.blog-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.blog-content blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-style: italic;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.pagination a:hover,
.pagination span.current {
  background: var(--accent);
  color: #fff;
}

/* Footer */
footer {
  background: #0a0a14;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-grid h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.4rem;
}

.footer-grid a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--accent);
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.copyright a {
  color: var(--muted);
}

/* İletişim Sayfası */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info__icon {
  font-size: 1.25rem;
  color: var(--accent);
}

/* İlan Ver Formu */
.form-section {
  max-width: 800px;
  margin: 0 auto;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text);
}

.checkbox-group input {
  width: auto;
  min-height: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .content-columns {
    grid-template-columns: 1fr;
  }

  aside {
    position: static;
    order: -1;
  }

  .listing-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .listing-detail__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: linear-gradient(180deg, #1e1e32 0%, #161626 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
  }

  .menu-close {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.35rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    visibility: visible !important;
    opacity: 1 !important;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .menu-close:hover,
  .menu-close:focus {
    color: #fff !important;
    transform: rotate(90deg);
  }

  nav.is-open {
    transform: translateX(0);
  }

  nav::before {
    content: 'MENÜ';
    position: absolute;
    top: 1.15rem;
    left: 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.35);
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 3.25rem 0 0;
    list-style: none;
    margin: 0;
  }

  nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  nav li:last-child {
    border-bottom: none;
    margin-top: auto;
    padding: 1rem 1.25rem;
  }

  nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #d1d1d8;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }

  nav a:hover,
  nav a:focus {
    background: rgba(233, 69, 96, 0.08);
    color: #fff;
    padding-left: 1.5rem;
  }

  nav a[aria-current="page"] {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
    font-weight: 600;
  }

  nav a.btn[aria-current="page"] {
    color: #fff;
    background: var(--accent);
  }

  nav .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    border-radius: 8px;
    font-weight: 600;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .age-modal__buttons {
    flex-direction: column;
  }

  .filters__grid {
    grid-template-columns: 1fr;
  }

  .listing-detail__meta {
    grid-template-columns: 1fr;
  }

  .pagination a,
  .pagination span {
    min-width: 40px;
    min-height: 40px;
  }
}

@media (max-width: 400px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .listing-grid {
    gap: 0.5rem;
  }

  .listing-card__tag {
    font-size: 0.55rem;
  }

  .listing-card__tag-bottom {
    font-size: 0.5rem;
  }
}

/* Animasyonlar */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.card,
.feature-card,
.faq-item {
  animation: fadeIn 0.4s ease forwards;
}

/* Print */
@media print {
  header, footer, .age-modal, .filters, .favorite-btn, .phone-mask {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
