/* EMLAKJET — alt sayfalar (liste, detay, auth, panel, vb.) */

:root {
  --section-pad: 5rem;
  --card-pad: 1.5rem;
  --radius-card: 12px;
  --container-wide: min(1280px, 92vw);
  --sticky-top: 88px;
}

/* Ortak sayfa iskeleti */
.page-main {
  min-height: 60vh;
}

.page-hero-sm {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-sm .page-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-hero-sm .page-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.page-section {
  padding: var(--section-pad) 0;
}

.container-wide {
  width: var(--container-wide);
  margin-inline: auto;
}

.fade-in {
  animation: fadeIn 0.5s var(--transition) both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Nav ekleri */
.btn-icon-ghost {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  flex-shrink: 0;
}

.btn-icon-ghost svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.btn-icon-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-icon-ghost.is-active {
  background: rgba(244, 63, 94, 0.2);
  border-color: rgba(251, 113, 133, 0.55);
  color: #fecdd3;
}

.btn-icon-ghost.is-active svg {
  fill: #fb7185;
  stroke: #fb7185;
}

.btn-compact-pad {
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}

/* ——— İlan listeleme: split ——— */
.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.filters-panel {
  position: sticky;
  top: var(--sticky-top);
  background: var(--bg-elevated);
  border-radius: var(--radius-card);
  padding: var(--card-pad);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.filters-panel h2 {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 700;
}

.filter-group {
  margin-bottom: 1.35rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.filter-input,
.filter-panel select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg);
  color: var(--text);
}

.filter-input:focus,
.filter-panel select:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.filter-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.segment-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.segment {
  padding: 0.4rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.segment:hover {
  border-color: rgba(124, 58, 237, 0.35);
  color: var(--text);
}

.segment.is-selected {
  background: rgba(124, 58, 237, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--text);
  cursor: pointer;
}

.check-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.listing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.listing-count {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.listing-count strong {
  color: var(--text);
  font-weight: 700;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-wrap label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort-select {
  padding: 0.55rem 2rem 0.55rem 0.85rem;
  font-size: 0.9375rem;
  font-family: inherit;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
}

/* Liste satır kartı */
.listing-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.listing-row-card {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.listing-row-media {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 160px;
}

.listing-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.listing-row-card:hover .listing-row-media img {
  transform: scale(1.05);
}

.listing-row-body {
  padding: 1rem 0;
  min-width: 0;
}

.listing-row-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.listing-row-loc {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.listing-row-specs {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.listing-row-aside {
  padding: 1rem 1.25rem 1rem 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.listing-row-price {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.btn-fav {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.btn-fav:hover {
  color: #e11d48;
  border-color: rgba(225, 29, 72, 0.35);
}

.btn-fav.is-on {
  color: #e11d48;
  background: rgba(225, 29, 72, 0.08);
  border-color: rgba(225, 29, 72, 0.25);
}

/* ——— İlan detay ——— */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr min(360px, 34%);
  gap: 2rem;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.detail-gallery {
  min-width: 0;
}

.gallery-stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumbs {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.gallery-thumb {
  flex: 0 0 96px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity var(--transition), border-color var(--transition);
}

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

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

.detail-side {
  position: sticky;
  top: var(--sticky-top);
}

.detail-panel {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: var(--card-pad);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.detail-price {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
}

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

.detail-spec-line {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.detail-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn-block {
  width: 100%;
  min-height: 48px;
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.65rem 1.15rem;
  border-radius: 12px;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.detail-blocks {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.detail-block h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.detail-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

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

.spec-icon-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

.spec-icon-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.spec-icon-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  min-height: 280px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.agent-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: var(--card-pad);
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
}

.agent-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-name {
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.agent-role {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.agent-links {
  display: flex;
  gap: 0.75rem;
}

.agent-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrap {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  position: relative;
  touch-action: pan-y;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  top: -3rem;
  right: 0;
}

.lightbox-prev {
  left: -3.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -3.5rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .lightbox-prev {
    left: 0.5rem;
  }
  .lightbox-next {
    right: 0.5rem;
  }
  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}

/* ——— Favoriler ——— */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fav-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.fav-card a.media {
  display: block;
  aspect-ratio: 4 / 3;
}

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

.fav-card .body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  max-width: 480px;
  margin: 2rem auto;
}

.empty-state-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.empty-state h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.empty-state p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

/* ——— Auth ——— */
.auth-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1600&q=70") center/cover no-repeat;
  filter: blur(24px);
  transform: scale(1.08);
}

.auth-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.82);
}

.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 2rem 2rem 2.25rem;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.auth-card h1 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
  padding: 4px;
  background: var(--bg);
  border-radius: 12px;
}

.auth-tab {
  flex: 1;
  padding: 0.55rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.auth-tab.is-active {
  background: var(--bg-elevated);
  color: var(--text);
  box-shadow: var(--shadow-card);
}

.auth-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.auth-form input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.auth-form input:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.auth-panel {
  display: none;
}

.auth-panel.is-active {
  display: block;
}

.btn-google {
  width: 100%;
  margin-top: 1rem;
  padding: 0.65rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text);
  transition: background var(--transition);
}

.btn-google:hover {
  background: var(--bg);
}

/* ——— Dashboard ——— */
.dashboard-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 72px);
  align-items: stretch;
}

.dash-sidebar {
  background: var(--nav-dark);
  padding: 1.5rem 0;
  position: sticky;
  top: 72px;
  align-self: start;
  min-height: calc(100vh - 72px);
}

.dash-brand {
  padding: 0 1.25rem 1.25rem;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.dash-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: background var(--transition), color var(--transition);
}

.dash-nav a:hover,
.dash-nav a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.dash-main {
  padding: 2rem;
  background: var(--bg);
}

.dash-title {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: var(--card-pad);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
}

.stat-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.stat-card .val {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.dash-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: var(--card-pad);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
}

.dash-card h2 {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
}

.table-simple {
  width: 100%;
  font-size: 0.9375rem;
  border-collapse: collapse;
}

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

.table-simple th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8125rem;
}

/* ——— İlan ekle wizard ——— */
.wizard-page {
  padding-bottom: var(--section-pad);
}

.wizard-progress-head {
  margin-bottom: 2rem;
}

.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  flex-wrap: nowrap;
}

.wizard-bar-full {
  width: 100%;
  flex: none;
}

.wizard-bar-full span {
  transition: width 0.35s ease;
}

.wizard-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--text-muted);
}

.wizard-step-dot.is-done {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.wizard-step-dot.is-current {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(124, 58, 237, 0.1);
}

.wizard-bar {
  flex: 1;
  height: 4px;
  min-width: 40px;
  border-radius: 4px;
  background: var(--border);
  overflow: hidden;
}

.wizard-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.35s ease;
}

.wizard-panel {
  display: none;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
  max-width: 720px;
}

.wizard-panel.is-active {
  display: block;
}

.wizard-panel h2 {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
}

.wizard-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  background: var(--bg);
}

/* ——— Hakkımızda ——— */
.about-hero {
  padding: var(--section-pad) 0 3rem;
  text-align: center;
}

.about-hero h1 {
  margin: 0 auto 0.75rem;
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-hero p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: var(--section-pad);
}

.mv-card {
  background: var(--bg-elevated);
  padding: var(--card-pad);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
}

.mv-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
}

.mv-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-big {
  text-align: center;
}

.stat-big .num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.stat-big .lbl {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: var(--section-pad) 0;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.team-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.team-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cta-band {
  background: var(--nav-dark);
  color: #fff;
  padding: 3rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: var(--section-pad);
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.85;
}

/* ——— İletişim ——— */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: var(--section-pad);
  align-items: start;
}

.contact-form-card {
  background: var(--bg-elevated);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
}

.contact-form-card label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  margin-bottom: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

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

.contact-map-side .map-embed {
  min-height: 420px;
  height: 100%;
}

/* ——— Responsive pages ——— */
@media (max-width: 1024px) {
  .listing-layout {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    position: static;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }

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

  .dashboard-wrap {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    position: static;
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
  }

  .dash-brand {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0.75rem;
    border-bottom: none;
  }

  .dash-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .dash-nav a {
    padding: 0.5rem 0.85rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
  }

  .dash-stats {
    grid-template-columns: 1fr;
  }

  .stats-row,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-split {
    grid-template-columns: 1fr;
  }
}

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

  .listing-row-aside {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0 1rem 1rem;
  }

  .listing-row-body {
    padding: 0 1rem;
  }

  .mv-grid,
  .wizard-grid-2 {
    grid-template-columns: 1fr;
  }

  .favorites-grid,
  .stats-row,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Benzer ilanlar (detay sayfası) ——— */
.similar-wrap {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  position: relative;
}

.similar-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(124, 58, 237, 0.25));
}

.similar-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.similar-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.similar-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.similar-sub {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 420px;
}

.similar-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  padding: 0.55rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.06);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.similar-all:hover {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-1px);
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.similar-grid > li {
  margin: 0;
  padding: 0;
}

.similar-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

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

.similar-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.similar-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.similar-card:hover .similar-card-media img {
  transform: scale(1.06);
}

.similar-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
  background: var(--nav-dark);
  color: #fff;
}

.similar-card-body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.similar-card-loc {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.similar-card-name {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.similar-card-spec {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.similar-card-price {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.similar-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 1024px) {
  .similar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .similar-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
    margin-inline: -0.5rem;
    padding-inline: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .similar-card {
    flex: 0 0 min(300px, 88vw);
    scroll-snap-align: start;
    max-width: none;
  }
}
