/* =========================================================
   Toyota Sandıkçı 2 — Araç Al / Liste sayfası stilleri
   Tabanı styles.css'ten alır; bu dosya sadece bu sayfaya özel
   tasarım öğelerini ekler.
   ========================================================= */

/* Daha geniş kapsayıcı — sol filtre paneli + 4 kart grid */
.listing-container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .listing-container { padding: 0 32px; } }

/* ===========================================================
   BREADCRUMB
   =========================================================== */
.breadcrumb {
  background: #fff;
  padding: 18px 0 4px;
  font-size: 13px;
  color: var(--text-mid);
}
.breadcrumb ol { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.breadcrumb li { list-style: none; }
.breadcrumb a { color: var(--text-mid); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--text-soft); font-size: 11px; }
.breadcrumb .current { color: var(--text); font-weight: 600; }

/* ===========================================================
   STICKY COMPACT SEARCH BAR (navy)
   =========================================================== */
.list-search {
  position: sticky;
  top: 80px;
  z-index: 40;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 12px rgba(14,30,58,0.08);
}
.list-search-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
  align-items: center;
  height: 60px;
}
.list-search-field {
  height: 60px;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.list-search-field:first-child { padding-left: 0; }
.list-search-field label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}
.list-search-field .cselect-btn {
  height: 22px;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
}
.list-search-field .cselect-caret { color: rgba(255,255,255,0.7); }
.list-search-submit { padding-left: 18px; }
.list-search-submit .btn {
  height: 40px;
  padding: 0 22px;
  font-size: 13.5px;
}
@media (max-width: 1023px) {
  .list-search { top: 68px; }
  .list-search-inner { display: none; }
  .list-search-mobile { display: flex; align-items: center; justify-content: space-between; height: 56px; gap: 12px; }
}
@media (min-width: 1024px) { .list-search-mobile { display: none; } }
.list-search-mobile .label { font-size: 13px; font-weight: 700; }
.list-search-mobile .label strong { font-weight: 800; }
.list-search-mobile .open-filters {
  height: 40px;
  padding: 0 16px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.list-search-mobile .open-filters .badge-num {
  background: rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 800;
}

/* ===========================================================
   PAGE LAYOUT — 2 columns
   =========================================================== */
.listing-page { padding: 24px 0 80px; background: var(--surface-1); }
.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .listing-layout { grid-template-columns: 1fr; gap: 16px; }
  .filter-panel { display: none; }
  .filter-panel.drawer-open { display: block; }
}

/* ===========================================================
   FILTER PANEL (sol sticky)
   =========================================================== */
.filter-panel {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  scrollbar-width: thin;
  scrollbar-color: #d6d9de transparent;
}
.filter-panel::-webkit-scrollbar { width: 8px; }
.filter-panel::-webkit-scrollbar-thumb { background: #d6d9de; border-radius: 4px; }
.filter-panel::-webkit-scrollbar-track { background: transparent; }

.filter-head {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid var(--border);
}
.filter-head h3 { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.filter-head .clear {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.filter-head .clear:hover { color: var(--red-700); }

/* Search inside filter panel */
.filter-search {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

/* Toggle switches */
.filter-toggles { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; border-bottom: 1px solid var(--border); }
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface-1);
  border: 1px solid transparent;
  transition: all 0.15s;
  cursor: pointer;
}
.toggle-row:hover { background: #eef1f6; }
.toggle-row.active { background: #fff; border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,0.08); }
.toggle-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.toggle-label .t { font-size: 13.5px; font-weight: 700; color: var(--text); line-height: 1.1; }
.toggle-label .s { font-size: 11px; color: var(--text-mid); }
.switch {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
  background: #d1d5db;
  border-radius: 999px;
  transition: background 0.2s var(--ease);
}
.switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  transition: transform 0.2s var(--ease);
}
.toggle-row.active .switch { background: var(--green); }
.toggle-row.active .switch::after { transform: translateX(16px); }

/* Accordion */
.accordion-group { padding: 4px 0 12px; }
.accordion {
  border-bottom: 1px solid var(--border);
}
.accordion:last-child { border-bottom: none; }
.accordion-head {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: color 0.15s;
}
.accordion-head:hover { color: var(--red); }
.accordion-head .count {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--surface-1);
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: auto;
  margin-right: 10px;
}
.accordion-head .caret {
  width: 14px;
  height: 14px;
  color: var(--text-soft);
  transition: transform 0.2s var(--ease), color 0.15s;
  flex-shrink: 0;
}
.accordion.open .accordion-head .caret { transform: rotate(180deg); color: var(--navy); }
.accordion-body {
  display: none;
  padding: 0 20px 16px;
}
.accordion.open .accordion-body { display: block; }

/* Search inside filter (markdown style) */
.filter-input {
  width: 100%;
  height: 36px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 12px 0 32px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
  background-repeat: no-repeat;
  background-position: 10px center;
  margin-bottom: 10px;
}
.filter-input:focus { border-color: var(--navy); }

/* Checkbox / Radio lists */
.flist { display: flex; flex-direction: column; gap: 8px; max-height: 180px; overflow-y: auto; padding-right: 6px; }
.flist::-webkit-scrollbar { width: 6px; }
.flist::-webkit-scrollbar-thumb { background: #d6d9de; border-radius: 3px; }

.fopt {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  user-select: none;
}
.fopt input { position: absolute; opacity: 0; pointer-events: none; }
.fopt .ck {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
  background: #fff;
}
.fopt .ck::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  margin-top: -2px;
  transition: transform 0.15s var(--ease);
}
.fopt input:checked + .ck { background: var(--red); border-color: var(--red); }
.fopt input:checked + .ck::after { transform: rotate(-45deg) scale(1); }
.fopt:hover .ck { border-color: var(--navy); }
.fopt .rd {
  width: 18px; height: 18px; border-radius: 999px; border: 1.5px solid #d1d5db;
  flex-shrink: 0; position: relative; transition: all 0.15s; background: #fff;
}
.fopt .rd::after {
  content: ''; position: absolute; inset: 3px; border-radius: 999px;
  background: var(--red); transform: scale(0); transition: transform 0.15s var(--ease);
}
.fopt input:checked + .rd { border-color: var(--red); }
.fopt input:checked + .rd::after { transform: scale(1); }
.fopt .label { flex: 1; line-height: 1.3; }
.fopt .num { font-size: 11.5px; color: var(--text-soft); font-feature-settings: "tnum"; }
.fopt:hover .label { color: var(--red); }

/* Color swatches */
.colorlist { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 2px; }
.cswatch {
  position: relative;
  cursor: pointer;
}
.cswatch input { position: absolute; opacity: 0; pointer-events: none; }
.cswatch .dot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--border);
  transition: all 0.15s var(--ease);
  display: block;
}
.cswatch:hover .dot { transform: scale(1.08); }
.cswatch input:checked + .dot { box-shadow: 0 0 0 2px var(--red); transform: scale(1.05); }
.cswatch .tip {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  color: var(--text-mid);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.cswatch:hover .tip { opacity: 1; }

/* Dual range slider */
.range-block { padding-top: 4px; }
.range-track {
  position: relative;
  height: 4px;
  background: #e5e7eb;
  border-radius: 999px;
  margin: 18px 8px 18px;
}
.range-fill {
  position: absolute;
  inset: 0;
  background: var(--red);
  border-radius: 999px;
  left: 10%;
  right: 10%;
}
.range-block input[type="range"] {
  position: absolute;
  width: calc(100% + 16px);
  left: -8px;
  top: -8px;
  height: 20px;
  background: transparent;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  margin: 0;
}
.range-block input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--red);
  box-shadow: var(--shadow-sm);
  cursor: grab;
  transition: transform 0.12s;
}
.range-block input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--red);
  box-shadow: var(--shadow-sm);
  cursor: grab;
}
.range-block input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.range-block input[type="range"]::-moz-range-track { background: transparent; }

.range-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px;
  align-items: center;
}
.range-fields .range-input {
  height: 34px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  outline: none;
  text-align: center;
  font-feature-settings: "tnum";
}
.range-fields .range-input:focus { border-color: var(--navy); background: #fff; }
.range-fields .range-sep { color: var(--text-soft); font-weight: 700; }

/* Apply button — bottom */
.filter-foot {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  z-index: 2;
}
.filter-foot .btn { width: 100%; height: 48px; }
/* Desktop'ta auto-apply aktif olduğu için "Filtreyi Uygula" butonunu gizle */
@media (min-width: 1024px) {
  .filter-foot-mobile { display: none; }
}

/* ===========================================================
   RIGHT CONTENT — top bar + grid + pagination
   =========================================================== */
.results-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.results-count {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.results-count .lbl { font-size: 14px; font-weight: 500; color: var(--text-mid); margin-left: 6px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}
.fchip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 6px 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.15s;
}
.fchip:hover { border-color: var(--red); color: var(--red); }
.fchip .x {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--surface-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all 0.15s;
}
.fchip:hover .x { background: var(--red); color: #fff; }

.results-tools { display: flex; align-items: center; gap: 10px; }
.view-toggle { display: inline-flex; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 3px; }
.view-toggle button {
  width: 34px; height: 32px; border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-soft); transition: all 0.15s;
}
.view-toggle button.active { background: var(--navy); color: #fff; }
.sort-select {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 38px;
  min-width: 200px;
}
.sort-select .cselect-btn { padding: 0 36px 0 12px; height: 38px; font-size: 13.5px; font-weight: 600; color: var(--text); width: 100%; justify-content: flex-start; }
.sort-select .cselect-caret { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }
.sort-select.is-open .cselect-caret { transform: translateY(-50%) rotate(180deg); }
.sort-select .cselect-list { left: 0; right: 0; }

/* ===========================================================
   CARD GRID — 4 cols
   =========================================================== */
.car-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1280px) { .car-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .car-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .car-grid { grid-template-columns: 1fr; } }

/* List view (alternative) */
.car-grid.list-view {
  grid-template-columns: 1fr;
  gap: 12px;
}
.car-grid.list-view .v-card {
  flex-direction: row;
  align-items: stretch;
}
.car-grid.list-view .v-image { width: 36%; flex-shrink: 0; aspect-ratio: auto; }
.car-grid.list-view .v-body { flex: 1; padding: 18px 22px; }

/* Additional badge tones for liste */
.badge-purple { background: #7C3AED; }
.badge-black { background: #111827; }

/* Card image carousel hints (3 dots) */
.v-image .img-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 2;
}
.v-image .img-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  transition: background 0.15s;
}
.v-image .img-dots span.on { background: #fff; }
.v-image:hover .img-dots span { background: rgba(255,255,255,0.7); }
.v-image:hover .img-dots span.on { background: #fff; }

/* Watermark stamp (Xchange by Toyota / Sandıkçı) */
.v-image .wmark {
  position: absolute;
  bottom: 10px;
  right: 12px;
  z-index: 2;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14,30,58,0.45);
  text-align: right;
  line-height: 1.2;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 4px;
}
.v-image .wmark b { color: var(--red); font-weight: 800; display: block; }

/* Listing v-card adjustments — slightly smaller density */
.car-grid .v-card .v-body { padding: 14px 16px 16px; }
.car-grid .v-card .v-title { font-size: 15.5px; margin-bottom: 4px; }
.car-grid .v-card .v-sub {
  font-size: 12.5px;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.car-grid .v-card .v-specs { font-size: 12.5px; margin-bottom: 10px; }
.car-grid .v-card .v-loc { font-size: 12px; margin-bottom: 10px; }
.car-grid .v-card .v-price { font-size: 20px; }
.car-grid .v-card .v-finance { font-size: 10.5px; }
.car-grid .v-card .v-detail-link { width: 32px; height: 32px; }

/* List-view content adjustments */
.list-view .v-card .v-title { font-size: 18px; }
.list-view .v-card .v-sub { font-size: 14px; -webkit-line-clamp: 2; }
.list-view .v-card .v-price { font-size: 24px; }

/* ===========================================================
   PAGINATION
   =========================================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.pages { display: inline-flex; gap: 4px; flex-wrap: wrap; }
.pages a, .pages span {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-feature-settings: "tnum";
}
.pages a:hover { border-color: var(--navy); color: var(--navy); }
.pages a.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.pages .nav-btn { padding: 0 14px; gap: 6px; }
.pages .nav-btn[aria-disabled="true"] { opacity: 0.4; pointer-events: none; }
.pages .ellipsis { background: transparent; border: none; color: var(--text-soft); }

.per-page {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  height: 38px; padding: 0 12px; font-size: 13px; color: var(--text-mid);
}
.per-page .cselect-btn { height: 36px; font-size: 13px; font-weight: 700; color: var(--text); padding: 0 22px 0 4px; }

/* ===========================================================
   EMPTY STATE
   =========================================================== */
.empty {
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 56px 32px;
  text-align: center;
  display: none;
}
.empty.show { display: block; }
.empty .empty-ico {
  width: 96px; height: 96px;
  border-radius: 999px;
  background: var(--surface-1);
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.empty h3 { font-size: 20px; margin-bottom: 8px; }
.empty p { color: var(--text-mid); font-size: 14px; margin-bottom: 22px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ===========================================================
   MOBILE FILTER DRAWER
   =========================================================== */
@media (max-width: 1023px) {
  .filter-panel {
    position: fixed;
    inset: 0 0 0 auto;
    top: 0;
    width: min(420px, 100vw);
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
    z-index: 70;
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    display: block;
    border: none;
  }
  .filter-panel.drawer-open { transform: translateX(0); box-shadow: -16px 0 48px rgba(14,30,58,0.18); }
  .filter-head { padding-top: 22px; }
  .drawer-close {
    width: 32px; height: 32px;
    border-radius: 999px;
    background: var(--surface-1);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1024px) { .drawer-close { display: none; } }

/* Overlay behind drawer */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(14,30,58,0.5);
  z-index: 65; opacity: 0; visibility: hidden; transition: opacity 0.25s;
}
.drawer-overlay.show { opacity: 1; visibility: visible; }

/* Mobile floating filters button */
.mob-filter-fab {
  display: none;
  position: fixed;
  bottom: 16px; right: 16px;
  background: var(--red);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(230,0,18,0.34);
  z-index: 45;
  align-items: center;
  gap: 8px;
}
.mob-filter-fab .badge-num {
  background: rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 800;
}

/* ===== EMPTY STATE ===== */
.es-wrap {
  text-align: center;
  padding: 48px 24px 36px;
}
.es-ico {
  width: 72px;
  height: 72px;
  background: #f1f3f8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.es-title {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0E1E3A;
  margin: 0 0 10px;
}
.es-sub {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 24px;
}
.es-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.es-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f3f8;
  border: 1px solid #d1d9e8;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #0E1E3A;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.es-chip:hover { background: #e2e8f4; border-color: #a8b4cc; }
.es-chip-x { font-size: 15px; color: #94a3b8; line-height: 1; }
.es-clear-btn {
  background: #E60012;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.es-clear-btn:hover { background: #c5000f; color: #fff; }

.es-similar {
  padding: 0 0 40px;
}
.es-similar-title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0E1E3A;
  margin: 0 0 20px;
}
.es-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) {
  .es-carousel { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .es-carousel { grid-template-columns: 1fr; }
  .es-title { font-size: 18px; }
}
.es-carousel-item { min-width: 0; }

.es-wa-banner {
  background: #25D366;
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 40px;
}
.es-wa-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.es-wa-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.es-wa-btn {
  background: #fff;
  color: #25D366;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.es-wa-btn:hover { opacity: 0.9; color: #25D366; }
@media (max-width: 600px) {
  .es-wa-inner { flex-direction: column; align-items: flex-start; }
  .es-wa-left { font-size: 14px; }
}
@media (max-width: 1023px) { .mob-filter-fab { display: inline-flex; } }
