/* ============================================================
   assets/css/listing.css — Araçlar listesi + İlan detay
   Sadece bu iki sayfada yüklenir ($pageHeadExtra ile).
   Sabit renk YOK — hepsi theme.php değişkenleri.
   ============================================================ */

/* ─── SAYFA BAŞLIĞI + BREADCRUMB ───────────────────────── */
.page-head { background: var(--surface); border-bottom: 1px solid var(--border); padding: 30px 0 24px; }
.page-head h1 { font-size: clamp(1.375rem, 2.4vw, 1.75rem); font-weight: 800; letter-spacing: -.5px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 8px;
  font-size: 0.75rem; color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 0.5rem; opacity: .5; }
.breadcrumb span { color: var(--text-soft); }

/* ─── ÜST ÇUBUK ────────────────────────────────────────── */
.list-toolbar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; margin: 22px 0 18px; }
.list-count { font-size: 0.875rem; color: var(--text-muted); }
.list-count strong { color: var(--text); font-weight: 700; }

.type-tabs { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.type-tabs a { padding: 10px 34px; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--text-muted); }
.type-tabs a:hover { color: var(--text); }
.type-tabs a.active { background: var(--accent); color: var(--on-accent); }

.toolbar-right { display: flex; align-items: center; gap: 10px; min-width: 0; }
.toolbar-label { font-size: 0.8125rem; color: var(--text-muted); white-space: nowrap; }
.select-sm { padding: 9px 12px; width: auto; min-width: 150px; }
.view-toggle { display: flex; gap: 6px; }
.view-toggle a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: var(--radius-sm);
  border: 1px solid var(--border); color: var(--text-muted); }
.view-toggle a.active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

@media (max-width: 1000px) {
  .list-toolbar { justify-content: flex-start; }
  .list-count { flex: 1 1 100%; }
  .toolbar-right { margin-left: auto; }
  .toolbar-label { display: none; }
}
@media (max-width: 860px) {
  /* Mağaza sayfasındaki düzenin aynısı: sekmeler tam satır,
     altında [Filtrele] [Sırala] [Görünüm] tek sıra. */
  .list-toolbar { gap: 10px; padding: 10px; }
  .list-count { font-size: 0.8125rem; }
  .type-tabs { flex: 1 1 100%; }
  .type-tabs a { flex: 1; text-align: center; padding: 11px 0; font-size: 0.75rem; }
  .toolbar-right { flex: 1 1 100%; margin-left: 0; gap: 8px; min-width: 0; }
  .toolbar-right .select-sm { flex: 1 1 auto; min-width: 0; padding: 10px; }
  .fopen-btn, .view-toggle { flex-shrink: 0; }
  .view-toggle a { width: 36px; height: 36px; }
}

/* ─── DÜZEN ────────────────────────────────────────────── */
.list-layout { display: grid; grid-template-columns: 290px 1fr; gap: 20px; align-items: start; padding-bottom: 50px; }
@media (max-width: 1000px) { .list-layout { grid-template-columns: 1fr; } }

/* ─── FİLTRE PANELİ ────────────────────────────────────── */
.filter-panel { position: sticky; top: calc(var(--nav-h) + 14px); }
.filter-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.filter-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.filter-head h2 { font-size: 0.9375rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.filter-clear { font-size: 0.75rem; color: var(--accent); display: inline-flex; align-items: center; gap: 5px; }

.input-icon { position: relative; }
.input-icon > i { position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  font-size: 0.8125rem; color: var(--text-muted); pointer-events: none; z-index: 1; }
.input-icon .select { padding-left: 38px; }

.range-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 6px; }
.range-input { position: relative; }
.range-input .input { padding-right: 34px; }
.range-input .input::-webkit-outer-spin-button,
.range-input .input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.range-input .input { -moz-appearance: textfield; }
.range-unit { position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
  font-size: 0.75rem; color: var(--text-muted); pointer-events: none; }
.range-sep { font-size: 0.5625rem; color: var(--text-muted); }

/* Aç/kapa anahtarı */
.switch-row { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 0; font-size: 0.8125rem; cursor: pointer; position: relative; }
/* position:relative ŞART — gizli checkbox'ın kapsayıcı bloğu bu satır olur.
   Aksi halde konumlandırılmış üst ata (filtre çekmecesi) baz alınıp,
   toggle'a dokununca çekmece odaklı input'a kaymak için yukarı zıplıyordu. */
.switch-row input { position: absolute; opacity: 0; pointer-events: none; }
.switch { width: 38px; height: 21px; border-radius: 99px; background: var(--surface-2);
  border: 1px solid var(--border-strong); position: relative; flex-shrink: 0; transition: background .18s; }
.switch::after { content: ''; position: absolute; top: 2px; left: 2px; width: 15px; height: 15px;
  border-radius: 50%; background: var(--text-muted); transition: transform .18s, background .18s; }
.switch-row input:checked ~ .switch { background: var(--accent); border-color: var(--accent); }
.switch-row input:checked ~ .switch::after { transform: translateX(17px); background: var(--on-accent); }
.switch-row input:focus-visible ~ .switch { outline: 2px solid var(--accent); outline-offset: 2px; }

.filter-form .btn-block { margin-top: 14px; }

/* ─── SONUÇ IZGARASI ───────────────────────────────────── */
.list-results { min-width: 0; }
.car-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.car-list { display: flex; flex-direction: column; gap: 14px; }

/* Kart alt CTA butonu */
.car-card-cta { display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-top: 12px; padding: 10px 14px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--text-soft); }
.car-card-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

/* Liste görünümü: yatay kart */
.car-card-list { flex-direction: row; }
.car-card-list .car-card-media { width: 280px; flex-shrink: 0; aspect-ratio: 4 / 3; }
.car-card-list .car-card-body { padding: 18px; }
.car-card-list .car-card-cta { max-width: 220px; }


/* ─── DETAY DÜZENİ ─────────────────────────────────────── */
.detail-wrap { padding-top: 18px; padding-bottom: 50px; }
.detail-crumb { margin-bottom: 16px; }
.detail-layout { display: grid; grid-template-columns: 1fr 390px; gap: 20px; align-items: start; }
@media (max-width: 1100px) { .detail-layout { grid-template-columns: 1fr; } }
.detail-main { min-width: 0; }

/* ─── GALERİ ───────────────────────────────────────────── */
.gallery-stage { position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--border); aspect-ratio: 16 / 10; }
.gallery-stage > img { width: 100%; height: 100%; object-fit: cover; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid var(--border-strong); background: var(--overlay); backdrop-filter: blur(6px);
  color: var(--text); cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.gallery-nav:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.gallery-nav.prev { left: 14px; }
.gallery-nav.next { right: 14px; }
.gallery-counter { position: absolute; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: var(--radius-sm); background: var(--overlay); backdrop-filter: blur(6px);
  font-size: 0.75rem; font-weight: 600; }

.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.thumb { flex: 0 0 118px; aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid transparent; background: none; padding: 0; cursor: pointer; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--accent); }

/* ─── SEKMELER ─────────────────────────────────────────── */
.tabs-card { margin-top: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.tabs-head { display: flex; border-bottom: 1px solid var(--border); }
.tab { padding: 16px 26px; background: none; border: none; border-bottom: 2px solid transparent; white-space: nowrap;
  font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--text-muted); cursor: pointer; }
.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-panel { display: none; padding: 22px; }
.tab-panel.active { display: block; }
.muted { color: var(--text-muted); font-size: 0.875rem; }

.spec-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0 26px; }
.spec-list li { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 0.8125rem; }
.spec-list li:last-child { border-bottom: none; }
.spec-key { display: inline-flex; align-items: center; gap: 9px; color: var(--text-muted);
  font-size: 0.6875rem; letter-spacing: .4px; }
.spec-key i { width: 15px; text-align: center; }
.spec-val { font-weight: 600; text-align: right; }
@media (max-width: 900px) and (min-width: 861px) { .spec-cols { grid-template-columns: 1fr; gap: 0; } }

.desc-body { font-size: 0.875rem; line-height: 1.8; color: var(--text-soft); }
/* Harita kutusu. OSM'in kendi katkı çubuğu haritanın İÇİNDE, sağ altta
   kalır — eskiden iframe'i uzatıp kırpıyor, katkıyı dışarı ayrı satır
   olarak yazıyordum; hem dağınıktı hem gereksizdi. */
.map-box { position: relative; height: 300px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); }
.map-frame { width: 100%; height: 100%; border: 0; display: block; }

/* Harita yüklenene kadar görünen katman */
.map-load { position: absolute; inset: 0; display: grid; place-items: center; gap: 10px;
  align-content: center; color: var(--text-muted); font-size: 0.8125rem; }
.map-load i { font-size: 1.5rem; color: var(--accent); }
.map-box.ready .map-load { display: none; }

/* Sağ altta yol tarifi */
.map-go { position: absolute; right: 12px; bottom: 30px; z-index: 2;   /* OSM katkı çubuğunun üstünde */
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-radius: var(--radius-sm); background: var(--accent); color: var(--on-accent);
  font-size: 0.8125rem; font-weight: 700; box-shadow: 0 4px 14px rgba(0,0,0,.3); }
.map-go:hover { filter: brightness(1.08); }

.loc-text { margin-top: 12px; font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.loc-text i { color: var(--accent); }

/* ─── SAĞ KOLON ────────────────────────────────────────── */
.detail-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: calc(var(--nav-h) + 14px); }
@media (max-width: 1100px) { .detail-side { position: static; } }
.side-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.side-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.side-title { font-size: 0.875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }

.detail-badges { display: flex; gap: 7px; margin-bottom: 12px; }
.detail-title { font-size: 1.5625rem; font-weight: 800; letter-spacing: -.5px; line-height: 1.2; }
.detail-meta { font-size: 0.8125rem; color: var(--text-muted); margin-top: 7px; }
.detail-price { font-size: 2rem; font-weight: 900; color: var(--accent); letter-spacing: -1px; margin: 14px 0 16px; }
.detail-price small { font-size: 0.9375rem; font-weight: 500; color: var(--text-muted); }

.credit-btn { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 16px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 600; }
.credit-btn:hover { border-color: var(--accent); color: var(--accent); }
.credit-btn span { display: inline-flex; align-items: center; gap: 10px; }

.detail-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 16px;
  border-top: 1px solid var(--border); padding-top: 16px; }
.detail-stats li { text-align: center; border-right: 1px solid var(--border); padding: 0 6px; }
.detail-stats li:last-child { border-right: none; }
.detail-stats i { font-size: 0.8125rem; color: var(--text-muted); display: block; margin-bottom: 6px; }
.detail-stats strong { font-size: 0.8125rem; font-weight: 700; display: block; }
.detail-stats small { font-size: 0.625rem; color: var(--text-muted); }

/* Satış danışmanı */
.seller { display: flex; gap: 14px; align-items: flex-start; }
.seller-avatar { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--border); }
.seller-info { min-width: 0; }
.seller-name { font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.verified { color: var(--accent); font-size: 0.8125rem; }
.seller-line { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; color: var(--text-muted);
  padding: 3px 0; word-break: break-all; }
.seller-line:hover { color: var(--accent); }
.seller-line i { width: 14px; flex-shrink: 0; }

.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { filter: brightness(1.08); }

/* Benzer ilanlar */
.mini-card { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); position: relative; }
.mini-card:last-child { border-bottom: none; padding-bottom: 0; }
.mini-card > a { flex: 0 0 108px; }
.mini-card img { width: 108px; height: 78px; object-fit: cover; border-radius: var(--radius-sm); }
.mini-body { min-width: 0; }
.mini-title { font-size: 0.875rem; font-weight: 700; display: block; }
.mini-title:hover { color: var(--accent); }
.mini-meta { font-size: 0.6875rem; color: var(--text-muted); margin-top: 3px; }
.mini-price { font-size: 0.9375rem; font-weight: 800; color: var(--accent); margin-top: 5px; }

/* ═══ MOBİL: SABİT ALT ÇUBUK (Kendinsaat tarzı) ═══ */
.mbar { display: none; }
.sheet { display: none; }

@media (max-width: 860px) {
  /* Yalnızca ilan DETAY sayfasında: alt menü yerine iletişim çubuğu.
     Bu kural eskiden tüm listing.css sayfalarında alt menüyü gizliyordu. */
  body.page-detail .bnav { display: none !important; }
  body.page-detail { padding-bottom: 84px; }

  /* Alt çubuk: [ İlan & Satıcı bilgileri (esnek) ] [ Ara ] [ WhatsApp ].
     Ana sayfa kısayolu kaldırıldı — üst logo ve mobil menü zaten götürüyor;
     dört öğe dar telefonlarda iç içe giriyordu. */
  .mbar { display: flex; align-items: center; gap: 9px; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 700; padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: var(--surface); border-top: 1px solid var(--border);
    box-shadow: 0 -6px 22px rgba(0,0,0,.14); }
  .mbar-info { flex: 1 1 auto; display: flex; align-items: center; gap: 11px; min-width: 0;
    padding: 10px 14px; border-radius: 13px; cursor: pointer;
    background: var(--surface-2); border: 1px solid var(--border); color: var(--text); text-align: left; }
  .mbar-info > i { color: var(--accent); font-size: 1.0625rem; flex-shrink: 0; }
  .mbar-info span { display: flex; flex-direction: column; min-width: 0; }
  .mbar-info strong { font-size: 0.8125rem; font-weight: 700; color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mbar-info small { font-size: 0.6875rem; color: var(--text-muted);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mbar-btn { width: 52px; height: 50px; border-radius: 13px; display: grid; place-items: center;
    font-size: 1.25rem; flex-shrink: 0; transition: filter .15s; }
  .mbar-btn:active { filter: brightness(.92); }
  .mbar-call { background: var(--accent); color: var(--on-accent); }
  .mbar-wa { background: #25d366; color: #fff; }

  /* Alttan açılan panel */
  .sheet { display: block; position: fixed; inset: 0; z-index: 900; pointer-events: none; }
  .sheet-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6);
    opacity: 0; transition: opacity .25s; }
  .sheet-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 88vw);
    background: var(--bg); border-left: 1px solid var(--border);
    display: flex; flex-direction: column; overflow: hidden;
    transform: translateX(100%); transition: transform .28s ease; }
  .sheet.open { pointer-events: auto; }
  .sheet.open .sheet-backdrop { opacity: 1; }
  .sheet.open .sheet-panel { transform: none; }

  .sheet-head { display: flex; align-items: center; justify-content: space-between;
    padding: 18px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
  .sheet-head h2 { font-size: 1.125rem; font-weight: 800; }
  .sheet-close { width: 40px; height: 40px; border-radius: 10px; border: none;
    background: var(--surface-2); color: var(--text); font-size: 1rem; cursor: pointer; }
  .sheet-body { padding: 16px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom)); }

  .sheet-card { background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 18px; }
  .sheet-price { font-size: 1.75rem; font-weight: 900; color: var(--accent); letter-spacing: -1px; }
  .sheet-price small { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); }
  .sheet-title { font-size: 1.0625rem; font-weight: 700; margin-top: 8px; line-height: 1.35; }
  .sheet-loc { font-size: 0.8125rem; color: var(--text-muted); margin-top: 8px; }
  .sheet-loc i { color: var(--accent); margin-right: 5px; }
  .sheet-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 14px; padding-top: 14px;
    border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--text-muted); }
  .sheet-meta i { margin-right: 5px; }

  .sheet-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 14px; }
  .sheet-seller { display: flex; align-items: center; gap: 14px; margin: 2px 0 18px; }
  .sheet-ava { width: 58px; height: 58px; border-radius: 50%; object-fit: cover;
    border: 1px solid var(--border); flex-shrink: 0; }
  .sheet-seller-info { min-width: 0; }
  .sheet-role { display: inline-flex; align-items: center; padding: 3px 11px; border-radius: 99px;
    border: 1px solid var(--accent); color: var(--accent); font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .4px; margin-bottom: 7px; }
  .sheet-seller-name { display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
    font-size: 1rem; font-weight: 700; }
  .sheet-seller-name > i { font-size: 0.9375rem; }
  .sheet-seller-count { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); }
  .sheet-actions { display: flex; flex-direction: column; gap: 9px; }
  .sheet-btn { display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px; border-radius: 12px; transition: filter .15s, border-color .15s;
    background: var(--surface-2); border: 1px solid var(--border);
    font-size: 0.875rem; font-weight: 700; }
  .sheet-btn:active { border-color: var(--accent); }
  .sheet-btn-primary { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
  .sheet-btn-primary:active { filter: brightness(.92); border-color: var(--accent); }
  .sheet-btn-call { background: #25d366; border-color: #25d366; color: #fff; }

  /* Sağ kolon mobilde gizli — bilgileri alt panel veriyor */
  body.page-detail .detail-side { display: none; }
  .detail-title { font-size: 1.3125rem; }
  .detail-price { font-size: 1.6875rem; }

  /* Küçük resimler yarı boyut */
  .thumb { flex: 0 0 59px; }
  .gallery-thumbs { gap: 7px; }

  /* Sekmeler taşıyordu: eşit böl, dar padding */
  .tabs-head .tab { flex: 1; padding: 13px 4px; font-size: 0.6875rem; letter-spacing: .2px; }
  .tab-panel { padding: 14px; }

  /* ÖZELLİKLER: 18 madde alt alta 834px sürüyordu.
     Masaüstündeki 3 sütun korunuyor ama yan yana kaydırılıyor:
     6 madde | 6 madde | 6 madde — parmakla kaydırınca diğerleri gelir. */
  /* Mobilde özellikler yatay kaydırmalı — her sütunda 6 özellik.
     Kullanıcı yandan devam ettiğini anlasın diye SCROLL ÇUBUĞU GÖRÜNÜR + alt ipucu. */
  .spec-cols { display: flex; flex-direction: row; gap: 0; overflow-x: auto;
    scroll-snap-type: x mandatory; overscroll-behavior-x: contain; padding-bottom: 10px;
    scrollbar-width: thin; scrollbar-color: var(--accent) var(--surface-2); }
  .spec-cols::-webkit-scrollbar { height: 5px; display: block; }
  .spec-cols::-webkit-scrollbar-track { background: var(--surface-2); border-radius: 3px; }
  .spec-cols::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
  .spec-list { flex: 0 0 100%; scroll-snap-align: start; }
  .spec-list li { border-bottom: 1px solid var(--border); }
  /* ID ile — dosyanın ilerisindeki '.spec-hint{display:none}' kuralını ezsin diye */
  #specHint { display: flex; }
}

/* ═══ MOBİL: LİSTE / KART GÖRÜNÜMÜ (Kendinsaat tarzı) ═══ */
@media (max-width: 860px) {
  .car-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .car-card-body { padding: 11px; }
  .car-card-title { font-size: 0.8125rem; line-height: 1.35; }
  .car-card-sub { font-size: 0.75rem; }
  .car-card-price { font-size: 1rem; }
  .car-card-cta { padding: 8px 10px; font-size: 0.625rem; }

  /* Özellikler etiket (chip) olarak */
  .car-specs { gap: 5px; }
  .car-specs li { padding: 3px 8px; border-radius: 6px;
    background: var(--surface-2); border: 1px solid var(--border); font-size: 0.625rem; }
  .car-specs li i { display: none; }

  /* Liste görünümü: görsel solda, bilgiler sağda.
     Eskiden 640px'deki 'flex-direction: column' ile buradaki '%40 genişlik'
     çakışıyor, resim üstte yarım kalıyordu. Artık tek yerden yönetiliyor. */
  .car-card-list { flex-direction: row; align-items: stretch; }
  /* Resim dar kalıyordu (%38 → ~133px). %50 artırıldı → ~200px. */
  .car-card-list .car-card-media { width: 57%; min-width: 150px; max-width: 210px;
    flex-shrink: 0; aspect-ratio: auto; align-self: stretch; }
  .car-card-list .car-card-cta { padding: 8px 10px; }
  .car-card-list .car-card-media img { height: 100%; }
  .car-card-list .car-card-body { padding: 11px 12px; }
  .car-card-list .car-card-price { order: -1; margin: 0 0 5px; padding: 0; border: none; }
  .car-card-list .car-card-cta { display: flex; max-width: none; margin-top: 9px; }
}
@media (max-width: 400px) {
  .car-grid { grid-template-columns: 1fr; }
}

/* ═══ İLETİŞİM SAYFASI ═══ */
.contact-wrap { padding: 24px 20px 50px; }
/* İletişim haritasındaki "Yol Tarifi" butonu Google kontrollerinden uzak, sol üstte. */
.contact-map-card .map-go { top: 12px; left: 12px; right: auto; bottom: auto; }
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.grid-2-c { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
@media (max-width: 560px) { .grid-2-c { grid-template-columns: 1fr; } }
.contact-line { display: flex; align-items: center; gap: 13px; padding: 11px 0;
  border-bottom: 1px solid var(--border); }
.contact-line:last-child { border-bottom: none; }
.contact-line span { display: flex; flex-direction: column; min-width: 0; }
.contact-line small { font-size: 0.6875rem; color: var(--text-muted); }
.contact-line strong { font-size: 0.875rem; font-weight: 600; word-break: break-word; }
.contact-line:hover strong { color: var(--accent); }
.contact-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--surface-2);
  border: 1px solid var(--border); display: grid !important; place-items: center;
  font-size: 1rem; color: var(--accent); flex-shrink: 0; }
.contact-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.contact-listing { display: flex; gap: 12px; align-items: center; padding: 12px; margin-bottom: 16px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.contact-listing img { width: 76px; height: 56px; object-fit: cover; border-radius: 6px; }
.contact-listing strong { font-size: 0.875rem; }
.contact-listing p { font-size: 0.75rem; color: var(--accent); font-weight: 600; margin-top: 3px; }

/* ═══ HİZMETLER ═══ */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.svc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.svc-card:hover { border-color: var(--accent); }
.svc-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--surface-2);
  border: 1px solid var(--border); display: grid; place-items: center;
  font-size: 1.25rem; color: var(--accent); margin-bottom: 14px; }
.svc-card h2 { font-size: 1rem; font-weight: 700; margin-bottom: 7px; }
.svc-card p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }
.svc-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin-top: 16px; padding: 26px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); }
.svc-cta h2 { font-size: 1.1875rem; font-weight: 800; }
.svc-cta p { font-size: 0.8125rem; color: var(--text-muted); margin-top: 5px; }

/* ═══ EKİBİMİZ kart ekleri ═══ */
.store-card-meta { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 12px; }
.store-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.store-card-body h2 a:hover { color: var(--accent); }

/* Çekmece başlığı ve kapat butonu — araçlar ve mağaza ortak kullanır */
.fdrawer-head h2 { display: flex; align-items: center; gap: 9px;
  font-size: 1.0625rem; font-weight: 800; }
.fdrawer-close { width: 38px; height: 38px; border-radius: 10px; border: none;
  background: var(--surface-2); color: var(--text); font-size: 1rem; cursor: pointer; flex-shrink: 0; }

/* ═══ FİLTRE ÇEKMECESİ (soldan açılır) ═══
   Form TEK yerde duruyor; masaüstünde yan sütun, mobilde soldan
   kayan çekmece oluyor. (İki kez basmak id'leri çiftler, marka→model
   AJAX'ı yanlış listeyi hedeflerdi.) Varsayılan: KAPALI. */
/* Bu kurallar SADECE araçlar sayfasının .filter-panel'ine ait.
   Kapsamsız yazılırsa mağaza sayfasının .sf-fields başlığını da
   etkiler; mağaza 860px'te çekmeceye geçtiği için 861–1000px arası
   başlık filtre çubuğunun ortasında belirirdi. */
.filter-panel .fdrawer-head { display: none; }
.fdrawer-backdrop { display: none; }
@media (min-width: 1001px) { .fopen-btn { display: none; } }

@media (max-width: 1000px) {
  .filter-panel {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 950;
    width: min(340px, 86vw); background: var(--bg);
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; overflow: hidden;
    transform: translateX(-100%); transition: transform .28s ease;
  }
  .filter-panel.open { transform: none; }

  .filter-panel .fdrawer-head { display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px; border-bottom: 1px solid var(--border); flex-shrink: 0; }

  .filter-panel .filter-form { background: none; border: none; border-radius: 0;
    overflow-y: auto; overscroll-behavior: contain; padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .filter-panel .filter-head { display: none; }   /* başlık çekmecenin tepesinde */

  .fdrawer-backdrop { display: block; position: fixed; inset: 0; z-index: 940;
    background: rgba(0,0,0,.6); opacity: 0; pointer-events: none; transition: opacity .25s; }
  .fdrawer-backdrop.open { opacity: 1; pointer-events: auto; }

  /* Üst çubuktaki Filtrele butonu */
  .fopen-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 16px; border-radius: var(--radius-sm); cursor: pointer;
    background: var(--accent); color: var(--on-accent); border: none;
    font-size: .8125rem; font-weight: 700; white-space: nowrap; }
}

/* Özellikler sütun göstergesi — yalnızca mobilde (sütunlar yan yana kayar) */
.spec-hint { display: none; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.spec-hint span { width: 6px; height: 6px; border-radius: 50%; background: var(--border-strong);
  transition: background .2s, width .2s; }
.spec-hint span.on { width: 18px; border-radius: 3px; background: var(--accent); }
.spec-hint small { margin-left: 8px; font-size: 0.6875rem; color: var(--text-muted); }

/* ═══ GALERİ: BÜYÜTME ═══ */
.gallery-zoom { position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--border-strong); background: var(--overlay);
  backdrop-filter: blur(6px); color: var(--text); display: grid; place-items: center; }
.gallery-zoom:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
/* Ana görsel tıklanabilir: sol yarısı geri, sağ yarısı ileri */
.gallery-stage { cursor: pointer; }

/* ═══ BÜYÜTME PENCERESİ ═══ */
.lightbox { position: fixed; inset: 0; z-index: 1200; background: rgba(0,0,0,.94);
  display: grid; place-items: center; opacity: 0; visibility: hidden;
  transition: opacity .2s, visibility .2s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 96vw; max-height: 86vh; object-fit: contain; }
.lb-close { position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1); color: #fff; font-size: 1.125rem; cursor: pointer; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: #fff; }
.lb-prev { left: 16px; } .lb-next { right: 16px; }
.lb-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  padding: 7px 14px; border-radius: 99px; background: rgba(255,255,255,.12);
  color: #fff; font-size: .8125rem; font-weight: 600; }

@media (max-width: 860px) {
  /* Mobilde ok gizli — görselin sol/sağ yarısına dokunarak geçiliyor */
  .gallery-nav, .lb-nav { display: none; }
  .gallery-zoom { top: 10px; right: 10px; width: 36px; height: 36px; font-size: .875rem; }
  .lightbox img { max-width: 100vw; max-height: 78vh; }
}

/* ============================================================
   HAKKIMIZDA sayfası
   ============================================================ */
.about-wrap { padding: 26px 20px 56px; max-width: 1000px; margin: 0 auto; }
@media (max-width: 860px) { .about-wrap { padding: 18px 14px 46px; } }

/* Biz Kimiz */
.about-intro { margin-bottom: 26px; }
.about-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 99px;
  background: var(--accent-soft); color: var(--accent); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; }
.about-name { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.5px; margin: 14px 0 12px; }
.about-lead p { font-size: 1.0625rem; line-height: 1.85; color: var(--text-soft); margin-bottom: 14px; }
.about-lead p:last-child { margin-bottom: 0; }
.about-lead p:first-child { color: var(--text); }

/* Misyon & Vizyon */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 26px; }
@media (max-width: 760px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card { background: var(--surface); border: 1px solid var(--border); border-radius: calc(var(--radius) + 2px);
  padding: 26px 24px; position: relative; overflow: hidden; }
.mv-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent); }
.mv-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); font-size: 1.375rem; margin-bottom: 16px; }
.mv-card h3 { font-size: 1.1875rem; font-weight: 800; margin-bottom: 10px; }
.mv-text p { font-size: 0.9375rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 10px; }
.mv-text p:last-child { margin-bottom: 0; }

/* İstatistikler bandı */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 30px; }
@media (max-width: 620px) { .about-stats { grid-template-columns: 1fr 1fr; } }
.about-stat { display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.about-stat > i { font-size: 1.375rem; color: var(--accent); width: 30px; text-align: center; flex-shrink: 0; }
.about-stat strong { display: block; font-size: 1.25rem; font-weight: 800; line-height: 1.1; }
.about-stat small { font-size: 0.75rem; color: var(--text-muted); }

/* Ne Yapıyoruz */
.about-do { margin-bottom: 30px; }
.about-do-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.about-do-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 820px) { .about-do-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .about-do-grid { grid-template-columns: 1fr; } }
.about-do-item { display: flex; align-items: flex-start; gap: 12px; padding: 15px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .18s; }
.about-do-item:hover { border-color: var(--accent); }
.about-do-ico { width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--surface-2); color: var(--accent); font-size: 1.0625rem; }
.about-do-item strong { display: block; font-size: 0.9375rem; font-weight: 700; }
.about-do-item p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; margin-top: 3px; }

/* CTA */
.about-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 760px) { .about-cta { grid-template-columns: 1fr; } }
.about-cta-box { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: calc(var(--radius) + 2px); }
.about-cta-box h2 { font-size: 1.0625rem; font-weight: 800; }
.about-cta-box p { font-size: 0.8125rem; color: var(--text-muted); margin-top: 3px; }
.about-cta-box .btn { flex-shrink: 0; }
/* ── İLAN PAYLAŞ KARTI (WhatsApp / Telegram / Facebook / bağlantı) ── */
.lshare-row { display: flex; gap: 10px; }
.lshare-btn { flex: 1; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.125rem; cursor: pointer; text-decoration: none;
  background: var(--surface-2); border: 1px solid var(--border);
  transition: transform .15s, background .15s, border-color .15s, color .15s; }
/* İkonlar her zaman marka renginde (soluk durmasın) */
.lshare-btn.sh-wa   { color: #25d366; }
.lshare-btn.sh-tg   { color: #29a9eb; }
.lshare-btn.sh-fb   { color: #1877f2; }
.lshare-btn.sh-copy { color: var(--accent); }
.lshare-btn:hover { transform: translateY(-2px); }
/* Hover/dokununca marka rengiyle dolar, ikon beyaz olur */
.lshare-btn.sh-wa:hover   { background: #25d366; border-color: #25d366; color: #fff; }
.lshare-btn.sh-tg:hover   { background: #29a9eb; border-color: #29a9eb; color: #fff; }
.lshare-btn.sh-fb:hover   { background: #1877f2; border-color: #1877f2; color: #fff; }
.lshare-btn.sh-copy:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.lshare-btn.copied { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

/* ═══════════════════════════════════════════════════════════
   KİRALAMA — ücret kademeleri, koşullar, müsaitlik
   (3. adım: kiralama odaklı dönüşüm)
   ═══════════════════════════════════════════════════════════ */

/* Günlük / haftalık / aylık ücret tablosu — sağ kolon ve mobil panel */
.rent-prices { margin: 14px 0 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.rent-price-row { display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  border-bottom: 1px solid var(--border); }
.rent-price-row:last-child { border-bottom: none; }
.rent-price-row:first-child { background: var(--bg); }
.rent-price-row:first-child .rp-value { font-size: 1.5rem; font-weight: 900; color: var(--accent); letter-spacing: -0.5px; }
.rp-label { font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); min-width: 62px; }
.rp-value { font-size: 1rem; font-weight: 700; margin-left: auto; }
.rp-save { font-size: 0.6875rem; font-weight: 700; padding: 3px 8px; border-radius: 999px;
  background: rgba(22, 163, 74, 0.12); color: #16a34a; white-space: nowrap; }

/* Kiralama Koşulları sekmesi */
.terms-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; }
.terms-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.term-key { display: inline-flex; align-items: center; gap: 9px; color: var(--text-muted);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; }
.term-key i { color: var(--accent); width: 16px; text-align: center; }
.term-val { margin-left: auto; font-weight: 600; text-align: right; }
.terms-note { display: flex; align-items: flex-start; gap: 9px; margin-top: 18px; padding: 12px 14px;
  background: var(--bg); border-radius: var(--radius-sm); font-size: 0.75rem; color: var(--text-muted); }
.terms-note i { color: var(--accent); margin-top: 2px; }

/* Müsaitlik rozeti — ilan kartında görselin sağ üstünde */
.avail-badge { position: absolute; top: 10px; right: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 4px;
  font-size: 0.6875rem; font-weight: 700; color: #fff; }
.avail-rented      { background: #d97706; }
.avail-maintenance { background: #64748b; }

/* Müsait değil uyarısı — ilan detayı sağ kolon */
.avail-warn { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 14px;
  padding: 12px 14px; border-radius: var(--radius-sm); font-size: 0.8125rem; line-height: 1.5;
  background: rgba(217, 119, 6, 0.1); color: #b45309; }
.avail-warn i { margin-top: 2px; }

@media (max-width: 720px) {
  .terms-list { grid-template-columns: 1fr; gap: 0; }
  .rent-price-row:first-child .rp-value { font-size: 1.3125rem; }
}

/* ═══════════════════════════════════════════════════════════
   YASAL METİNLER — KVKK / gizlilik / çerez
   ═══════════════════════════════════════════════════════════ */

.legal-wrap { padding: 28px 0 56px; }
.legal-doc { max-width: 820px; margin: 0 auto; }
.legal-updated { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px;
  padding: 7px 13px; border-radius: 999px; background: var(--bg);
  font-size: 0.75rem; color: var(--text-muted); }

.legal-doc h2 { font-size: 1.125rem; font-weight: 800; margin: 30px 0 12px;
  padding-top: 22px; border-top: 1px solid var(--border); }
.legal-doc h2:first-of-type { border-top: none; padding-top: 0; }
.legal-doc h3 { font-size: 0.9375rem; font-weight: 700; margin: 20px 0 8px; color: var(--accent); }
.legal-doc p  { font-size: 0.9375rem; line-height: 1.75; margin-bottom: 14px; }
.legal-doc ul { margin: 0 0 16px; padding-left: 4px; }
.legal-doc li { position: relative; padding-left: 20px; margin-bottom: 9px;
  font-size: 0.9375rem; line-height: 1.65; }
.legal-doc li::before { content: ''; position: absolute; left: 4px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.legal-doc a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-doc strong { font-weight: 700; }

.legal-nav { max-width: 820px; margin: 40px auto 0; padding-top: 22px;
  border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.legal-nav span { font-size: 0.8125rem; color: var(--text-muted); }
.legal-nav a { font-size: 0.8125rem; font-weight: 600; }
.legal-nav a:hover { color: var(--accent); }

/* İletişim formu — KVKK onayı */
.consent-row { display: flex; align-items: flex-start; gap: 11px; margin: 6px 0 16px;
  font-size: 0.8125rem; line-height: 1.6; color: var(--text-muted); cursor: pointer; }
.consent-row input { width: 18px; height: 18px; margin-top: 1px; flex-shrink: 0;
  accent-color: var(--accent); cursor: pointer; }
.consent-row a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.consent-note { margin-top: 12px; font-size: 0.75rem; color: var(--text-muted); text-align: center; }

@media (max-width: 720px) {
  .legal-doc h2 { font-size: 1.0625rem; }
}

/* ═══════════════════════════════════════════════════════════
   FAZ 9 — ücret hesaplayıcı, dolu tarihler, karşılaştırma
   ═══════════════════════════════════════════════════════════ */

/* ── Ücret hesaplayıcı (ilan detay sağ kolon) ── */
.rcalc { margin: 16px 0; padding: 15px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--bg); }
.rcalc-head { display: flex; align-items: center; gap: 9px; margin-bottom: 13px;
  font-size: 0.8125rem; font-weight: 700; }
.rcalc-head i { color: var(--accent); }
.rcalc-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rcalc-dates label { display: block; }
.rcalc-dates span { display: block; font-size: 0.6875rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 5px; }
.rcalc-dates input { width: 100%; padding: 9px 11px; font-size: 0.8125rem;
  font-family: inherit; color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: 7px; }
.rcalc-dates input:focus { border-color: var(--accent); outline: none; }

.rcalc-out { margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--border); }
.rcalc-days { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.4px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 9px; }
.rcalc-row { display: flex; justify-content: space-between; gap: 12px;
  font-size: 0.8125rem; padding: 4px 0; color: var(--text-muted); }
.rcalc-total { margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--border);
  font-size: 1.0625rem; font-weight: 800; color: var(--text); }
.rcalc-total span:last-child { color: var(--accent); }
.rcalc-save { margin-top: 9px; padding: 7px 10px; border-radius: 6px; text-align: center;
  font-size: 0.6875rem; font-weight: 700;
  background: rgba(22, 163, 74, 0.12); color: #16a34a; }
.rcalc-hint { margin-top: 11px; font-size: 0.6875rem; color: var(--text-muted); text-align: center; }
.rcalc-warn { color: #b45309; font-weight: 600; }

/* ── Dolu tarihler kutusu ── */
.busy-box { margin-top: 16px; padding: 14px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); }
.busy-head { display: flex; align-items: center; gap: 9px; margin-bottom: 11px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px;
  color: var(--text-muted); }
.busy-head i { color: #d97706; }
.busy-list li { display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.8125rem; }
.busy-list li:last-child { border-bottom: none; }
.busy-list small { color: var(--text-muted); font-size: 0.6875rem; }
.busy-more { margin-top: 9px; font-size: 0.6875rem; color: var(--text-muted); text-align: center; }

/* ── Karşılaştırma: kart üzerindeki simge ── */
.cmp-btn { position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); color: #3f3f46; font-size: 0.8125rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14); transition: background .15s, color .15s; }
.cmp-btn:hover { background: #fff; color: var(--accent); }
.cmp-btn.on { background: var(--accent); color: var(--on-accent); }
/* Müsaitlik rozeti varsa simge onun altına insin, üst üste binmesin */
.avail-badge ~ .cmp-btn { top: 46px; }

/* ── Karşılaştırma: alt çubuk ve bildirim ── */
.cmp-bar { position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 890;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  max-width: 420px; margin: 0 auto; padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border-strong);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18); font-size: 0.8125rem; }
.cmp-toast { position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%); z-index: 950;
  padding: 10px 18px; border-radius: 999px; background: #18181b; color: #fff;
  font-size: 0.8125rem; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); }

/* ── Karşılaştırma sayfası ── */
.cmp-wrap { padding: 24px 0 56px; }
.cmp-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 18px; }
.cmp-top-actions { display: flex; gap: 8px; }

.cmp-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.cmp-table th, .cmp-table td { padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--border); font-size: 0.875rem; vertical-align: middle; }
.cmp-table thead th { position: relative; vertical-align: top; background: var(--bg);
  border-bottom: 2px solid var(--border-strong); }
.cmp-table thead img { width: 100%; max-width: 160px; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 8px; margin-bottom: 9px; display: block; }
.cmp-table thead strong { font-size: 0.8125rem; font-weight: 700; display: block; }
.cmp-rowhead { width: 168px; font-size: 0.75rem !important; font-weight: 600;
  color: var(--text-muted); background: var(--bg); }
.cmp-best { color: #16a34a; font-weight: 800; }
.cmp-remove { position: absolute; top: 6px; right: 6px; width: 26px; height: 26px;
  display: grid; place-items: center; border-radius: 50%; font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.92); color: #71717a; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.cmp-remove:hover { color: #dc2626; }
.cmp-note { display: flex; align-items: flex-start; gap: 9px; margin-top: 18px;
  font-size: 0.75rem; color: var(--text-muted); }
.cmp-note i { color: #16a34a; margin-top: 2px; }

@media (max-width: 720px) {
  .cmp-bar { bottom: 76px; }        /* mobil alt menünün üstünde */
  .cmp-toast { bottom: 148px; }
  .cmp-rowhead { width: 116px; }
  .rcalc-dates { grid-template-columns: 1fr; }
}