/**
 * Las Cosas de Juan · V1.10.6
 * Filtros ps_facetedsearch 5.0.0 · sticky real + rediseño premium.
 * Scope estricto: body.page-category.
 */

.page-category {
  --lcdj-cat-bg: #07111f;
  --lcdj-cat-panel: #0c1726;
  --lcdj-cat-panel-2: #101d2d;
  --lcdj-cat-panel-3: #152235;
  --lcdj-cat-line: rgba(166, 184, 209, .16);
  --lcdj-cat-line-strong: rgba(166, 184, 209, .27);
  --lcdj-cat-text: #f7f9fc;
  --lcdj-cat-muted: #9eacbf;
  --lcdj-cat-orange: #ff6a16;
  --lcdj-cat-orange-2: #ff7c2b;
  --lcdj-sticky-top: 94px;
}

/* =============================================================
   LISTADO / ORDENACION
   ============================================================= */
.page-category #products {
  margin-top: 1rem;
}

.page-category .lcdj-listing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--lcdj-cat-line);
}

.page-category .lcdj-listing-top__count {
  display: flex;
  align-items: baseline;
  gap: .42rem;
  color: var(--lcdj-cat-muted);
  font-size: .94rem;
}

.page-category .lcdj-listing-top__count strong {
  color: var(--lcdj-cat-orange);
  font-size: 1.08rem;
}

.page-category .lcdj-listing-top__actions,
.page-category .lcdj-listing-top__sort {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.page-category .lcdj-listing-top__sort .products__sort-label {
  display: none !important;
}

.page-category .lcdj-listing-top__sort .products__sort-dropdown,
.page-category .lcdj-listing-top__sort .dropdown,
.page-category .lcdj-listing-top__sort .select-title {
  margin: 0;
}

.page-category .lcdj-listing-top__sort .products__sort-dropdown-button {
  min-height: 42px;
  border-color: var(--lcdj-cat-line-strong);
  border-radius: 10px;
  background: var(--lcdj-cat-panel);
  color: var(--lcdj-cat-text);
}

.page-category .lcdj-filter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 42px;
  padding: .65rem .9rem;
  border: 1px solid var(--lcdj-cat-orange);
  border-radius: 10px;
  background: rgba(255, 106, 22, .07);
  color: #fff;
  font-size: .84rem;
  font-weight: 800;
}

.page-category .lcdj-filter-toggle .material-icons {
  color: var(--lcdj-cat-orange);
  font-size: 20px;
}

/* =============================================================
   GRID Y TARJETAS
   ============================================================= */
.page-category #js-product-list > .products,
.page-category #js-product-list .products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.page-category #js-product-list .lcdj-vehicle-card {
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--lcdj-cat-text);
}

.page-category .lcdj-vehicle-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--lcdj-cat-line);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0) 36%), var(--lcdj-cat-panel);
  box-shadow: 0 13px 34px rgba(0, 0, 0, .16);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.page-category .lcdj-vehicle-card:hover .lcdj-vehicle-card__inner {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 22, .50);
  box-shadow: 0 19px 42px rgba(0, 0, 0, .24);
}

.page-category .lcdj-vehicle-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9ebed;
}

.page-category .lcdj-vehicle-card__image-link,
.page-category .lcdj-vehicle-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.page-category .lcdj-vehicle-card__image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  transition: transform .32s ease;
}

.page-category .lcdj-vehicle-card:hover .lcdj-vehicle-card__image {
  transform: scale(1.025);
}

.page-category .lcdj-vehicle-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7,17,31,0), rgba(7,17,31,.40));
}

.page-category .lcdj-vehicle-card__badges {
  position: absolute;
  z-index: 2;
  top: .68rem;
  left: .68rem;
  display: flex;
  gap: .4rem;
  max-width: calc(100% - 1.36rem);
}

.page-category .lcdj-card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: .27rem .55rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(10, 20, 34, .84);
  color: #fff;
  font-size: .66rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .045em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.page-category .lcdj-card-badge--demo {
  border-color: rgba(255, 106, 22, .62);
  background: rgba(255, 106, 22, .94);
}

.page-category .lcdj-vehicle-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: .82rem .9rem .9rem;
}

.page-category .lcdj-vehicle-card__title {
  display: -webkit-box;
  min-height: 2.5em;
  overflow: hidden;
  color: var(--lcdj-cat-text);
  font-size: .98rem;
  font-weight: 780;
  line-height: 1.25;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.page-category .lcdj-vehicle-card__title:hover { color: #fff; }

.page-category .lcdj-vehicle-card__price {
  display: block;
  margin-top: .34rem;
  color: var(--lcdj-cat-orange);
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.page-category .lcdj-vehicle-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem .55rem;
  margin-top: .62rem;
  padding: .58rem 0;
  border-top: 1px solid rgba(151,170,198,.14);
  border-bottom: 1px solid rgba(151,170,198,.14);
}

.page-category .lcdj-card-fact {
  display: flex;
  align-items: center;
  gap: .35rem;
  min-width: 0;
  color: #d7dee8;
  font-size: .72rem;
  line-height: 1.18;
}

.page-category .lcdj-card-fact > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-category .lcdj-card-fact .lcdj-vicon,
.page-category .lcdj-card-chip .lcdj-vicon,
.page-category .lcdj-vehicle-card__commercial .lcdj-vicon {
  display: inline-flex;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  color: var(--lcdj-cat-orange);
}

.page-category .lcdj-card-fact svg,
.page-category .lcdj-card-chip svg,
.page-category .lcdj-vehicle-card__commercial svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-category .lcdj-vehicle-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .34rem;
  margin-top: .55rem;
}

.page-category .lcdj-card-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  min-height: 27px;
  padding: .25rem .43rem;
  border: 1px solid rgba(151,170,198,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.022);
  color: #d8e0ea;
  font-size: .67rem;
  line-height: 1;
}

.page-category .lcdj-mini-dgt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 .24rem;
  border-radius: 5px;
  background: #667085;
  color: #fff;
  font-size: .60rem;
  font-weight: 900;
  line-height: 1;
}

.page-category .lcdj-mini-dgt--zero { background: #2196d3; }
.page-category .lcdj-mini-dgt--eco { background: #2c9d64; }
.page-category .lcdj-mini-dgt--c { background: #54a947; }
.page-category .lcdj-mini-dgt--b { background: #f1c232; color: #17202d; }

.page-category .lcdj-vehicle-card__commercial {
  display: grid;
  gap: .28rem;
  margin-top: .56rem;
  color: #c9d3df;
  font-size: .69rem;
  line-height: 1.2;
}

.page-category .lcdj-vehicle-card__commercial > span {
  display: flex;
  align-items: center;
  gap: .34rem;
}

.page-category .lcdj-vehicle-card__commercial strong {
  color: #fff;
  font-weight: 780;
}

.page-category .lcdj-vehicle-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 40px;
  margin-top: .7rem;
  padding: .67rem .82rem;
  border: 1px solid var(--lcdj-cat-orange);
  border-radius: 9px;
  background: linear-gradient(135deg, var(--lcdj-cat-orange), var(--lcdj-cat-orange-2));
  color: #fff !important;
  font-size: .79rem;
  font-weight: 820;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(255, 106, 22, .12);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.page-category .lcdj-vehicle-card__cta:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow: 0 11px 24px rgba(255, 106, 22, .20);
}

/* =============================================================
   FILTRO LATERAL · ps_facetedsearch 5.0.0
   V1.10.5: sticky nativo sin recalcular top durante el scroll.
   El filtro es visible desde el inicio y su contenedor termina con
   #products para no invadir el contenido SEO ni el footer.
   ============================================================= */
.page-category .wrapper > .container-fluid,
.page-category .wrapper > .container-fluid > .row,
.page-category #left-column {
  overflow: visible !important;
}

.page-category #left-column {
  position: relative;
  align-self: flex-start;
  height: var(--lcdj-products-boundary, auto);
  min-height: 0;
}

.page-category #left-column .ps-categorytree {
  display: none !important;
}

.page-category #left-column #search_filters_wrapper {
  position: sticky;
  top: var(--lcdj-sticky-top);
  z-index: 15;
  margin-top: 0;
  width: 100%;
  max-height: calc(100dvh - var(--lcdj-sticky-top) - 18px);
}

.page-category #left-column #_desktop_faceted {
  max-height: inherit;
}

/* Compatible con PS 5 (#search-filters) y selector legacy por seguridad. */
.page-category #left-column #search-filters,
.page-category #left-column #search_filters {
  position: relative;
  max-height: calc(100dvh - var(--lcdj-sticky-top) - 18px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scrollbar-gutter: stable;
  scroll-behavior: auto;
  touch-action: pan-y;
  padding: 0;
  border: 1px solid rgba(166,184,209,.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(255,106,22,.09), transparent 32%),
    linear-gradient(180deg, #0d1929 0%, #091421 100%);
  color: var(--lcdj-cat-text);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .27);
  scrollbar-width: auto;
  scrollbar-color: rgba(255,106,22,.78) rgba(255,255,255,.055);
}

.page-category #search-filters::-webkit-scrollbar,
.page-category #search_filters::-webkit-scrollbar { width: 10px; }

.page-category #search-filters::-webkit-scrollbar-track,
.page-category #search_filters::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255,255,255,.055);
}

.page-category #search-filters::-webkit-scrollbar-thumb,
.page-category #search_filters::-webkit-scrollbar-thumb {
  min-height: 44px;
  border: 2px solid #0b1725;
  border-radius: 999px;
  background: rgba(255,106,22,.86);
}

/* Ayuda visual: solo aparece mientras quedan filtros por debajo. */
.page-category #left-column #search_filters_wrapper::after {
  content: "Desliza para ver más  ↓";
  position: absolute;
  z-index: 8;
  right: 18px;
  bottom: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: .35rem .72rem;
  border: 1px solid rgba(255,106,22,.30);
  border-radius: 999px;
  background: rgba(7,17,31,.94);
  color: #dbe4ef;
  box-shadow: 0 7px 20px rgba(0,0,0,.24);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .01em;
  pointer-events: none;
}

.page-category #left-column #search_filters_wrapper.lcdj-filter-has-more::after {
  display: inline-flex;
}


/* Cabecera premium */
.page-category #search-filters > .left-block__title,
.page-category #search_filters > .left-block__title,
.page-category #search-filters > .h6,
.page-category #search_filters > .h6 {
  position: sticky;
  z-index: 3;
  top: 0;
  display: flex !important;
  align-items: center;
  gap: .62rem;
  min-height: 58px;
  margin: 0 !important;
  padding: .95rem 1rem;
  border-bottom: 1px solid rgba(166,184,209,.17);
  background: rgba(9,20,33,.96);
  color: #fff !important;
  font-size: .96rem;
  font-weight: 900;
  letter-spacing: -.01em;
  text-transform: none !important;
  backdrop-filter: blur(10px);
}

.page-category #search-filters > .left-block__title::before,
.page-category #search_filters > .left-block__title::before,
.page-category #search-filters > .h6::before,
.page-category #search_filters > .h6::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--lcdj-cat-orange);
  box-shadow: 0 0 0 5px rgba(255,106,22,.11);
}

/* Limpiar filtros */
.page-category #search-filters .clear-all-wrapper,
.page-category #search_filters .clear-all-wrapper,
.page-category #_desktop_search_filters_clear_all {
  margin: .75rem 1rem 0;
}

.page-category #search-filters .js-search-filters-clear-all,
.page-category #search_filters .js-search-filters-clear-all {
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(255,106,22,.42);
  border-radius: 9px;
  background: rgba(255,106,22,.08);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

/* Accordion real de ps_facetedsearch 5 */
.page-category #search-filters > .accordion,
.page-category #search_filters > .accordion {
  padding: .35rem .9rem .9rem;
}

.page-category #search-filters .accordion-item,
.page-category #search_filters .accordion-item {
  margin: .52rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(166,184,209,.14) !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,.018) !important;
}

.page-category #search-filters .accordion-button,
.page-category #search_filters .accordion-button {
  min-height: 46px;
  padding: .72rem .82rem;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(255,255,255,.022) !important;
  box-shadow: none !important;
  color: #f5f8fc !important;
  font-size: .77rem;
  font-weight: 850;
  line-height: 1.2;
}

.page-category #search-filters .accordion-button:hover,
.page-category #search_filters .accordion-button:hover {
  background: rgba(255,255,255,.04) !important;
}

.page-category #search-filters .accordion-button:not(.collapsed),
.page-category #search_filters .accordion-button:not(.collapsed) {
  background: rgba(255,106,22,.065) !important;
  color: #fff !important;
}

.page-category #search-filters .accordion-button::after,
.page-category #search_filters .accordion-button::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  margin-left: auto;
  border: 1px solid rgba(255,106,22,.28);
  border-radius: 7px;
  background: rgba(255,106,22,.07) !important;
  color: var(--lcdj-cat-orange);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transform: none !important;
}

.page-category #search-filters .accordion-button:not(.collapsed)::after,
.page-category #search_filters .accordion-button:not(.collapsed)::after {
  content: "−";
}

.page-category #search-filters .accordion-collapse,
.page-category #search_filters .accordion-collapse {
  border-top: 1px solid rgba(166,184,209,.10);
  background: rgba(3,10,18,.17);
}

.page-category #search-filters .accordion-body,
.page-category #search_filters .accordion-body {
  margin: 0;
  padding: .66rem .78rem .72rem;
  list-style: none;
}

/* Opciones / checks */
.page-category #search-filters .search-filters__item,
.page-category #search_filters .search-filters__item {
  margin: 0;
  padding: .08rem 0;
}

.page-category #search-filters .search-filters__form-check,
.page-category #search_filters .search-filters__form-check,
.page-category #search-filters .form-check,
.page-category #search_filters .form-check {
  display: flex;
  align-items: center;
  min-height: 31px;
  margin: 0;
  padding-left: 0;
}

.page-category #search-filters .form-check-input,
.page-category #search_filters .form-check-input {
  width: 17px;
  height: 17px;
  margin: 0 .55rem 0 0;
  flex: 0 0 17px;
  border: 1px solid rgba(179,194,214,.48);
  border-radius: 5px;
  background-color: rgba(255,255,255,.02);
  box-shadow: none !important;
}

.page-category #search-filters .form-check-input:checked,
.page-category #search_filters .form-check-input:checked {
  border-color: var(--lcdj-cat-orange);
  background-color: var(--lcdj-cat-orange);
}

.page-category #search-filters .form-check-input:focus,
.page-category #search_filters .form-check-input:focus {
  border-color: var(--lcdj-cat-orange);
  box-shadow: 0 0 0 3px rgba(255,106,22,.13) !important;
}

.page-category #search-filters .search-filters__form-label,
.page-category #search_filters .search-filters__form-label {
  min-width: 0;
  flex: 1 1 auto;
  margin: 0;
}

.page-category #search-filters .search-filters__link,
.page-category #search_filters .search-filters__link,
.page-category #search-filters .search-link,
.page-category #search_filters .search-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  width: 100%;
  min-width: 0;
  color: #c7d1df !important;
  font-size: .71rem;
  line-height: 1.25;
  text-decoration: none !important;
}

.page-category #search-filters .search-filters__link:hover,
.page-category #search_filters .search-filters__link:hover,
.page-category #search-filters .search-link:hover,
.page-category #search_filters .search-link:hover {
  color: #fff !important;
}

.page-category #search-filters .search-filters__magnitude,
.page-category #search_filters .search-filters__magnitude,
.page-category #search-filters .magnitude,
.page-category #search_filters .magnitude {
  margin-left: auto;
  color: #73839a !important;
  font-size: .62rem;
  white-space: nowrap;
}

/* Slider precio PS 5 / noUiSlider */
.page-category #search-filters .search-filters__slider-container,
.page-category #search_filters .search-filters__slider-container {
  padding: 1rem .85rem .9rem;
}

.page-category #search-filters .search-filters__slider,
.page-category #search_filters .search-filters__slider,
.page-category #search-filters .noUi-target,
.page-category #search_filters .noUi-target,
.page-category #search-filters .ui-slider,
.page-category #search_filters .ui-slider {
  height: 5px;
  border: 0 !important;
  border-radius: 999px;
  background: rgba(174,190,211,.22) !important;
  box-shadow: none !important;
}

.page-category #search-filters .noUi-connect,
.page-category #search_filters .noUi-connect,
.page-category #search-filters .ui-slider-range,
.page-category #search_filters .ui-slider-range {
  background: linear-gradient(90deg, var(--lcdj-cat-orange), var(--lcdj-cat-orange-2)) !important;
}

.page-category #search-filters .noUi-handle,
.page-category #search_filters .noUi-handle,
.page-category #search-filters .ui-slider-handle,
.page-category #search_filters .ui-slider-handle {
  width: 17px !important;
  height: 17px !important;
  top: -6px !important;
  border: 3px solid #fff !important;
  border-radius: 50% !important;
  background: var(--lcdj-cat-orange) !important;
  box-shadow: 0 0 0 3px rgba(255,106,22,.17) !important;
}

.page-category #search-filters .noUi-handle::before,
.page-category #search_filters .noUi-handle::before,
.page-category #search-filters .noUi-handle::after,
.page-category #search_filters .noUi-handle::after {
  display: none !important;
}

.page-category #search-filters .search-filters__slider-values,
.page-category #search_filters .search-filters__slider-values {
  margin-top: .72rem;
  color: #d9e2ee;
  font-size: .7rem;
  font-weight: 700;
}

/* Filtros activos */
.page-category #js-active-search-filters:not(:empty) {
  margin-bottom: .85rem;
  padding: .62rem .7rem;
  border: 1px solid var(--lcdj-cat-line);
  border-radius: 11px;
  background: rgba(255,255,255,.025);
}

/* Pagination */
.page-category .products__pagination { margin-top: 1.55rem; }
.page-category .pagination .page-link,
.page-category .pagination a {
  border-color: var(--lcdj-cat-line);
  background: var(--lcdj-cat-panel);
  color: #d8e0ea;
}
.page-category .pagination .active .page-link,
.page-category .pagination .current a,
.page-category .pagination .current span {
  border-color: var(--lcdj-cat-orange);
  background: var(--lcdj-cat-orange);
  color: #fff;
}

/* =============================================================
   TABLET
   ============================================================= */
@media (max-width: 1199.98px) {
  .page-category #js-product-list > .products,
  .page-category #js-product-list .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =============================================================
   MOVIL · panel lateral
   ============================================================= */
@media (max-width: 767.98px) {
  .page-category .lcdj-listing-top {
    align-items: stretch;
    flex-direction: column;
    padding-top: .35rem;
  }

  .page-category .lcdj-listing-top__actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
  }

  .page-category .lcdj-listing-top__sort,
  .page-category .lcdj-listing-top__sort .products__sort-dropdown {
    min-width: 0;
    width: 100%;
  }

  .page-category .lcdj-listing-top__sort .products__sort-dropdown-button {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .page-category #js-product-list > .products,
  .page-category #js-product-list .products {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  /*
   * PS/Hummingbird mueve el contenido de #_desktop_faceted a
   * #_mobile_faceted. Por eso el boton debe abrir #offcanvas-faceted
   * y no convertir #left-column en un drawer propio.
   */
  .page-category #left-column {
    --lcdj-products-boundary: auto;
    position: static !important;
    display: block !important;
    flex: 0 0 0 !important;
    width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .page-category #left-column > .ps-categorytree,
  .page-category #left-column > #search_filters_wrapper,
  .page-category #left-column > .ps-facetedsearch:not(.ps-facetedsearch--mobile) {
    display: none !important;
  }

  .page-category .ps-facetedsearch--mobile.offcanvas {
    --bs-offcanvas-width: min(92vw, 390px);
    z-index: 1085;
    display: flex !important;
    width: min(92vw, 390px) !important;
    max-width: 390px;
    border-right: 1px solid rgba(166,184,209,.18);
    background:
      radial-gradient(circle at 100% 0, rgba(255,106,22,.10), transparent 30%),
      linear-gradient(180deg, #0d1929 0%, #07111f 100%);
    color: var(--lcdj-cat-text);
    box-shadow: 18px 0 44px rgba(0,0,0,.42);
  }

  .page-category .ps-facetedsearch--mobile .offcanvas-header {
    flex: 0 0 auto;
    min-height: 64px;
    padding: .9rem 1rem;
    border-bottom: 1px solid rgba(166,184,209,.16);
    background: rgba(7,17,31,.96);
  }

  .page-category .ps-facetedsearch--mobile .offcanvas-title {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -.01em;
  }

  .page-category .ps-facetedsearch--mobile .btn-close {
    width: 34px;
    height: 34px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 9px;
    background-color: rgba(255,255,255,.92);
    opacity: 1;
  }

  .page-category .ps-facetedsearch--mobile .offcanvas-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: .8rem;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
  }

  .page-category .ps-facetedsearch--mobile #_mobile_faceted {
    min-height: 1px;
  }

  .page-category #left-column .ps-facetedsearch--mobile #search-filters,
  .page-category #left-column .ps-facetedsearch--mobile #search_filters {
    max-height: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scrollbar-gutter: auto;
  }

  .page-category #left-column .ps-facetedsearch--mobile #search-filters > .left-block__title,
  .page-category #left-column .ps-facetedsearch--mobile #search_filters > .left-block__title,
  .page-category #left-column .ps-facetedsearch--mobile #search-filters > .h6,
  .page-category #left-column .ps-facetedsearch--mobile #search_filters > .h6 {
    display: none !important;
  }

  .page-category .ps-facetedsearch--mobile #search-filters > .accordion,
  .page-category .ps-facetedsearch--mobile #search_filters > .accordion {
    padding: 0;
  }

  .page-category .ps-facetedsearch--mobile #search-filters .accordion-item,
  .page-category .ps-facetedsearch--mobile #search_filters .accordion-item {
    margin-top: .62rem;
    border-color: rgba(166,184,209,.16) !important;
    background: rgba(255,255,255,.025) !important;
  }

  .page-category .ps-facetedsearch--mobile #search-filters .accordion-item:first-child,
  .page-category .ps-facetedsearch--mobile #search_filters .accordion-item:first-child {
    margin-top: 0;
  }

  .page-category .ps-facetedsearch--mobile #search-filters .accordion-button,
  .page-category .ps-facetedsearch--mobile #search_filters .accordion-button {
    min-height: 50px;
    padding: .8rem .9rem;
    font-size: .82rem;
  }

  .page-category .ps-facetedsearch--mobile #search-filters .accordion-body,
  .page-category .ps-facetedsearch--mobile #search_filters .accordion-body {
    padding: .72rem .86rem .82rem;
  }

  .page-category .ps-facetedsearch--mobile #search-filters .search-filters__form-check,
  .page-category .ps-facetedsearch--mobile #search_filters .search-filters__form-check,
  .page-category .ps-facetedsearch--mobile #search-filters .form-check,
  .page-category .ps-facetedsearch--mobile #search_filters .form-check {
    min-height: 36px;
  }

  .page-category .ps-facetedsearch--mobile #search_filters_wrapper::after,
  .page-category .ps-facetedsearch--mobile::after {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .page-category .lcdj-vehicle-card__price { font-size: 1.24rem; }
  .page-category .lcdj-card-fact { font-size: .70rem; }
}
