/* Ekran okuyucu / SEO: tek sayfa konusu — görünmez başlık */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Karasu Daire Villa — editorial real estate */
:root {
  --bg: #faf8f5;
  --bg-card: #ffffff;
  --ink: #1c1917;
  --muted: #78716c;
  /* Kurumsal vurgu (lacivert / kurumsal mavi) */
  --corp: #1e3a8a;
  --corp-hover: #172554;
  --corp-bright: #1d4ed8;
  --corp-bright-hover: #1e40af;
  --corp-soft: #eff6ff;
  --corp-soft-border: #93c5fd;
  --corp-on-dark: #93c5fd;
  --corp-chip-text: #1e3a8a;
  --accent: #1e3a8a;
  --accent-light: #1d4ed8;
  --line: #e7e5e4;
  --shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
  --radius: 12px;
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
  /* Sabit header: .header-inner dikey padding + logo yüksekliği */
  padding-top: calc(2rem + 4.3rem + 0.35rem);
}

.home-hero .main {
  padding-top: 0;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.container--wide {
  width: min(1320px, 94vw);
}

/* Header
 * backdrop-filter üst kutuda olursa fixed .nav çekmecesi bu kutuya sıkışır (Safari/Chrome).
 * Blur ve yarı saydam arka plan ::before üzerinde; böylece menü viewport’a göre tam yükseklik açılır. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

/* Ana sayfa hero: şeffaf üst çubuk, kaydırınca klasik görünüm */
.home-hero .site-header:not(.is-past-hero) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.home-hero .site-header:not(.is-past-hero)::before {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.08));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-hero .site-header:not(.is-past-hero) .logo--img {
  opacity: 1;
}

.home-hero .site-header:not(.is-past-hero) .nav a {
  color: rgba(255, 255, 255, 0.92);
}

.home-hero .site-header:not(.is-past-hero) .nav a:hover {
  color: #fff;
}

.home-hero .site-header:not(.is-past-hero) .nav-admin {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.home-hero .site-header:not(.is-past-hero) .nav-admin:hover {
  background: rgba(255, 255, 255, 0.2);
}

.home-hero .site-header:not(.is-past-hero) .nav-toggle {
  color: #fff;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0.65rem 0;
  gap: 1rem 1.75rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo--img {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: transparent;
}

.site-logo-img {
  height: 3rem;
  width: auto;
  max-width: min(240px, 55vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  background: transparent;
}

.logo span {
  color: var(--accent);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.nav a.is-active {
  color: var(--ink);
  font-weight: 600;
}

.home-hero .site-header:not(.is-past-hero) .nav a.is-active {
  color: #fafaf9;
}

.nav-admin {
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-card);
}

.header-toolbar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.header-sell-cta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.header-sell-cta:hover {
  background: var(--accent-light);
}

.header-sell-cta:active {
  transform: scale(0.98);
}

.home-hero .site-header:not(.is-past-hero) .header-sell-cta {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.home-hero .site-header:not(.is-past-hero) .header-sell-cta:hover {
  background: rgba(255, 255, 255, 0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
  padding: 0.25rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(30, 58, 138, 0.08);
}

.nav-drawer-head {
  display: none;
}

/* Mobil tam ekran karartma — header’ın (z-index 200) altında kalır */
.nav-overlay {
  display: none;
}

@media (max-width: 768px) {
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 199;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
  }

  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Sağdan sola kayan çekmece */
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    width: min(19rem, calc(88vw - env(safe-area-inset-right, 0px)));
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    margin: 0;
    background: var(--bg-card);
    border: none;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: -16px 0 48px rgba(15, 23, 42, 0.14);
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 220;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.15rem 1rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    flex-shrink: 0;
  }

  .nav-drawer-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  .nav-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(30, 58, 138, 0.08);
    color: var(--accent);
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-drawer-close:hover {
    background: rgba(30, 58, 138, 0.15);
    color: var(--corp-hover);
  }

  .nav > a {
    display: block;
    padding: 1rem 1.25rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid #f1f5f9;
    border-radius: 0;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .nav > a:hover {
    background: var(--corp-soft);
    color: var(--accent);
  }

  .nav > a.is-active {
    color: var(--accent);
    font-weight: 600;
    background: rgba(239, 246, 255, 0.85);
    border-left: 3px solid var(--accent);
    padding-left: calc(1.25rem - 3px);
  }

  /* Hero üst çubukta linkler beyaz; çekmece içinde her zaman koyu */
  .home-hero .site-header:not(.is-past-hero) .nav.is-open > a {
    color: var(--ink);
  }

  .home-hero .site-header:not(.is-past-hero) .nav.is-open > a:hover {
    color: var(--accent);
  }

  .home-hero .site-header:not(.is-past-hero) .nav.is-open > a.is-active {
    color: var(--accent);
  }

  body.nav-drawer-open {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
  }

  .nav-toggle {
    display: block;
  }

  .header-sell-cta {
    font-size: 0.75rem;
    padding: 0.45rem 0.75rem;
  }
}

/* Satış talebi modal + bildirim */
.site-sell-flash {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.site-sell-flash--ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.site-sell-flash--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.sell-talep-dialog {
  width: min(100% - 2rem, 26rem);
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: none;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: var(--bg-card);
}

.sell-talep-dialog::backdrop {
  background: rgba(28, 25, 23, 0.45);
}

.sell-talep-dialog-inner {
  position: relative;
  padding: 1.5rem 1.35rem 1.35rem;
}

.sell-talep-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: #f5f5f4;
  border-radius: 8px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.sell-talep-close:hover {
  background: var(--line);
  color: var(--ink);
}

.sell-talep-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 2rem 0.35rem 0;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.sell-talep-lead {
  margin: 0 0 1.1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.sell-talep-form-alert {
  margin-bottom: 0.85rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
}

.sell-talep-field {
  margin-bottom: 0.9rem;
}

.sell-talep-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.sell-talep-req {
  color: #b45309;
}

.sell-talep-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.sell-talep-textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.sell-talep-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.35rem;
}

.sell-talep-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--ink);
  cursor: pointer;
}

.sell-talep-radio input {
  accent-color: var(--accent);
}

.sell-talep-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.sell-talep-submit:hover:not(:disabled) {
  background: var(--accent-light);
}

.sell-talep-submit:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}

.sell-talep-submit-loading {
  letter-spacing: 0.02em;
}

/* Başarı popup — form ile aynı kurumsal dil */
.sell-talep-dialog--success {
  width: min(100% - 2rem, 22.5rem);
  text-align: center;
}

.sell-talep-success-inner {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
}

.sell-talep-dialog--success .sell-talep-close {
  background: #f5f5f4;
}

.sell-talep-success-icon {
  display: flex;
  justify-content: center;
  margin: 0 0 1.15rem;
  color: #059669;
}

.sell-talep-success-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.sell-talep-success-text {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #57534e;
}

.sell-talep-success-ok {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sell-talep-success-ok:hover {
  background: var(--accent-light);
}

/* Hero slider — tam genişlik, referans: üst şeffaf menü + ortalanmış metin */
.hero-slider.swiper {
  width: 100%;
  height: min(88vh, 920px);
  min-height: 28rem;
  color: #fafaf9;
}

.hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.5) 0%,
    rgba(15, 23, 42, 0.2) 50%,
    rgba(15, 23, 42, 0.28) 100%
  );
  pointer-events: none;
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 12vh, 7rem) 1rem clamp(3rem, 8vh, 5rem);
  box-sizing: border-box;
}

.hero-slide-content {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
}

.hero-slide-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}

.hero-slide-lead {
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 400;
  margin: 0 0 1.75rem;
  opacity: 0.95;
  line-height: 1.45;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  background: #fff;
  color: var(--ink);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Hero — vade slaytı (12 · 24 · 36 ay) */
.hero-slide--vade .hero-slide-overlay--vade {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.72) 0%,
    rgba(30, 41, 59, 0.45) 45%,
    rgba(15, 23, 42, 0.55) 100%
  );
}

.hero-slide-content--vade {
  max-width: 52rem;
}

.hero-vade-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: rgba(196, 165, 116, 0.95);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-slide-title--vade {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(1.65rem, 4.8vw, 3rem);
  margin-bottom: 0.65rem;
}

.hero-vade-lead {
  font-size: clamp(0.95rem, 2.1vw, 1.15rem);
  font-weight: 400;
  margin: 0 0 1.5rem;
  opacity: 0.92;
  line-height: 1.5;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

.hero-vade-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(0.65rem, 2vw, 1rem);
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.hero-vade-card {
  flex: 1 1 5.5rem;
  min-width: 5.25rem;
  max-width: 8.5rem;
  padding: 1rem 0.85rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-vade-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 165, 116, 0.55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(196, 165, 116, 0.2);
}

.hero-vade-num {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-vade-ay {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.85);
}

.hero-vade-tagline {
  font-size: clamp(0.8rem, 1.6vw, 0.92rem);
  font-weight: 500;
  margin: 0 0 1.35rem;
  color: rgba(250, 250, 249, 0.88);
  letter-spacing: 0.04em;
}

.btn-hero-cta--vade {
  background: linear-gradient(145deg, #c4a574 0%, #a67c52 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.btn-hero-cta--vade:hover {
  color: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.18);
}

@media (max-width: 480px) {
  .hero-vade-grid {
    gap: 0.5rem;
  }

  .hero-vade-card {
    min-width: 4.75rem;
    padding: 0.85rem 0.5rem 0.95rem;
  }
}

.hero-slider-pagination.swiper-pagination-bullets {
  bottom: 1.75rem !important;
}

.hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: #fff;
  width: 28px;
  border-radius: 999px;
}

.hero-slider-nav.swiper-button-prev,
.hero-slider-nav.swiper-button-next {
  color: #fff;
  width: 2.75rem;
  height: 2.75rem;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s ease;
}

.hero-slider-nav.swiper-button-prev:hover,
.hero-slider-nav.swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-slider-nav.swiper-button-prev::after,
.hero-slider-nav.swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}

.hero-slider-nav.swiper-button-prev {
  left: 1rem;
}

.hero-slider-nav.swiper-button-next {
  right: 1rem;
}

@media (max-width: 768px) {
  .hero-slider-nav.swiper-button-prev,
  .hero-slider-nav.swiper-button-next {
    display: none;
  }
}

/* ——— Ana sayfa premium (referans: HomePage React) ——— */
.hero-slider.hero-slider--premium.swiper {
  height: min(700px, 92vh);
  min-height: 26rem;
  color: #fafaf9;
}

.hero-slide--premium {
  position: relative;
  overflow: hidden;
}

.hero-slide-overlay--premium {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.55) 38%,
    rgba(0, 0, 0, 0.12) 72%,
    transparent 100%
  );
}

.hero-slide-inner--premium {
  justify-content: center;
  align-items: flex-start;
  padding: clamp(5rem, 10vh, 7rem) 1.25rem clamp(4rem, 8vh, 5.5rem);
}

.hero-slide-content--premium {
  text-align: left;
  max-width: 48rem;
  margin: 0;
  width: 100%;
}

.hero-premium-tag {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.hero-premium-tag-line {
  width: 3rem;
  height: 2px;
  background: var(--corp-bright);
  flex-shrink: 0;
}

.hero-premium-tag-text {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--corp-on-dark);
}

.hero-premium-title {
  font-family: var(--font-body);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.hero-premium-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: #d1d5db;
  margin: 0 0 1.75rem;
  max-width: 36rem;
}

.hero-premium-pay {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-premium-pay li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: #fff;
  line-height: 1.45;
}

.hero-premium-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--corp-bright);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.hero-premium-pay strong {
  color: var(--corp-on-dark);
  font-weight: 600;
}

.hero-premium-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hero-btn--primary {
  background: var(--corp);
  color: #fff;
  border: 1px solid transparent;
}

.hero-btn--primary:hover {
  background: var(--corp-hover);
  color: #fff;
}

.hero-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-slider-pagination--premium.swiper-pagination-bullets {
  bottom: 2.75rem !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
}

.hero-slider--premium .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border-radius: 999px;
  transition: width 0.25s ease, background 0.2s;
}

.hero-slider--premium .swiper-pagination-bullet-active {
  width: 3rem;
  background: var(--corp-bright);
}

.hero-slider-nav--premium.swiper-button-prev,
.hero-slider-nav--premium.swiper-button-next {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.hero-slider-nav--premium.swiper-button-prev {
  left: clamp(0.75rem, 2vw, 2rem);
}

.hero-slider-nav--premium.swiper-button-next {
  right: clamp(0.75rem, 2vw, 2rem);
}

.hero-slider-counter {
  position: absolute;
  bottom: 2.75rem;
  right: clamp(1rem, 3vw, 2rem);
  z-index: 5;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  pointer-events: none;
}

.hero-slider-counter-cur {
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-slider-counter-muted {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-slider-nav--premium.swiper-button-prev,
  .hero-slider-nav--premium.swiper-button-next {
    display: none;
  }

  .hero-slider-counter {
    bottom: 5rem;
    right: 1rem;
  }
}

/* Kategoriler */
.home-premium-cats {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: #fff;
}

.home-premium-cats-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.home-premium-h2 {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.home-premium-h2--left {
  text-align: left;
  margin-bottom: 0;
}

.home-premium-lead {
  margin: 0;
  font-size: 1.05rem;
  color: #4b5563;
}

.home-premium-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .home-premium-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .home-premium-cat-grid {
    grid-template-columns: 1fr;
  }
}

.home-premium-cat {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  background: #f3f4f6;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.home-premium-cat:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.home-premium-cat-media {
  position: absolute;
  inset: 0;
}

.home-premium-cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-premium-cat:hover .home-premium-cat-media img {
  transform: scale(1.05);
}

.home-premium-cat-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
  pointer-events: none;
}

.home-premium-cat-label {
  position: absolute;
  left: 1.35rem;
  bottom: 1.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

/* Bloklar + kartlar */
.home-premium-block {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: #fff;
}

.home-premium-block--muted {
  background: #f9fafb;
}

.home-premium-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.home-premium-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--corp-bright);
  text-decoration: none;
  transition: color 0.15s;
}

.home-premium-more:hover {
  color: var(--corp);
}

.home-premium-grid {
  display: grid;
  gap: 1.5rem;
}

.home-premium-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-premium-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .home-premium-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-premium-grid--3,
  .home-premium-grid--4 {
    grid-template-columns: 1fr;
  }
}

.home-premium-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
  transition: box-shadow 0.25s, transform 0.25s;
}

.home-premium-card--border {
  border-color: #e5e7eb;
}

.home-premium-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.home-premium-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f4f6;
}

.home-premium-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-premium-card:hover .home-premium-card-img img {
  transform: scale(1.05);
}

.home-premium-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #111827;
  border-radius: 0.375rem;
}

.home-premium-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.home-premium-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3rem;
  margin: 0;
}

.home-premium-card-price {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.home-premium-card-meta {
  font-size: 0.875rem;
  color: #6b7280;
}

.home-premium-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #6b7280;
  margin: 0;
}

/* Ana sayfa — Ne aramıştınız? tür kutuları */
.home-search-types {
  padding-top: clamp(2.75rem, 7vw, 4.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.home-search-types-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--ink);
  text-align: center;
}

.home-search-types-lead {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 2.25rem;
  max-width: 38rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.55;
}

.home-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.65rem);
}

@media (max-width: 900px) {
  .home-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .home-type-grid {
    grid-template-columns: 1fr;
  }
}

.home-type-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 6px 28px rgba(28, 25, 23, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(28, 25, 23, 0.12);
}

.home-type-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.home-type-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  min-height: clamp(200px, 24vw, 300px);
  overflow: hidden;
  background: #e7e5e4;
}

.home-type-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-type-card:hover .home-type-card-media img {
  transform: scale(1.05);
}

.home-type-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.5), transparent 55%);
  pointer-events: none;
}

.home-type-card-label {
  display: block;
  padding: 1rem 1.15rem 1.1rem;
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  text-align: center;
  color: var(--ink);
  background: var(--bg-card);
}

.home-type-card:hover .home-type-card-label {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #fafaf9;
  color: var(--ink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: #fafaf9;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

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

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #292524;
}

/* Section */
.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.link-all {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.link-all:hover {
  text-decoration: underline;
}

/* Cards grid — orta boy kartlar */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28, 25, 23, 0.1);
}

.card-image {
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #e7e5e4, #d6d3d1);
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  background: rgba(28, 25, 23, 0.85);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
}

.card-body {
  flex: 1 1 auto;
  min-height: 4.75rem;
  padding: 0.8rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.card-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.32;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1c1917;
}

.card-title a {
  color: #1c1917;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

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

.card-price {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1c1917;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.card-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.35;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  align-items: flex-end;
}

.filters label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.filters select,
.filters input[type="search"] {
  font-family: var(--font-body);
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
  min-width: 160px;
}

/* ——— İlanlar listesi (referans: PublicPropertiesPage) ——— */
body.page-ilanlar {
  background: #f9fafb;
}

body.page-ilanlar .site-header {
  border-bottom: 1px solid #e5e7eb;
}

body.page-ilanlar .site-header::before {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.page-ilanlar .main {
  padding-top: calc(2rem + 4.3rem + 0.35rem);
  padding-bottom: 2.5rem;
}

.ilanlar-page {
  padding: 2rem 0 2.5rem;
}

.ilanlar-page-inner.container--wide {
  width: min(1400px, 94vw);
}

.ilanlar-filters {
  margin: 0 0 2rem;
  padding: 0;
  border: none;
  background: transparent;
}

.ilanlar-filters-card {
  --ilanlar-c-h: 2.5rem;
  --ilanlar-c-pad-x: 0.65rem;
  --ilanlar-c-font: 0.8125rem;
  --ilanlar-c-br: 0.5rem;
  --ilanlar-c-border: #e2e8f0;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 44px -20px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.ilanlar-filters-toolbar {
  padding: 1.05rem 1.2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ilanlar-filters-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem 0.6rem;
  width: 100%;
  min-width: min-content;
}

@media (min-width: 1200px) {
  .ilanlar-filters-row {
    flex-wrap: nowrap;
    gap: 0.45rem 0.55rem;
  }
}

.ilanlar-filters-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem 0.55rem;
  flex: 0 1 auto;
  min-width: 0;
}

.ilanlar-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ilanlar-field--equal {
  flex: 1 1 0;
  min-width: 6.25rem;
  max-width: 100%;
}

@media (min-width: 1200px) {
  .ilanlar-filters-fields {
    flex-wrap: nowrap;
    max-width: 38rem;
  }

  .ilanlar-field--equal {
    min-width: 7rem;
    max-width: 9.25rem;
  }
}

.ilanlar-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.ilanlar-label--row-spacer {
  visibility: hidden;
  user-select: none;
  pointer-events: none;
  margin-bottom: 0.35rem;
  min-height: calc(0.6875rem * 1.2);
}

.ilanlar-filters-actions {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 0;
}

@media (min-width: 1200px) {
  .ilanlar-filters-actions {
    padding-left: 1rem;
    margin-left: 0.35rem;
    border-left: 1px solid #e2e8f0;
  }
}

.ilanlar-filters-actions-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem 0.4rem;
  min-width: min-content;
}

.ilanlar-select {
  font-family: var(--font-body);
  font-size: var(--ilanlar-c-font);
  width: 100%;
  line-height: 1.2;
  padding: 0 2rem 0 var(--ilanlar-c-pad-x);
  min-height: var(--ilanlar-c-h);
  height: var(--ilanlar-c-h);
  box-sizing: border-box;
  border: 1px solid var(--ilanlar-c-border);
  border-radius: var(--ilanlar-c-br);
  background: #f8fafc;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  appearance: auto;
}

.ilanlar-select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: #f1f5f9;
}

.ilanlar-fixed-val {
  display: flex;
  align-items: center;
  min-height: var(--ilanlar-c-h);
  height: var(--ilanlar-c-h);
  padding: 0 var(--ilanlar-c-pad-x);
  box-sizing: border-box;
  border: 1px solid var(--ilanlar-c-border);
  border-radius: var(--ilanlar-c-br);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  color: #334155;
  font-size: var(--ilanlar-c-font);
  font-weight: 600;
  width: 100%;
}

.ilanlar-select:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--corp-bright);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.18);
}

.ilanlar-sort-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .ilanlar-filters-actions {
    flex: 1 1 100%;
    min-width: 0;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }

  .ilanlar-filters-actions-inner {
    margin-top: 0.2rem;
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
  }
}

.ilanlar-sort-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
  min-height: var(--ilanlar-c-h);
  height: var(--ilanlar-c-h);
  padding: 0 calc(var(--ilanlar-c-pad-x) + 0.05rem);
  font-size: var(--ilanlar-c-font);
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  color: #475569;
  background: #ffffff;
  border: 1px solid var(--ilanlar-c-border);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ilanlar-sort-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.ilanlar-sort-btn.is-active {
  background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.35);
}

.ilanlar-sort-btn.is-active:hover {
  background: linear-gradient(135deg, #172554 0%, #0f172a 100%);
  color: #fff;
}

.ilanlar-sort-btn:focus-visible,
.ilanlar-reset:focus-visible {
  outline: 2px solid var(--corp-bright);
  outline-offset: 2px;
}

.ilanlar-reset {
  box-sizing: border-box;
  min-height: var(--ilanlar-c-h);
  height: var(--ilanlar-c-h);
  padding: 0 calc(var(--ilanlar-c-pad-x) + 0.35rem);
  font-size: var(--ilanlar-c-font);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: var(--corp);
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ilanlar-reset:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: var(--corp-hover);
}

.ilanlar-noscript-only {
  margin-top: 0.65rem;
  text-align: center;
}

.ilanlar-noscript-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--ilanlar-c-h);
  padding: 0 1rem;
  font-size: var(--ilanlar-c-font);
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: #fff;
  cursor: pointer;
}

.ilanlar-filters-chipband {
  border-top: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 40%, #ffffff 100%);
  padding: 0.85rem 1.2rem 1rem;
}

.ilanlar-filter-features {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

.ilanlar-filter-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  overflow-x: auto;
  margin: 0;
  padding: 0.15rem 0 0.3rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.ilanlar-filter-chips::-webkit-scrollbar {
  height: 5px;
}

.ilanlar-filter-chips::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.ilanlar-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: var(--ilanlar-c-h);
  padding: 0 0.75rem;
  box-sizing: border-box;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  user-select: none;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}

.ilanlar-filter-chip:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.ilanlar-filter-chip:has(input:checked) {
  border-color: var(--corp-bright);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--corp);
  box-shadow: 0 0 0 1px rgba(29, 78, 216, 0.22);
}

.ilanlar-filter-chip input {
  accent-color: var(--corp-bright);
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  margin: 0;
}

.ilanlar-filter-chip-text {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .ilanlar-filters-toolbar {
    padding: 0.9rem 1rem;
  }

  .ilanlar-filters-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 0.55rem;
    width: 100%;
  }

  .ilanlar-field--equal {
    min-width: 0;
    max-width: none;
    flex: unset;
  }

  .ilanlar-reset {
    flex: 0 0 auto;
  }

  .ilanlar-filters-chipband {
    padding: 0.75rem 1rem 0.9rem;
  }
}

/* ——— İlanlar: mobil filtre çekmecesi (sağdan) ——— */
.ilanlar-filters-mobile-bar {
  display: none;
}

@media (max-width: 768px) {
  .ilanlar-filters-mobile-bar {
    display: flex;
    margin: 0 0 1rem;
  }

  .ilanlar-filters-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 3rem;
    padding: 0 1.15rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.28);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
  }

  .ilanlar-filters-open-btn:hover {
    box-shadow: 0 6px 22px rgba(30, 58, 138, 0.35);
  }

  .ilanlar-filters-open-btn:active {
    transform: scale(0.99);
  }

  .ilanlar-filters-open-btn-icon {
    display: flex;
    opacity: 0.95;
    color: #fff;
  }

  .ilanlar-filters-sheet {
    position: fixed;
    inset: 0;
    z-index: 210;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.32s ease;
  }

  .ilanlar-filters-sheet.is-open {
    pointer-events: auto;
    visibility: visible;
  }

  .ilanlar-filters-sheet-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(15, 23, 42, 0.48);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.32s ease;
  }

  .ilanlar-filters-sheet.is-open .ilanlar-filters-sheet-backdrop {
    opacity: 1;
  }

  .ilanlar-filters-sheet-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(22rem, 92vw);
    max-width: 100%;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #f1f5f9;
    border-left: 1px solid #e2e8f0;
    box-shadow: -20px 0 50px rgba(15, 23, 42, 0.18);
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .ilanlar-filters-sheet.is-open .ilanlar-filters-sheet-panel {
    transform: translateX(0);
  }

  .ilanlar-filters-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-shrink: 0;
    padding: 1rem 1rem 0.85rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e2e8f0;
  }

  .ilanlar-filters-sheet-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  .ilanlar-filters-sheet-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(30, 58, 138, 0.1);
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .ilanlar-filters-sheet-close:hover {
    background: rgba(30, 58, 138, 0.18);
  }

  .ilanlar-filters-sheet-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-filters-card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-filters-toolbar {
    overflow-x: visible;
    padding: 1rem 1rem 0.85rem;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-filters-row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.75rem;
    min-width: 0;
    width: 100%;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-filters-fields {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    max-width: none;
    gap: 0.65rem;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-field--equal {
    min-width: 0;
    max-width: none;
    flex: none;
    width: 100%;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-filters-actions {
    flex: none;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-filters-actions-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: 0;
    max-width: none;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-sort-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-sort-btn {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-reset {
    width: 100%;
    justify-content: center;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-filters-chipband {
    padding: 1rem;
    border-radius: 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-filter-chips {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-filter-chip {
    flex: 1 1 auto;
    min-width: min(100%, 10rem);
    height: auto;
    min-height: var(--ilanlar-c-h);
    padding: 0.5rem 0.75rem;
    white-space: normal;
  }

  .ilanlar-filters-sheet-scroll .ilanlar-filter-chip-text {
    white-space: normal;
    line-height: 1.3;
  }

  body.ilanlar-filter-drawer-open {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
  }
}

@media (min-width: 769px) {
  .ilanlar-filters-mobile-bar {
    display: none !important;
  }

  .ilanlar-filters-sheet {
    position: static;
    display: block;
    width: auto;
    height: auto;
    z-index: auto;
    pointer-events: auto;
    visibility: visible;
  }

  .ilanlar-filters-sheet-backdrop {
    display: none !important;
  }

  .ilanlar-filters-sheet-panel {
    position: static;
    display: block;
    width: 100% !important;
    max-width: none;
    transform: none !important;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .ilanlar-filters-sheet-head {
    display: none !important;
  }

  .ilanlar-filters-sheet-scroll {
    overflow: visible;
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ilanlar-filters-sheet,
  .ilanlar-filters-sheet-backdrop,
  .ilanlar-filters-sheet-panel {
    transition: none !important;
  }
}

.ilanlar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ilanlar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ilanlar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .ilanlar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ilanlar-card {
  margin: 0;
}

.ilanlar-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease;
}

.ilanlar-card-link:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.06);
}

.ilanlar-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f4f6;
}

.ilanlar-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ilanlar-card-link:hover .ilanlar-card-image img {
  transform: scale(1.05);
}

.ilanlar-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  color: #fff;
}

.ilanlar-badge--sale {
  background: var(--corp);
}

.ilanlar-badge--rent {
  background: #2563eb;
}

.ilanlar-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.ilanlar-card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #111827;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8rem;
}

.ilanlar-card-price {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.ilanlar-card-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.45;
}

.ilanlar-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  color: #6b7280;
}

.ilanlar-empty p {
  margin: 0;
  font-size: 1rem;
}

/* İlan detay — sol küçük galeri, sağ iletişim, alt metin */
.detail-page {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

@media (max-width: 900px) {
  .detail-split {
    grid-template-columns: 1fr;
  }
}

.detail-gallery-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.detail-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e7e5e4;
  aspect-ratio: 4 / 3;
  max-height: 340px;
}

.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.detail-gallery-thumbs {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0 0 0.35rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

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

.detail-gallery-thumbs::-webkit-scrollbar-track {
  background: #f5f5f4;
  border-radius: 3px;
}

.detail-gallery-thumbs::-webkit-scrollbar-thumb {
  background: #d6d3d1;
  border-radius: 3px;
}

.detail-gallery-thumbs li {
  margin: 0;
  flex: 0 0 auto;
}

.detail-thumb {
  display: block;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f4;
  line-height: 0;
  transition: border-color 0.15s ease, opacity 0.15s ease;
}

.detail-thumb img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  display: block;
}

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

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

.detail-gallery-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fafaf9;
}

.detail-cta-col {
  position: sticky;
  top: 5.5rem;
}

@media (max-width: 900px) {
  .detail-cta-col {
    position: static;
  }
}

.detail-cta-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.detail-cta-price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.detail-cta-ref {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.detail-cta-heading {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.detail-cta-line {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}

.detail-cta-line a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.detail-cta-line a:hover {
  text-decoration: underline;
}

.detail-cta-muted {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.detail-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.detail-cta-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.detail-cta-card .btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.detail-cta-card .btn-outline:hover {
  background: #f5f5f4;
}

.detail-info-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  max-width: 100%;
}

.detail-back {
  margin: 1.75rem 0 0;
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 1rem;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: #f5f5f4;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.detail-desc {
  color: var(--ink);
  white-space: pre-wrap;
}

/* İlan detay — PropertyDetail tarzı (pd-*) */
.pd-wrap {
  min-height: calc(100vh - 8rem);
  background: #f5f5f4;
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.pd-page-header {
  position: sticky;
  top: 4.25rem;
  z-index: 150;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(28, 25, 23, 0.06);
}

.pd-page-header-inner {
  width: min(1280px, 94vw);
  margin: 0 auto;
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pd-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.15rem;
  font-family: var(--font-body);
}

.pd-brand--logo {
  line-height: 0;
}

.pd-brand-logo {
  height: 2.5rem;
  width: auto;
  max-width: min(200px, 55vw);
  object-fit: contain;
  display: block;
  background: transparent;
}

.pd-brand:hover {
  opacity: 0.92;
}

.pd-brand-ico {
  flex-shrink: 0;
  color: #2563eb;
}

.pd-page-header .pd-toolbar {
  margin-bottom: 0;
}

.pd-container {
  width: min(1280px, 94vw);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) 0 0;
}

.pd-flash {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.pd-flash--ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.pd-flash--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.pd-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pd-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--muted);
  cursor: pointer;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: background 0.15s ease, color 0.15s ease;
}

.pd-icon-btn:hover {
  background: #fafaf9;
  color: var(--ink);
}

.pd-fav-btn.is-favorite {
  color: #b91c1c;
}

.pd-fav-btn.is-favorite .pd-fav-icon {
  fill: currentColor;
  stroke: currentColor;
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.pd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Grid içinde taşmayı önle (uzun metin / nowrap fiyat → yatay kaydırma ve “küçük masaüstü” hissi) */
.pd-main,
.pd-sidebar {
  min-width: 0;
}

@media (min-width: 1200px) {
  .pd-grid {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 2rem;
  }

  .pd-sidebar {
    position: sticky;
    top: 5.5rem;
  }
}

.pd-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pd-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.pd-card--flush {
  padding: 0;
  overflow: hidden;
}

.pd-gallery-main-wrap {
  position: relative;
}

.pd-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #1c1917;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(28, 25, 23, 0.18);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.pd-gallery-nav:hover {
  background: #fff;
  box-shadow: 0 4px 18px rgba(28, 25, 23, 0.22);
}

.pd-gallery-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.pd-gallery-nav:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.pd-gallery-nav--prev {
  left: 0.65rem;
}

.pd-gallery-nav--next {
  right: 0.65rem;
}

@media (max-width: 480px) {
  .pd-gallery-nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .pd-gallery-nav--prev {
    left: 0.4rem;
  }

  .pd-gallery-nav--next {
    right: 0.4rem;
  }
}

.pd-gallery-main {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #e7e5e4;
  aspect-ratio: 16 / 10;
  max-height: min(520px, 70vh);
}

.pd-gallery-main img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.pd-gallery-main-img {
  cursor: zoom-in;
}

/* Tam ekran galeri (lightbox) */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.pd-lightbox[hidden] {
  display: none !important;
}

.pd-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  cursor: pointer;
}

.pd-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.pd-lightbox-dialog > * {
  pointer-events: auto;
}

.pd-lightbox-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0 0.75rem;
  color: #fafaf9;
}

.pd-lightbox-close {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  margin-right: auto;
}

.pd-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pd-lightbox-zoom-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

.pd-lightbox-zoom-controls button {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.pd-lightbox-zoom-controls button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.28);
}

.pd-lightbox-zoom-controls button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pd-lightbox-zoom-label {
  min-width: 3.25rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.pd-lightbox-counter {
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.pd-lightbox-stage {
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
}

.pd-lightbox-stage img {
  max-width: none;
  width: auto;
  height: auto;
  max-height: min(78vh, 900px);
  transform-origin: center center;
  transition: transform 0.1s ease-out;
  cursor: pointer;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.pd-lightbox-stage img.is-lb-panning {
  transition: none;
}

.pd-lightbox-hint {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.page-listing-detail .pd-thumbs.detail-gallery-thumbs {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.page-listing-detail .pd-thumb.detail-thumb img {
  width: 96px;
  height: 72px;
}

/* İlan detay — mobil: tam genişlik galeri, dar sütun / gri boşluk hissini kaldır */
@media (max-width: 768px) {
  /*
   * Üstteki büyük beyaz boşluk: .main genelde calc(2rem + 4.3rem + 0.35rem) bırakıyor;
   * sabit header içeriği ~4.3rem — fazladan ~2rem boşluk kalıyordu. İlan detay mobilde
   * sadece header + ince pay + güvenli alan bırakıyoruz.
   */
  body.page-listing-detail .main {
    padding-top: calc(0.35rem + 4.3rem + env(safe-area-inset-top, 0px));
  }

  body.page-listing-detail .pd-container {
    width: 100%;
    max-width: none;
    margin: 0;
    /* Galeri üstü ek boşluk yok; bilgi flash varsa .pd-flash margin ile nefes verir */
    padding: 0;
    box-sizing: border-box;
  }

  body.page-listing-detail .pd-container:has(.pd-flash) {
    padding-top: 0.5rem;
  }

  body.page-listing-detail .pd-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  body.page-listing-detail .pd-grid {
    gap: 1rem;
  }

  body.page-listing-detail .pd-intro-card .pd-intro-row {
    flex-direction: column;
    align-items: stretch;
    /* space-between sütunda fiyatı alta iter, konum ile fiyat arasında dev boşluk bırakır */
    justify-content: flex-start;
    gap: 0.55rem;
  }

  body.page-listing-detail .pd-intro-card {
    padding: 0.85rem 1rem 1rem;
  }

  body.page-listing-detail .pd-badge-row {
    margin-bottom: 0.4rem;
    gap: 0.35rem;
  }

  body.page-listing-detail .pd-type-pill {
    padding: 0.25rem 0.65rem;
    font-size: 0.72rem;
  }

  body.page-listing-detail .pd-title {
    font-size: clamp(1.05rem, 4.2vw, 1.28rem);
    line-height: 1.28;
    margin: 0 0 0.35rem;
    letter-spacing: -0.015em;
  }

  body.page-listing-detail .pd-location {
    font-size: 0.82rem;
    line-height: 1.35;
    margin: 0;
  }

  body.page-listing-detail .pd-loc-ico {
    width: 15px;
    height: 15px;
    margin-top: 0.12rem;
  }

  body.page-listing-detail .pd-intro-price {
    white-space: normal;
    flex-shrink: 1;
    align-self: flex-start;
    font-size: clamp(1.2rem, 5vw, 1.45rem);
    margin-top: 0.1rem;
    line-height: 1.2;
  }

  /* Ana görsel ve thumb şeridi viewport genişliğinde */
  body.page-listing-detail .pd-gallery-card.pd-card--flush {
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
  }

  body.page-listing-detail .pd-gallery-main {
    max-height: min(56vh, 420px);
    aspect-ratio: 4 / 3;
  }

  body.page-listing-detail .pd-thumbs.detail-gallery-thumbs {
    padding-left: max(0.65rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.65rem, env(safe-area-inset-right, 0px));
    padding-top: 0.65rem;
    padding-bottom: 0.85rem;
    scroll-padding-inline: 0.65rem;
  }

  body.page-listing-detail .pd-main > .pd-card:not(.pd-gallery-card),
  body.page-listing-detail .pd-sidebar .pd-card {
    margin-left: max(0.75rem, env(safe-area-inset-left, 0px));
    margin-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  body.page-listing-detail .pd-flash {
    margin-left: max(0.75rem, env(safe-area-inset-left, 0px));
    margin-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  body.page-listing-detail .pd-back {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  body.page-listing-detail .pd-seo-box {
    margin-left: max(0.75rem, env(safe-area-inset-left, 0px));
    margin-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }
}

.pd-gallery-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Genel Özellikler — galeri altı ikonlu grid */
.pd-genel-card .pd-genel-title {
  margin-bottom: 1rem;
}

.pd-genel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .pd-genel-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.pd-genel-cell {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 0.65rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 8.25rem;
}

.pd-genel-ico {
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.1rem;
}

.pd-genel-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.pd-genel-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  word-break: break-word;
  max-width: 100%;
}

/* Genel Özellikler — mobilde daha kompakt (daha az dikey kaydırma; 767px: min-width:768 ile çakışmasın) */
@media (max-width: 767px) {
  .pd-genel-card .pd-genel-title {
    margin-bottom: 0.6rem;
  }

  .pd-genel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .pd-genel-cell {
    min-height: 0;
    padding: 0.45rem 0.3rem;
    gap: 0.15rem;
    border-radius: 8px;
    justify-content: flex-start;
  }

  .pd-genel-ico {
    margin-bottom: 0;
  }

  .pd-genel-ico svg {
    width: 16px;
    height: 16px;
  }

  .pd-genel-label {
    font-size: 0.55rem;
    letter-spacing: 0.02em;
    line-height: 1.15;
  }

  .pd-genel-val {
    font-size: 0.72rem;
    line-height: 1.2;
  }
}

@media (max-width: 360px) {
  .pd-genel-grid {
    gap: 0.35rem;
  }

  .pd-genel-cell {
    padding: 0.4rem 0.25rem;
  }

  .pd-genel-ico svg {
    width: 14px;
    height: 14px;
  }

  .pd-genel-label {
    font-size: 0.5rem;
  }

  .pd-genel-val {
    font-size: 0.68rem;
  }
}

.pd-intro-card .pd-intro-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.pd-intro-left {
  flex: 1 1 12rem;
  min-width: 0;
}

.pd-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.pd-type-pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0;
}

.pd-type-pill--blue {
  background: #eff6ff;
  color: #1d4ed8;
}

.pd-type-pill--muted {
  background: #f5f5f4;
  color: var(--muted);
  font-weight: 500;
  border: 1px solid var(--line);
}

.pd-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.8vw, 1.95rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  overflow-wrap: break-word;
  word-break: break-word;
}

.pd-location {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.pd-loc-ico {
  flex-shrink: 0;
  opacity: 0.85;
}

.pd-intro-price {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #2563eb;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  max-width: 100%;
}

.pd-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.pd-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem 1.25rem;
}

.pd-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pd-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.pd-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}

.pd-description {
  color: var(--ink);
  line-height: 1.65;
  max-height: min(38vh, 260px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-right: 0.35rem;
  scrollbar-gutter: stable;
}

.pd-description::-webkit-scrollbar {
  width: 6px;
}

.pd-description::-webkit-scrollbar-track {
  background: #f5f5f4;
  border-radius: 3px;
}

.pd-description::-webkit-scrollbar-thumb {
  background: #d6d3d1;
  border-radius: 3px;
}

.pd-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pd-feature-chip {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: #f5f5f4;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--line);
}

.pd-map-placeholder {
  min-height: 280px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #e7e5e4, #f5f5f4);
  border: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
}

.pd-map-ico {
  opacity: 0.45;
  margin-bottom: 0.75rem;
}

.pd-map-text {
  margin: 0;
  font-weight: 500;
  color: var(--ink);
}

.pd-map-sub {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
}

.pd-map-frame-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e7e5e4;
}

.pd-map-frame-wrap--leaflet {
  position: relative;
  z-index: 0;
}

.pd-detail-map {
  width: 100%;
  height: 20rem;
  min-height: 280px;
  z-index: 0;
}

.pd-detail-map .leaflet-control-layers {
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.pd-detail-map .leaflet-control-layers-list label {
  margin: 0.2rem 0;
}

.pd-map-frame {
  width: 100%;
  height: 20rem;
  min-height: 280px;
  border: 0;
  display: block;
  vertical-align: middle;
}

.pd-map-hint {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.pd-streetview-block {
  margin-top: 1rem;
}

.pd-streetview-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fafaf9;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.pd-streetview-btn:hover {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(28, 25, 23, 0.08);
}

.pd-streetview-btn-ico {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(146, 64, 14, 0.1);
  color: var(--accent);
}

.pd-streetview-btn-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.pd-streetview-btn-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.pd-streetview-btn-label {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}

.pd-streetview-btn-arrow {
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.9;
}

.pd-map-address {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* İlan detay — sağ sütun: danışman + bilgi formu */
.pd-consult-card {
  padding: 1.35rem 1.25rem 1.5rem;
}

.pd-consult-heading {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.pd-consult-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.pd-consult-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #dbeafe;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pd-consult-who {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.pd-consult-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.pd-consult-role {
  font-size: 0.82rem;
  color: #78716c;
}

.pd-consult-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pd-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.pd-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: #fff;
}

.pd-cta-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}

.pd-cta--phone {
  background: #2563eb;
}

.pd-cta--whatsapp {
  background: #25d366;
}

.pd-cta--email {
  background: #475569;
}

.pd-consult-empty {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.pd-consult-sep {
  height: 1px;
  background: var(--line);
  margin: 1.25rem 0;
  border: 0;
}

.pd-consult-subheading {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.pd-consult-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pd-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pd-field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #44403c;
}

.pd-field-input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  box-sizing: border-box;
}

.pd-field-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.pd-field-textarea {
  min-height: 100px;
  resize: vertical;
}

.pd-form-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.72rem 1rem;
  border: none;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.pd-form-submit:hover {
  background: #1d4ed8;
}

.pd-form-submit:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.pd-agent-name {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-family: var(--font-body);
}

.pd-contact-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.pd-contact-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.pd-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  word-break: break-word;
}

.pd-contact-row:hover {
  text-decoration: underline;
}

.pd-contact-ico {
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.85;
}

.pd-contact-muted {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.pd-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pd-btn--primary {
  background: var(--accent);
  color: #fffaf5;
  border: 1px solid var(--accent);
}

.pd-btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
}

.pd-btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.pd-btn--outline:hover {
  background: #fafaf9;
}

.pd-btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid transparent;
}

.pd-btn--ghost:hover {
  text-decoration: underline;
}

.pd-meta-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 1rem;
  font-family: var(--font-body);
}

.pd-meta-list {
  margin: 0;
}

.pd-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.pd-meta-row:last-child {
  border-bottom: none;
}

.pd-meta-row dt {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  min-width: 0;
}

.pd-meta-row dd {
  margin: 0;
  text-align: right;
  font-weight: 500;
  min-width: 0;
  overflow-wrap: break-word;
}

.pd-back {
  margin: 2rem 0 0;
}

/* İlan detay — alt SEO metin kutusu */
.pd-seo-box {
  margin-top: 2.25rem;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.75rem);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.06);
}

.pd-seo-box-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  font-family: var(--font-body);
}

.pd-seo-box-body {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.pd-seo-box-p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #475569;
}

.pd-seo-box-foot {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px dashed #cbd5e1;
}

.pd-seo-box-foot-label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.pd-seo-box-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pd-seo-box-link {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e40af;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pd-seo-box-link:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1d4ed8;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
}

/* Footer — koyu çok sütunlu */
.site-footer {
  margin-top: auto;
  background: #141414;
  color: #e5e5e5;
  border-top: none;
}

.footer-mega {
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(2rem, 4vw, 2.75rem);
}

.footer-mega-inner {
  max-width: min(1200px, 94vw);
}

.footer-mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem 2rem;
}

@media (min-width: 640px) {
  .footer-mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-mega-grid {
    grid-template-columns: 1.15fr 0.85fr 0.85fr 1fr;
    gap: 2rem 2.5rem;
  }
}

.footer-mega-brand-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-mega-logo-ring {
  flex-shrink: 0;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: #262626;
  border: 1px solid #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 0;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-mega-logo-ring:hover {
  border-color: #525252;
  background: #2a2a2a;
}

.footer-mega-logo-img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.footer-mega-name {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fafafa;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.footer-mega-tagline {
  margin: 0.2rem 0 0;
  font-size: 0.875rem;
  color: #a3a3a3;
  line-height: 1.4;
}

.footer-mega-desc {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #a3a3a3;
  max-width: 26rem;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social-row li {
  margin: 0;
  padding: 0;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 9px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.footer-social--ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social--fb {
  background: #1877f2;
}

.footer-social--yt {
  background: #ff0000;
  font-size: 0.55rem;
}

.footer-mega-heading {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fafafa;
  letter-spacing: -0.01em;
}

.footer-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-mega-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-mega-link:hover {
  color: #fafafa;
}

.footer-mega-link--muted {
  cursor: default;
  opacity: 0.55;
}

.footer-mega-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.65rem;
  margin-right: 0.45rem;
  color: #737373;
  font-size: 0.75rem;
  line-height: 1;
}

.footer-mega-chevron::before {
  content: "›";
  font-weight: 600;
}

.footer-mega-link:hover .footer-mega-chevron {
  color: #a3a3a3;
}

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

.footer-mega-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-contact-ico {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1f1f;
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: 8px;
  color: #60a5fa;
}

.footer-contact-body {
  font-size: 0.875rem;
  line-height: 1.45;
  color: #a3a3a3;
  padding-top: 0.15rem;
}

.footer-contact-a {
  color: #d4d4d4;
  text-decoration: none;
}

.footer-contact-a:hover {
  color: #fafafa;
  text-decoration: underline;
}

.footer-mega-contact-empty {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.45;
}

.footer-bar {
  border-top: 1px solid #2a2a2a;
  padding: 1rem 0 1.35rem;
  background: #0f0f0f;
}

.footer-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bar-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-bar-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: #737373;
}

.footer-bar-credit {
  margin: 0;
  font-size: 0.75rem;
  color: #525252;
}

/* Yasal metin sayfaları — kart düzeni */
body.page-legal {
  background: #e8e6e3;
}

body.page-legal .main {
  background: transparent;
}

.legal-doc {
  padding: clamp(1.75rem, 4.5vw, 2.75rem) clamp(1rem, 4vw, 1.5rem) clamp(2.5rem, 6vw, 4rem);
}

.legal-doc-shell {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
}

.legal-doc-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 28px rgba(28, 25, 23, 0.07), 0 1px 3px rgba(28, 25, 23, 0.04);
  padding: clamp(1.5rem, 4.2vw, 2.75rem) clamp(1.15rem, 3.5vw, 2.25rem);
}

.legal-doc-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.legal-doc-panel h1,
.legal-doc h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.28;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.legal-doc-lead {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  line-height: 1.55;
}

.legal-doc-panel > p,
.legal-doc-panel .legal-doc-body > p,
.legal-doc p {
  margin: 0 0 1rem;
  line-height: 1.72;
  font-size: 0.9375rem;
  color: #292524;
}

.legal-doc-meta {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.legal-doc-body h2 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.85rem 0 0.75rem;
  padding: 0.35rem 0 0.35rem 0.85rem;
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(146, 64, 14, 0.06) 0%, transparent 100%);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.legal-doc-body h2:first-of-type {
  margin-top: 0;
}

.legal-doc-list,
.legal-doc-ol {
  margin: 0 0 1.1rem;
  padding-left: 1.4rem;
  line-height: 1.72;
  font-size: 0.9375rem;
  color: #292524;
}

.legal-doc-list li,
.legal-doc-ol li {
  margin-bottom: 0.45rem;
  padding-left: 0.15rem;
}

.legal-doc-list li:last-child,
.legal-doc-ol li:last-child {
  margin-bottom: 0;
}

.legal-doc-list--card {
  list-style: none;
  padding: 1rem 1.1rem;
  margin: 0 0 1rem;
  background: #faf8f5;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.legal-doc-list--card li {
  padding-left: 0;
  margin-bottom: 0.5rem;
}

.legal-doc-list--card li:last-child {
  margin-bottom: 0;
}

.legal-doc-body a,
.legal-doc-panel a {
  color: #92400e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 500;
}

.legal-doc-body a:hover,
.legal-doc-panel a:hover {
  color: var(--accent-light);
}

.legal-doc-note {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafaf9;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Admin */
.admin-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 420px;
  margin: 2rem auto;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

table.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.admin-table th {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}

.btn-danger {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ——— Blog ——— */
.blog-page {
  padding: 2.5rem 0 4rem;
}

.blog-page-inner {
  max-width: 52rem;
}

.blog-page-head {
  margin-bottom: 2rem;
}

.blog-page-title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111827;
  margin: 0 0 0.5rem;
}

.blog-page-lead {
  margin: 0;
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.5;
}

.blog-empty {
  padding: 2rem;
  text-align: center;
  color: #6b7280;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-text {
  padding: 1.15rem 1.35rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.5rem;
  color: #111827;
}

.blog-card-text .blog-card-title {
  margin-top: 0;
}

.blog-card-excerpt {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  margin: 0;
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.blog-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: #6b7280;
}

.blog-breadcrumb a {
  color: #374151;
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-breadcrumb-sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.blog-article-head {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.blog-article-title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111827;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.blog-article-meta {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.blog-article-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #374151;
}

.blog-article-body p {
  margin: 0 0 1.1em;
}

.blog-article-body p:last-child {
  margin-bottom: 0;
}

.blog-article-hero {
  margin: 0 0 2rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.08);
  background: #f3f4f6;
}

.blog-article-hero-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.blog-article-body .blog-figure {
  margin: 1.75rem 0;
}

.blog-article-body .blog-figure:first-child {
  margin-top: 0;
}

.blog-figure-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.07);
}

.blog-figcaption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.45;
  text-align: center;
}

.blog-back-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.blog-back-link:hover {
  text-decoration: underline;
}

/* Ana sayfa — alt SEO kutusu (kaydırılabilir) */
.home-seo-deep {
  padding: 2rem 0 2.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 40%);
}

.home-seo-deep-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1f2937;
}

.home-seo-deep-scroll {
  max-height: min(42rem, 75vh);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem 1.15rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.home-seo-deep-scroll:focus {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.home-seo-deep-scroll:focus:not(:focus-visible) {
  outline: none;
}

.home-seo-deep-scroll p {
  margin: 0 0 0.95rem;
  font-size: 0.875rem;
  line-height: 1.72;
  color: #4b5563;
}

.home-seo-deep-scroll p:last-of-type {
  margin-bottom: 0.75rem;
}

.home-seo-deep-scroll strong {
  color: #374151;
  font-weight: 600;
}

.home-seo-deep-scroll a {
  color: #1d4ed8;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(29, 78, 216, 0.35);
  text-underline-offset: 2px;
}

.home-seo-deep-scroll a:hover {
  color: #1e3a8a;
  text-decoration-color: rgba(30, 58, 138, 0.55);
}

.home-seo-deep-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  padding-top: 0.35rem;
  margin: 0;
  border-top: 1px dashed #e5e7eb;
}

.home-seo-deep-pills a {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e40af;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  text-decoration: none;
}

.home-seo-deep-pills a:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1d4ed8;
}

.home-seo-deep-scroll::-webkit-scrollbar {
  width: 8px;
}

.home-seo-deep-scroll::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 8px;
}

.home-seo-deep-scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 8px;
}

.home-seo-deep-scroll::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Ana sayfa — sabit telefon (FAB) */
.home-phone-fab {
  position: fixed;
  z-index: 85;
  right: calc(1.1rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.625rem;
  height: 3.625rem;
  padding: 0;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(155deg, #f43f5e 0%, #dc2626 48%, #b91c1c 100%);
  border-radius: 28%;
  box-shadow:
    0 6px 18px rgba(220, 38, 38, 0.55),
    0 14px 36px rgba(28, 25, 23, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-phone-fab__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: inherit;
  opacity: 0.35;
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.home-phone-fab__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.home-phone-fab:hover {
  transform: scale(1.06);
  box-shadow:
    0 8px 22px rgba(220, 38, 38, 0.6),
    0 18px 42px rgba(28, 25, 23, 0.22);
}

.home-phone-fab:active {
  transform: scale(0.96);
}

.home-phone-fab:focus-visible {
  outline: 3px solid var(--corp-bright);
  outline-offset: 4px;
}

@media (min-width: 900px) {
  .home-phone-fab {
    right: calc(1.75rem + env(safe-area-inset-right, 0px));
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    width: 3.75rem;
    height: 3.75rem;
  }

  .home-phone-fab__icon {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-phone-fab {
    transition: none;
  }
}
