.tutku-property-carousel {
  --tutku-carousel-desktop: 3;
  --tutku-carousel-tablet: 2;
  --tutku-carousel-mobile: 1;
  --tutku-carousel-gap: 24px;
  --tutku-card-divider-color: #eef3f6;
  --tutku-divider-inset: 10px;
  width: 100%;
}

.tutku-property-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.tutku-property-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.tutku-property-carousel__track {
  display: flex;
  align-items: stretch;
  gap: var(--tutku-carousel-gap);
}

.tutku-property-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - (var(--tutku-carousel-gap) * (var(--tutku-carousel-desktop) - 1))) / var(--tutku-carousel-desktop));
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--tutku-card-divider-color);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(4, 4, 29, 0.06);
}

.tutku-property-card__image-link,
.tutku-property-card__title a {
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-decoration: none;
}

.tutku-property-card__image {
  position: relative;
  --tutku-image-cover-color: transparent;
  --tutku-image-cover-color-1: var(--tutku-image-cover-color);
  --tutku-image-cover-color-2: transparent;
  --tutku-image-cover-stop-1: 0%;
  --tutku-image-cover-stop-2: 100%;
  --tutku-image-cover-angle: 180deg;
  --tutku-image-cover-radial-position: center center;
  --tutku-image-cover-background: var(--tutku-image-cover-color);
  --tutku-image-cover-opacity: 0.2 !important; /* normal görselde hafif karartma */
  aspect-ratio: 4 / 3 !important;
  overflow: hidden;
  background: #eef3f6;
}

/* Durum filigranı olan kartta (Satıldı/Kiralandı/…) beyaz yazı okunsun diye daha koyu */
.tutku-property-card__image:has(.tutku-status-watermark) {
  --tutku-image-cover-opacity: 0.5 !important;
}

.tutku-property-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--tutku-image-cover-background);
  opacity: var(--tutku-image-cover-opacity);
  pointer-events: none;
}

.tutku-property-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.tutku-property-card__image img,
.tutku-property-card__placeholder {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transition: transform 300ms ease, filter 300ms ease;
}

.tutku-property-carousel--effect-zoom .tutku-property-card:hover .tutku-property-card__image img,
.tutku-property-carousel--effect-shine_zoom .tutku-property-card:hover .tutku-property-card__image img {
  transform: none;
}

.tutku-property-carousel--effect-shine .tutku-property-card__image::after,
.tutku-property-carousel--effect-shine_zoom .tutku-property-card__image::after {
  left: -80%;
  right: auto;
  width: 55%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.12) 35%, rgba(255, 255, 255, 0.48) 50%, rgba(255, 255, 255, 0.12) 65%, transparent 100%);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.tutku-property-carousel--effect-shine .tutku-property-card:hover .tutku-property-card__image::after,
.tutku-property-carousel--effect-shine_zoom .tutku-property-card:hover .tutku-property-card__image::after {
  left: 130%;
}

.tutku-property-carousel--effect-lift .tutku-property-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tutku-property-carousel--effect-lift .tutku-property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(4, 4, 29, 0.12);
}

.tutku-property-carousel--effect-grayscale .tutku-property-card__image img {
  filter: grayscale(1);
}

.tutku-property-carousel--effect-grayscale .tutku-property-card:hover .tutku-property-card__image img {
  filter: grayscale(0);
}

.tutku-property-card__badges {
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  z-index: 2;
}

/* Standart etiket + vitrin etiketi → TEK minimalist görünüm:
   küçük font, beyaz border, üzerine gelince büyüyen (ilan sayfasıyla aynı kurgu). */
.tutku-property-card__badge,
.tutku-property-card__badge--promo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 0;
  padding: 3px 8px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 10px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  transition: transform .14s ease, filter .14s ease, font-weight .14s ease;
}

/* standart badge'in koyu zemini (vitrin kendi rengini inline alır) */
.tutku-property-card__badge {
  background: rgba(4, 4, 29, 0.78);
}

/* üzerine gelince büyüsün */
.tutku-property-card__badge:hover,
.tutku-property-card__badge--promo:hover {
  transform: scale(1.18);
  filter: brightness(1.08);
  font-weight: 400;
  position: relative;
  z-index: 5;
}

.tutku-property-card__badge--promo i {
  font-size: 9px;
  line-height: 1;
  opacity: 0.92;
}

.tutku-property-card__badge--promo[data-promo-href] {
  cursor: pointer;
}

.tutku-property-card__price {
  position: absolute;
  left: 3px;
  bottom: 3px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 6px;
  background: #d6251a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600 !important; /* Elementor global tipografi (secondary 800) override'ını geç */
  line-height: 1.1;
}

.tutku-property-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0;
  padding: 0;
}

.tutku-property-card__title {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  color: #04041d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tutku-property-card__meta-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 24px;
  padding: 10px;
}

.tutku-property-card__type-action,
.tutku-property-card__address {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: #6f7488;
  font-size: 13px;
  line-height: 1.35;
}

.tutku-property-card__type-action {
  flex: 1 1 auto;
}

.tutku-property-card__address {
  flex: 0 1 auto;
  justify-content: flex-end;
  text-align: right;
}

.tutku-property-card__type-action span,
.tutku-property-card__address span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tutku-property-card__type-action i,
.tutku-property-card__address i {
  color: #d6251a;
}

.tutku-property-card__excerpt {
  display: -webkit-box;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  color: #6f7488;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tutku-property-card__details {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  padding: 10px;
}

.tutku-property-card__detail {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  text-align: center;
}

.tutku-property-card__detail i {
  color: #d6251a;
  font-size: 15px;
  line-height: 1;
}

.tutku-property-card__detail span {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 100%;
  color: #04041d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.tutku-property-card__detail small {
  display: inline;
  min-width: 0;
  margin-top: 0;
  color: #6f7488;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.tutku-property-card__agent-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 10px;
}

.tutku-property-card__meta-row::before,
.tutku-property-card__details::before,
.tutku-property-card__agent-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--tutku-divider-inset);
  right: var(--tutku-divider-inset);
  height: 1px;
  background: var(--tutku-row-divider-color, var(--tutku-card-divider-color));
  pointer-events: none;
}

.tutku-property-card__agent {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  color: #04041d;
  text-decoration: none;
}

.tutku-property-card__agent:hover {
  color: #d6251a;
}

.tutku-property-card__agent-image {
  position: relative;
  display: inline-flex;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  overflow: visible;
  border-radius: 50%;
  background: #eef3f6;
}

.tutku-property-card__agent-image img,
.tutku-property-card__agent-image .avatar {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
}

.tutku-property-card__agent-image .tutku-agent-level-badge {
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  font-size: 8px;
}

.tutku-property-card__agent-name {
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tutku-property-card__actions {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
}

.tutku-property-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 30px;
  border: 1px solid var(--tutku-card-divider-color);
  border-radius: 7px;
  background: #ffffff;
  color: #6f7488;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.tutku-property-card__action:hover {
  background: #fff5f4;
  border-color: #d6251a;
  color: #d6251a;
}

.tutku-property-card__action--compare::before,
.tutku-property-card__action--compare::after {
  content: none !important;
  display: none !important;
}

.tutku-property-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.tutku-property-carousel__arrows {
  display: flex;
  gap: 8px;
}

.tutku-property-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 38px;
  border: 1px solid var(--tutku-card-divider-color);
  border-radius: 8px;
  background: #ffffff;
  color: #04041d;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.tutku-property-carousel__arrow:hover {
  background: #fff5f4;
  border-color: #d6251a;
  color: #d6251a;
}

.tutku-property-carousel__view-all {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 16px;
  border: 1px solid #04041d;
  border-radius: 6px;
  background: #04041d;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.tutku-property-carousel__view-all:hover {
  background: #d6251a;
  border-color: #d6251a;
  color: #ffffff;
}

.tutku-property-carousel-empty {
  padding: 18px;
  border: 1px solid #eef3f6;
  border-radius: 8px;
  color: #6f7488;
  background: #ffffff;
}

.tutku-property-filtered {
  --tutku-filtered-desktop: 3;
  --tutku-filtered-tablet: 2;
  --tutku-filtered-mobile: 1;
  --tutku-filtered-gap: 24px;
}

.tutku-property-filtered__filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid var(--tutku-card-divider-color);
  border-radius: 8px;
  background: #ffffff;
}

.tutku-property-filtered__field {
  min-width: 0;
}

.tutku-property-filtered__field label {
  display: block;
  margin-bottom: 6px;
  color: #04041d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.tutku-property-filtered__field select,
.tutku-property-filtered__field input {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--tutku-card-divider-color);
  border-radius: 7px;
  background: #ffffff;
  color: #04041d;
  font-size: 13px;
  line-height: 1.2;
}

.tutku-property-filtered__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tutku-property-filtered__submit,
.tutku-property-filtered__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid #04041d;
  border-radius: 7px;
  background: #04041d;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.tutku-property-filtered__reset {
  border-color: var(--tutku-card-divider-color);
  background: #ffffff;
  color: #04041d;
}

.tutku-property-filtered__submit:hover,
.tutku-property-filtered__reset:hover {
  border-color: #d6251a;
  background: #d6251a;
  color: #ffffff;
}

.tutku-property-filtered__grid {
  display: grid;
  grid-template-columns: repeat(var(--tutku-filtered-desktop), minmax(0, 1fr));
  gap: var(--tutku-filtered-gap);
  align-items: stretch;
}

@media (max-width: 1023.98px) {
  .tutku-property-card {
    flex-basis: calc((100% - (var(--tutku-carousel-gap) * (var(--tutku-carousel-tablet) - 1))) / var(--tutku-carousel-tablet));
  }

  .tutku-property-filtered__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tutku-property-filtered__grid {
    grid-template-columns: repeat(var(--tutku-filtered-tablet), minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .tutku-property-card {
    flex-basis: calc((100% - (var(--tutku-carousel-gap) * (var(--tutku-carousel-mobile) - 1))) / var(--tutku-carousel-mobile));
  }

  /* Mobil: tek satır — oklar sola, "Tüm ilanlar" sağa dayalı + kompakt (tam-genişlik değil) */
  .tutku-property-carousel__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .tutku-property-carousel__arrows {
    justify-content: flex-start;
  }

  .tutku-property-carousel__view-all {
    width: auto;
    flex: 0 0 auto;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    font-size: 12.5px;
  }

  .tutku-property-filtered__filters,
  .tutku-property-filtered__grid {
    grid-template-columns: repeat(var(--tutku-filtered-mobile), minmax(0, 1fr));
  }

  .tutku-property-filtered__actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* ===========================================================================
   İlan kartı aksiyonları: Favori aktif / Karşılaştır aktif / Paylaşım popup'ı
   =========================================================================== */

/* Favori (kalp) aktif durumu */
.tutku-property-card__action--favorite.is-active {
  background: #fff0ef;
  border-color: #d6251a;
  color: #d6251a;
}
.tutku-property-card__action--favorite.is-active:hover {
  background: #ffe3e1;
}
.tutku-property-card__action--favorite.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

/* Karşılaştır aktif durumu */
.tutku-property-card__action--compare.is-active {
  background: #eef3f6;
  border-color: #362c66;
  color: #362c66;
}

/* ---- Paylaşım popup'ı ---- */
.tutku-share-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 10, 30, 0.55);
  backdrop-filter: blur(2px);
}
.tutku-share-modal.is-open { display: flex; }

.tutku-share-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 540px;
  padding: 30px 30px 26px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(8, 10, 30, 0.30);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  animation: tutkuShareIn 180ms ease;
}
@keyframes tutkuShareIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.tutku-share-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f1f2f6;
  color: #50566b;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.tutku-share-modal__close:hover { background: #e5e7ef; color: #1c2030; }

.tutku-share-modal__title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  color: #1c2030;
}

.tutku-share-modal__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tutku-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 10px;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: filter 150ms ease, transform 120ms ease;
}
.tutku-share-btn span { white-space: nowrap; }
.tutku-share-btn i { font-size: 17px; }
.tutku-share-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.tutku-share-btn:focus { outline: 2px solid rgba(0,0,0,0.15); outline-offset: 2px; }

.tutku-share-btn--fb   { background: #1877f2; }
.tutku-share-btn--x    { background: #15171a; }
.tutku-share-btn--wa   { background: #1fae54; }
.tutku-share-btn--tg   { background: #28a8e9; }
.tutku-share-btn--in   { background: #0a66c2; }
.tutku-share-btn--pin  { background: #e60023; }
.tutku-share-btn--mail { background: #50566b; }
.tutku-share-btn--more { background: #362c66; }

.tutku-share-modal__copy { margin-top: 22px; }
.tutku-share-modal__copy-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #50566b;
}
.tutku-share-modal__copy-row {
  display: flex;
  gap: 10px;
}
.tutku-share-modal__url {
  flex: 1 1 auto;
  min-width: 0;
  height: auto;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #d8dbe5 !important;
  border-radius: 12px !important;
  background: #f7f8fb !important;
  color: #1c2030 !important;
  font-size: 14px !important;
  -webkit-text-fill-color: #1c2030 !important;
  box-shadow: none !important;
}
.tutku-share-modal__copy-btn {
  flex: 0 0 auto;
  padding: 0 22px;
  border: none;
  border-radius: 12px;
  background: #362c66;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 150ms ease;
}
.tutku-share-modal__copy-btn:hover { filter: brightness(1.1); }
.tutku-share-modal__copy-btn.is-copied { background: #1fae54; }

/* Mini toast */
.tutku-card-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100001;
  max-width: 90vw;
  padding: 12px 20px;
  border-radius: 10px;
  background: rgba(28, 32, 48, 0.96);
  color: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(8, 10, 30, 0.30);
  opacity: 0;
  transform: translateX(-50%) translateY(14px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}
.tutku-card-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 560px) {
  .tutku-share-modal__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tutku-share-modal__dialog { padding: 26px 18px 22px; }
  .tutku-share-btn span { font-size: 13px; }
}

/* Kart filtre linkleri (konum/işlem/emlak-tipi/özel alan değeri) — metin gibi durur,
   tıklanabilir; hover'da altı çizilir. Renk üst öğeden miras alınır. */
.tutku-property-card a.tutku-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color .12s ease;
}
.tutku-property-card a.tutku-card-link:hover,
.tutku-property-card a.tutku-card-link:focus {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #04041d;
}
.tutku-property-card .tutku-card-sep { opacity: .55; margin: 0 1px; }

/* ── KART METİNLERİ → Elementor "Accent" (Aksan) global yazı tipi ──
   Site Ayarları → Genel yazı tipleri → Accent değiştikçe kart meta satırı +
   detay kutularındaki yazılar otomatik güncellenir. Kit CSS tüm ön yüzde
   yüklendiğinden (--e-global-typography-accent-*) değişkenler tanımlı.
   .tutku-accent-font: aynı bağlamayı isteğe bağlı uygulamak için yeniden
   kullanılabilir yardımcı sınıf. */
.tutku-accent-font,
.tutku-property-card__meta-row,
.tutku-property-card__type-action,
.tutku-property-card__type-action span,
.tutku-property-card__address,
.tutku-property-card__address span,
.tutku-property-card__details,
.tutku-property-card__detail,
.tutku-property-card__detail span,
.tutku-property-card__detail small,
.tutku-property-card__detail a {
  font-family: var(--e-global-typography-accent-font-family), "Inter", sans-serif;
  font-weight: var(--e-global-typography-accent-font-weight);
  font-style: var(--e-global-typography-accent-font-style);
  font-size: var(--e-global-typography-accent-font-size);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  text-transform: var(--e-global-typography-accent-text-transform);
}

/* ── Tutku Taksonomi Listesi (arşiv grid) — sayım + sayfalama ── */
.tutku-property-archive__count {
  font-size: 14px;
  color: #5f6673;
  margin: 0 0 14px;
}
.tutku-property-archive__count strong { color: #04041d; }

.tutku-property-archive__pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.tutku-property-archive__pagination .page-numbers {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  align-items: center;
}
.tutku-property-archive__pagination .page-numbers li { margin: 0; }
.tutku-property-archive__pagination a.page-numbers,
.tutku-property-archive__pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  background: #fff;
  color: #2c3340;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .14s ease, border-color .14s ease, color .14s ease;
}
.tutku-property-archive__pagination a.page-numbers:hover {
  border-color: #04041d;
  background: #f3f5f9;
}
.tutku-property-archive__pagination span.page-numbers.current {
  background: #04041d;
  border-color: #04041d;
  color: #fff;
}
.tutku-property-archive__pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

/* ===== Arşiv filtre yapısı: üst araç çubuğu + sol sidebar + grid ===== */
/* Standart tutku tipografisi: tüm arşiv bölümü site global metin fontunu miras alsın
   (breadcrumb, toolbar, filtreler, liste — hepsi tek tip). */
.tutku-property-archive,
.tutku-property-archive button,
.tutku-property-archive input,
.tutku-property-archive select,
.tutku-property-archive a {
  font-family: var(--e-global-typography-text-font-family, "Inter", sans-serif);
}
.tutku-property-archive .tutku-archive__form { margin: 0; }

/* Üst araç çubuğu (gösterim stilleri) */
.tutku-archive__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px 16px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
}
.tutku-archive__toolbar .tutku-archive__count {
  margin: 0;
  font-size: 14px;
  color: #51516a;
}
.tutku-archive__toolbar-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.tutku-archive__tb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #51516a;
}
.tutku-archive__tb span { white-space: nowrap; }
.tutku-archive__tb select {
  padding: 7px 28px 7px 10px;
  border: 1px solid #d9d9e3;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  color: #04041d;
  cursor: pointer;
}

/* Gövde: sidebar + ana içerik */
.tutku-archive__body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.tutku-property-archive.tutku-archive--sb-right .tutku-archive__body {
  grid-template-columns: minmax(0, 1fr) 280px;
}
.tutku-property-archive.tutku-archive--sb-right .tutku-archive__sidebar { order: 2; }
.tutku-property-archive.tutku-archive--sb-none .tutku-archive__body {
  grid-template-columns: minmax(0, 1fr);
}

/* Sol sidebar filtreleri — minimalist, boşluksuz accordion listesi */
.tutku-archive__sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.tutku-archive__fgroup { display: flex; flex-direction: column; gap: 10px; }
.tutku-archive__fgroup h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #04041d;
}
.tutku-archive__range { display: flex; gap: 8px; }
.tutku-archive__range input,
.tutku-archive__fgroup > select {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #d9d9e3;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  color: #04041d;
}
.tutku-archive__checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
}
.tutku-archive__check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
/* Feature alt-öğe etiketleri: özel-alan dropdown option'larıyla aynı okunur stil.
   Yüksek özgüllük + !important → tema/Elementor'un soluk label kuralını ezer. */
.tutku-property-archive .tutku-archive__check,
.tutku-property-archive .tutku-archive__check span,
.tutku-property-archive .tutku-archive__checks label {
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: #04041d !important;
  opacity: 1 !important;
}
.tutku-archive__check input { margin: 0; flex: 0 0 auto; }
/* Görünür checkbox: gri border + işaretliyken koyu dolgu + beyaz tik (tema beyaz border'ını ezer) */
.tutku-property-archive .tutku-archive__check input[type="checkbox"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  border: 1.5px solid #9a9ab0 !important;
  border-radius: 4px !important;
  background: #fff !important;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}
.tutku-property-archive .tutku-archive__check input[type="checkbox"]:checked {
  background: #04041d !important;
  border-color: #04041d !important;
  background-image: none !important;   /* temanın kırmızı tik görselini kaldır */
}
/* Temanın ürettiği ikinci (kırmızı) tik pseudo'sunu bastır → tek tik kalsın */
.tutku-property-archive .tutku-archive__check input[type="checkbox"]::before {
  content: none !important;
  display: none !important;
}
.tutku-property-archive .tutku-archive__check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 1.5px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/* Özel alan seçenekleri (accordion açılınca hover'da görünür radyo listesi) */
.tutku-archive__opts { display: flex; flex-direction: column; gap: 7px; }
.tutku-property-archive .tutku-archive__opt {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px !important; font-weight: 400 !important;
  color: #2b2b40 !important; cursor: pointer; line-height: 1.35;
}
.tutku-property-archive .tutku-archive__opt span { color: #2b2b40 !important; }
.tutku-property-archive .tutku-archive__opt input[type="radio"] {
  -webkit-appearance: none !important; appearance: none !important;
  width: 16px !important; height: 16px !important; min-width: 16px;
  border: 1.5px solid #9a9ab0 !important; border-radius: 50% !important;
  background: #fff !important; cursor: pointer; position: relative; flex: 0 0 auto;
}
.tutku-property-archive .tutku-archive__opt input[type="radio"]:checked {
  border-color: var(--e-global-color-text, #081930) !important;
}
.tutku-property-archive .tutku-archive__opt input[type="radio"]:checked::after {
  content: ""; position: absolute; left: 3px; top: 3px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--e-global-color-text, #081930);
}

/* Minimalist collapsible accordion — boşluksuz, beyaz border ayırır, ince, accent font + ikon */
.tutku-archive__fgroup--features { gap: 0; }
.tutku-archive__acc {
  border: 1px solid #e6e6ee;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;                  /* kapalı accordion BEYAZ (gri panel üstünde) */
}
.tutku-archive__acc + .tutku-archive__acc { margin-top: 0; }   /* aralarında boşluk yok */
.tutku-archive__acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;                 /* ince ama bir tık ferah */
  font-family: var(--e-global-typography-accent-font-family), "Inter", sans-serif;
  font-size: 13px;                   /* tutku metin stili: 13px / 300 */
  font-weight: 300;
  line-height: 1.35;
  color: #04041d;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.tutku-archive__acc-title {
  display: inline-flex;
  align-items: center;
  gap: 7px;                          /* ikon ile etiket arası küçük boşluk */
  min-width: 0;
}
.tutku-archive__acc-title > i {
  flex: 0 0 auto;
  width: 14px;
  text-align: center;
  font-size: .92em;
  color: #8a8aa0;
}
.tutku-archive__acc-title > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tutku-archive__acc-head::-webkit-details-marker { display: none; }
.tutku-archive__acc-head::after {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #b3b3c0;
  border-bottom: 1.5px solid #b3b3c0;
  transform: rotate(45deg);
  transition: transform .18s ease;
  margin-right: 2px;
}
.tutku-archive__acc[open] > .tutku-archive__acc-head::after { transform: rotate(-135deg); border-color: var(--e-global-color-text, #081930); }
/* Açık accordion başlığı: tutku LIGHT BG zemin + tutku METİN rengi yazı/ikon */
.tutku-archive__acc[open] > .tutku-archive__acc-head { background: var(--e-global-color-2bbc8b0, #eef3f6); color: var(--e-global-color-text, #081930); }
.tutku-archive__acc[open] > .tutku-archive__acc-head .tutku-archive__acc-title > i { color: var(--e-global-color-text, #081930); }
.tutku-archive__acc[open] > .tutku-archive__acc-head .tutku-archive__acc-value { color: var(--e-global-color-text, #081930); }
/* Yeniden kullanılabilir: tutku light bg */
.tutku-light-bg { background-color: var(--e-global-color-2bbc8b0, #eef3f6) !important; }
.tutku-archive__acc[open] { background: #fff; }
/* Yeniden kullanılabilir gölge: sağ+alta yumuşak/dağınık, solda yok (secondary/Metin tonunda) */
.tutku-gri-shadow {
  box-shadow: 6px 12px 32px -8px rgba(8, 25, 48, 0.28);
  box-shadow: 6px 12px 32px -8px color-mix(in srgb, var(--e-global-color-secondary, #081930) 28%, transparent);
}
/* Açık/seçili accordion: sağ+alt yumuşak gölge (sol kenarda gölge yok) */
.tutku-archive__panel-scroll .tutku-archive__acc[open] {
  position: relative;
  z-index: 1;
  box-shadow: 6px 12px 32px -8px rgba(8, 25, 48, 0.28);
  box-shadow: 6px 12px 32px -8px color-mix(in srgb, var(--e-global-color-secondary, #081930) 28%, transparent);
}
.tutku-archive__acc .tutku-archive__checks {
  max-height: 200px;
  padding: 8px 10px;
  background: #fff;
}
.tutku-archive__acc-body {
  padding: 8px 10px 10px;
  background: #fff;
}
.tutku-archive__acc-body .tutku-archive__range { display: flex; gap: 8px; }
.tutku-archive__acc-body .tutku-archive__range input,
.tutku-archive__acc-body select {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #d9d9e3;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  color: #04041d;
}
/* Donanım/Olanaklar alt-başlığı → minimalist, soluk küçük etiket */
.tutku-archive__fgroup--features { margin-top: 0; }
.tutku-archive__fgroup--features > h4 {
  margin: 10px 0 3px;
  padding: 0 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #b0b0be;
}
.tutku-archive__factions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 2px 2px;
  border-top: 1px solid #f0f0f4;
}
.tutku-archive__apply {
  flex: 1 1 auto;
  padding: 8px 14px;                 /* daha ince/minimalist */
  border: 1px solid var(--e-global-color-5446116, #362c66) !important;
  border-radius: 8px !important;
  background: var(--e-global-color-2bbc8b0, #eef3f6) !important;   /* tutku light bg */
  color: var(--e-global-color-5446116, #362c66) !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
/* hover: koyu mor bg + beyaz yazı (dolu); radius/şekil SABİT (tema buton hover'ını ez) */
.tutku-archive__apply:hover,
.tutku-archive__apply:focus,
.tutku-archive__apply:active {
  background: var(--e-global-color-5446116, #362c66) !important;
  border-color: var(--e-global-color-5446116, #362c66) !important;
  color: #fff !important;
  border-radius: 8px !important;
  transform: none !important;
  box-shadow: none !important;
}
/* ── Yeniden kullanılabilir tutku renk/yardımcı sınıfları ── */
.tutku-dark-border { border: 1px solid var(--e-global-color-secondary, #081930) !important; }
.tutku-primary { background-color: var(--e-global-color-5446116, #362c66) !important; color: #fff !important; }
.tutku-red { background-color: var(--e-global-color-primary, #d6251a) !important; color: #fff !important; }
.tutku-dark-background { background-color: var(--e-global-color-secondary, #081930) !important; color: #fff !important; }

/* ── Yeniden kullanılabilir tutku TİPOGRAFİ sınıfları ──
   Her yerde tek tip metin: custom renk/boyut/ağırlık yerine bu sınıflar.
   Font ailesi .tutku-property-archive base'inden (site global metin fontu) miras alınır. */
.tutku-text-color  { color: var(--e-global-color-text, #081930) !important; -webkit-text-fill-color: var(--e-global-color-text, #081930) !important; }
.tutku-text-red    { color: var(--e-global-color-primary, #d6251a) !important; -webkit-text-fill-color: var(--e-global-color-primary, #d6251a) !important; }
.tutku-text-muted  { color: #51516a !important; -webkit-text-fill-color: #51516a !important; }
.tutku-fw-regular  { font-weight: var(--e-global-typography-text-font-weight, 400) !important; }
.tutku-fw-normal   { font-weight: 400 !important; }   /* sabit 400 (global light olabilir) */
.tutku-fw-bold     { font-weight: 600 !important; }
.tutku-fw-bolder   { font-weight: 700 !important; }
.tutku-fs-md       { font-size: 14.5px !important; line-height: 1.3 !important; }
.tutku-fs-sm       { font-size: 13.5px !important; line-height: 1.35 !important; }
.tutku-fs-xs       { font-size: 12px !important; line-height: 1.3 !important; }
.tutku-uppercase   { text-transform: uppercase !important; letter-spacing: .02em !important; }
.tutku-no-underline { text-decoration: none !important; }

.tutku-archive__reset {
  font-size: 13px;
  color: #8a8aa0;
  text-decoration: none;
}
.tutku-archive__reset:hover { color: #04041d; text-decoration: underline; }
.tutku-archive__main { min-width: 0; }

@media (max-width: 1024px) {
  .tutku-archive__body,
  .tutku-property-archive.tutku-archive--sb-right .tutku-archive__body {
    grid-template-columns: 1fr;
  }
  .tutku-archive__sidebar { position: static; }
  .tutku-property-archive.tutku-archive--sb-right .tutku-archive__sidebar { order: 0; }
}

/* ===== Üst yatay breadcrumb (sahibinden tarzı: tıkla → dropdown) ===== */
.tutku-archive__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 2px;
  margin: 0 0 18px;
  padding: 10px 14px;
  background: #f6f6f9;
  border: 1px solid #ececf1;
  border-radius: 12px;
}
.tutku-bc { position: relative; }
.tutku-bc::after {
  content: "›";
  margin: 0 4px 0 6px;
  color: #b3b3c0;
  font-size: 14px;
}
.tutku-bc:last-child::after { content: ""; margin: 0; }
.tutku-bc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  /* tutku metin tipografisi (boyut + ağırlık) */
  font-family: var(--e-global-typography-text-font-family, "Inter", sans-serif);
  font-size: var(--e-global-typography-text-font-size, 15px);
  font-weight: var(--e-global-typography-text-font-weight, 400);
  line-height: 1.25;
  color: #51516a;
  transition: background .14s ease, border-color .14s ease;
}
.tutku-bc-toggle:hover { background: #fff; border-color: #e2e2ea; }
.tutku-bc.is-open .tutku-bc-toggle { background: #fff; border-color: #d9d9e3; }
.tutku-bc.is-selected .tutku-bc-toggle { color: var(--e-global-color-text, #081930); }
.tutku-bc-label { color: #8a8aa0; }
.tutku-bc.is-selected .tutku-bc-label { display: none; }
.tutku-bc-val { font-weight: 600; color: var(--e-global-color-text, #081930); }
.tutku-bc-caret {
  width: 6px; height: 6px;
  border-right: 1.5px solid #9a9ab0;
  border-bottom: 1.5px solid #9a9ab0;
  transform: rotate(45deg);
  margin-left: 2px;
  transition: transform .16s ease;
}
.tutku-bc.is-open .tutku-bc-caret { transform: rotate(-135deg); }
.tutku-bc-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 4px);
  left: 0;
  min-width: 180px;
  max-height: 320px;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  padding: 6px;
  background: #fff;
  border: 1px solid #e2e2ea;
  border-radius: 10px;
  box-shadow: 0 10px 32px rgba(4, 4, 29, 0.14);
}
.tutku-bc.is-open .tutku-bc-menu { display: flex; }
.tutku-bc-opt {
  display: block;
  padding: 7px 10px;
  border-radius: 7px;
  font-family: var(--e-global-typography-text-font-family, "Inter", sans-serif);
  font-size: var(--e-global-typography-text-font-size, 15px) !important;
  font-weight: var(--e-global-typography-text-font-weight, 400);
  color: #2b2b40 !important;                 /* tema a-link kırmızısını ez */
  -webkit-text-fill-color: #2b2b40;
  text-decoration: none;
  white-space: nowrap;
}
/* aktif opsiyon: "Seçimi uygula" butonu ile aynı bg (tutku-primary) */
.tutku-bc-opt.is-active { background: var(--e-global-color-5446116, #362c66); color: #fff !important; -webkit-text-fill-color: #fff !important; font-weight: 600; }
/* hover: bg tutku LIGHT BG, font tutku Metin rengi (kırmızı değil), boyut değişmez */
.tutku-bc-opt:hover,
.tutku-bc-opt.is-active:hover {
  background: var(--e-global-color-2bbc8b0, #eef3f6) !important;
  color: var(--e-global-color-text, #081930) !important;
  -webkit-text-fill-color: var(--e-global-color-text, #081930) !important;
}
@media (max-width: 1024px) {
  .tutku-archive__breadcrumb { gap: 2px; padding: 8px 10px; }
  .tutku-bc-toggle { padding: 5px 8px; font-size: 12px; }
}

/* ===== Sidebar kapsayıcılar: gri fiyat/m² kutusu + Özellikler/Donanım panelleri ===== */
.tutku-archive__sidebar { gap: 16px; }
/* Fiyat + m² — gri zemin, beyaz inputlar öne çıkar */
.tutku-archive__rangebox {
  position: relative;            /* sağ-üst "Seçimleri temizle ✕" için referans */
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  background: #f4f4f8;
  border-radius: 12px;
}
.tutku-archive__rangerow { display: flex; flex-direction: column; gap: 6px; }
.tutku-archive__rangelabel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--e-global-typography-accent-font-family), "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #04041d;
}
.tutku-archive__rangelabel > i { width: 14px; text-align: center; color: #8a8aa0; font-size: .92em; }
.tutku-archive__range { display: flex; gap: 8px; }
.tutku-archive__range input {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #dcdce4;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  color: #04041d;
  box-shadow: 0 1px 2px rgba(4, 4, 29, 0.05);
}
.tutku-archive__range input:focus { outline: none; border-color: #04041d; }

/* ── Çift tutamaçlı kaydırmalı aralık seçici (range slider) ── */
.tutku-rangeslider { padding: 2px 8px 0; }
.tutku-rangeslider__values { display: flex; justify-content: space-between; margin-bottom: 10px; }
.tutku-rangeslider__track { position: relative; height: 4px; border-radius: 4px; background: #dcdce4; margin: 4px 0 6px; }
.tutku-rangeslider__fill {
  position: absolute; top: 0; height: 100%; border-radius: 4px;
  background: var(--e-global-color-5446116, #362c66);   /* dolu kısım = tutku mor */
  z-index: 1;
}
/* İki range input'u track'in üstüne bindir; sadece tutamaçlar tıklanabilir.
   height:0 hilesi → input ray'in tam merkezine bir çizgi olur; thumb margin-top
   ile (=-yükseklik/2) bu çizgiye kesin ortalanır (WebKit'te güvenilir yöntem). */
.tutku-rangeslider__track input[type="range"] {
  position: absolute; top: 50%; left: 0; transform: translateY(-50%);
  width: 100%; height: 0; margin: 0; padding: 0;
  -webkit-appearance: none; appearance: none;
  background: transparent; pointer-events: none;
}
.tutku-rangeslider__track input[type="range"]:focus { outline: none; }
.tutku-rangeslider__track input[type="range"]::-webkit-slider-runnable-track { -webkit-appearance: none; height: 0; background: transparent; border: none; }
.tutku-rangeslider__track input[type="range"]::-moz-range-track { height: 0; background: transparent; border: none; }
/* Tutamaç ortak görünüm */
.tutku-rangeslider__track input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; pointer-events: auto;
  border-radius: 50%; background: #fff;
  border: 2px solid var(--e-global-color-5446116, #362c66);
  box-shadow: 0 1px 4px rgba(4, 4, 29, 0.25); cursor: pointer;
}
.tutku-rangeslider__track input[type="range"]::-moz-range-thumb {
  pointer-events: auto; border-radius: 50%; background: #fff;
  border: 2px solid var(--e-global-color-5446116, #362c66);
  box-shadow: 0 1px 4px rgba(4, 4, 29, 0.25); cursor: pointer;
}
/* Sol (lower) küçük tutamaç — çizgiye ortalı (margin-top = -yükseklik/2) */
.tutku-rs-lower::-webkit-slider-thumb { width: 13px; height: 13px; margin-top: -6.5px; }
.tutku-rs-lower::-moz-range-thumb { width: 13px; height: 13px; }
/* Sağ (upper) büyük tutamaç */
.tutku-rs-upper::-webkit-slider-thumb { width: 18px; height: 18px; margin-top: -9px; }
.tutku-rs-upper::-moz-range-thumb { width: 18px; height: 18px; }
/* Sabit sıralama: fill(1) < lower(2) < upper(3).
   Çizgi her zaman tutamaçların ARKASINDA; sol tutamaç sağın üstüne binmez. */
.tutku-rs-lower { z-index: 2; }
.tutku-rs-upper { z-index: 3; }

/* Özellikler / Donanım panelleri */
.tutku-archive__panel {
  position: relative;              /* sağ-üst "Seçimleri temizle ✕" için referans */
  display: flex;
  flex-direction: column;
  padding: 14px;
  background: #f4f4f8;              /* ana container GRİ (rangebox ile aynı) */
  border: 0;
  border-radius: 12px;
}
.tutku-archive__panel-title {
  margin: 0 0 8px;
  padding: 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #8a8aa0;
}
.tutku-archive__search {
  width: 100%;
  margin-bottom: 8px;
  padding: 8px 30px 8px 12px;                    /* sağda büyüteç ikonu için yer */
  border: 0 !important;                          /* yalnız alt border */
  border-bottom: 1.5px solid #9a9ab0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: #fff !important;             /* normal: beyaz */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%239a9ab0' stroke-width='1.6' stroke-linecap='round'%3E%3Ccircle cx='7' cy='7' r='4.5'/%3E%3Cline x1='10.6' y1='10.6' x2='14' y2='14'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 15px 15px !important;
  color: var(--e-global-color-text, #081930) !important;
  -webkit-text-fill-color: var(--e-global-color-text, #081930) !important;
  font-size: 13px;
}
/* hover: tutku light bg */
.tutku-archive__search:hover {
  background-color: var(--e-global-color-2bbc8b0, #eef3f6) !important;
}
.tutku-archive__search:focus { outline: none; border-bottom-color: var(--e-global-color-text, #081930); }
/* Bölüm bazlı "Seçimi uygula" butonu */
.tutku-archive__apply--section {
  width: 100%;
  margin-top: 12px;
  flex: none;
}
.tutku-archive__rangebox .tutku-archive__apply--section { margin-top: 4px; }
.tutku-archive__factions { justify-content: center; }
.tutku-archive__search::placeholder { color: #a8a8b8; }
/* ~10 öğe görünür, kalanı iç-scroll */
.tutku-archive__panel-scroll {
  display: block;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 5px;
}
.tutku-archive__panel-scroll .tutku-archive__acc { display: block; }
.tutku-archive__panel-scroll .tutku-archive__acc + .tutku-archive__acc { margin-top: 5px; }
.tutku-archive__panel-scroll::-webkit-scrollbar { width: 8px; }
.tutku-archive__panel-scroll::-webkit-scrollbar-thumb { background: #d9d9e3; border-radius: 8px; }
.tutku-archive__panel-scroll::-webkit-scrollbar-track { background: transparent; }

/* Kutu içi "Seçimleri temizle ✕" (sağ üst, minimalist) */
.tutku-archive__rangebox, .tutku-archive__panel { position: relative; }
.tutku-archive__clear {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  line-height: 1;
  color: #9a9ab0;
  text-decoration: none !important;
  cursor: pointer;
}
.tutku-archive__clear i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--e-global-color-primary, #d6251a);  /* kırmızı yuvarlak */
  color: #fff;                                          /* beyaz ✕ */
  font-size: 8px;
  line-height: 1;
}
.tutku-archive__clear:hover { color: var(--e-global-color-primary, #d6251a); }
.tutku-archive__clear:hover i { background: #b51f15; }  /* hover'da hafif koyu kırmızı */

/* ===== Toolbar: sol (sayaç + sıralama), sağ (sayfa + ikonlu sütun) ===== */
.tutku-archive__toolbar-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; flex: 1 1 auto; min-width: 0; }
/* Aktif filtre etiketleri (chip) — üstte alan adı, altta değer + ✕ (sahibinden tarzı) */
.tutku-archive__chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.tutku-chip {
  display: inline-flex; flex-direction: column; line-height: 1.15;
  padding: 4px 9px; border: 1px solid #e2e2ea; border-radius: 8px; background: #fff;
}
.tutku-chip__label { font-size: 10px; color: #8a8aa0; text-transform: uppercase; letter-spacing: .02em; }
.tutku-chip__val { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--e-global-color-text, #081930); }
.tutku-chip__x { display: inline-flex; align-items: center; color: #9a9ab0; font-size: 9px; text-decoration: none !important; }
.tutku-chip__x:hover { color: var(--e-global-color-primary, #d6251a); }
.tutku-archive__chips-clear { font-size: 12px; color: #8a8aa0; text-decoration: none; white-space: nowrap; }
.tutku-archive__chips-clear:hover { color: var(--e-global-color-primary, #d6251a); text-decoration: underline; }
.tutku-archive__sortselect {
  padding: 7px 30px 7px 12px;
  border: 1px solid #d9d9e3;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  color: #04041d;
  cursor: pointer;
}
.tutku-archive__sortselect:focus { outline: none; border-color: #9a9ab0; }
/* Sütun ikon-dropdown (breadcrumb .tutku-bc altyapısını kullanır) */
.tutku-cols .tutku-bc-toggle.tutku-cols-toggle { gap: 8px; padding: 6px 9px; color: #51516a; }
.tutku-cols-toggle svg { display: block; }
.tutku-cols-menu { left: auto !important; right: 0; min-width: 0; }
.tutku-cols-opt { display: flex !important; align-items: center; gap: 9px; }
.tutku-cols-opt svg { flex: 0 0 auto; }
.tutku-cols-opt span { font-weight: 600; }

/* Sıralama + Sayfa-başına dropdown'ları — native <select> yerine .tutku-bc
   (mavi OS-seçim rengi yerine hover = tutku Light BG, font = tutku Metin rengi) */
.tutku-sort .tutku-bc-toggle,
.tutku-pp .tutku-bc-toggle,
.tutku-cols .tutku-bc-toggle {
  border: 1px solid #d9d9e3;
  background: #fff;
  color: var(--e-global-color-text, #081930);
  font-size: 13px;
  padding: 7px 11px;
}
/* hover/open'da border DEĞİŞMESİN — normal ile aynı (kullanıcı isteği) */
.tutku-sort .tutku-bc-toggle:hover,
.tutku-pp .tutku-bc-toggle:hover,
.tutku-cols .tutku-bc-toggle:hover,
.tutku-sort.is-open .tutku-bc-toggle,
.tutku-pp.is-open .tutku-bc-toggle,
.tutku-cols.is-open .tutku-bc-toggle { border-color: #d9d9e3; background: #fff; }
/* sıralama ikonu */
.tutku-sort-toggle svg { display: block; flex: 0 0 auto; color: #51516a; }
.tutku-sort .tutku-bc-toggle > span,
.tutku-pp .tutku-bc-toggle > span { font-weight: 600; }
.tutku-sort-menu { left: auto; right: 0; min-width: 170px; }
.tutku-pp-menu { left: auto; right: 0; min-width: 0; }
.tutku-pp .tutku-bc-toggle > span,
.tutku-pp-menu .tutku-bc-opt { text-align: center; }

/* ── Liste görünümü (sahibinden tarzı tablo) ─────────────────────────── */
.tutku-archive__list { display: flex; flex-direction: column; width: 100%; border: 1px solid #e6e6ee; border-radius: 10px; overflow: hidden; background: #fff; }
/* NOT: metin rengi/boyutu/ağırlığı burada DEĞİL — HTML'de tutku tipografi
   sınıfları (tutku-text-color, tutku-fs, tutku-fw …) ile veriliyor.
   Bu bloklar yalnız YERLEŞİM (grid/padding/border/thumb). */
/* Yüksek özgüllük (.tutku-property-archive ön eki) — tema/Elementor 'a' kurallarının
   display'i ezmesini engeller; grid'i garanti eder. */
.tutku-property-archive .tutku-archive__list .tutku-list-row {
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr) 88px 130px 110px minmax(120px, 1.1fr) !important;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid #ececf3;
}
.tutku-list-row:last-child { border-bottom: 0; }
.tutku-list-head { background: var(--e-global-color-2bbc8b0, #eef3f6); }
.tutku-list-item { transition: background .15s ease; }
.tutku-list-item:hover { background: var(--e-global-color-2bbc8b0, #eef3f6); }
.tutku-list-c-thumb { position: relative; width: 96px; height: 72px; border-radius: 8px; overflow: hidden; background: #f0f0f5; display: flex; align-items: center; justify-content: center; }
.tutku-list-c-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tutku-list-c-thumb > i { color: #c2c2d4; font-size: 22px; }
.tutku-list-head .tutku-list-c-thumb { background: transparent; height: auto; }
.tutku-list-c-title { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.tutku-list-c-title strong { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 768px) {
    .tutku-list-head { display: none; }
    .tutku-property-archive .tutku-archive__list .tutku-list-row { grid-template-columns: 84px minmax(0, 1fr) !important; grid-auto-rows: auto; row-gap: 4px; padding: 12px; }
    .tutku-list-c-thumb { grid-row: 1 / span 6; width: 84px; height: 84px; }
    .tutku-list-item [data-label]::before { content: attr(data-label) ": "; }
}
