/* ===================================================================
   LED Filter & Scenario — Design Tokens
   =================================================================== */

[data-led-filter] {
  --page: #080a0a;
  --surface: #151718;
  --surface-2: #1c1e1f;
  --panel: #242627;
  --panel-elevated: #292b2c;
  --panel-deep: #1d1f20;
  --line: rgba(255, 255, 255, 0.095);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #f7f5ef;
  --muted: #a4a8aa;
  --muted-2: #6c7478;
  --orange: #ffe096;
  --orange-2: #ffe096;
  --orange-soft: rgba(255, 224, 150, 0.12);
  --radius: 16px;
  --datts-text: var(--text);
  --datts-muted: var(--muted);
  --datts-line: var(--line);
  --datts-line-strong: rgba(255, 255, 255, 0.14);
  --datts-accent: var(--orange);
  --datts-accent-soft: var(--orange-2);
  --datts-radius-lg: var(--radius);
  --datts-surface: var(--surface);
  color: var(--text);
}

/* ===================================================================
   Light Scenario
   =================================================================== */

.light-scenario {
  width: 100%;
  padding: 28px 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.light-scenario__heading {
  max-width: 1100px;
}

.light-scenario .section-lead {
  margin: 16px 0 50px 0;
  color: var(--datts-muted);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
}

.light-scenario__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  border-bottom: 1px solid var(--datts-line-strong);
}

.light-scenario__tab {
  position: relative;
  min-height: 54px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--datts-muted);
  font: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.light-scenario__tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--datts-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
}

.light-scenario__tab:hover,
.light-scenario__tab:focus-visible {
  color: var(--datts-text);
}

.light-scenario__tab.is-active {
  color: var(--datts-accent);
  font-weight: 500;
}

.light-scenario__tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.light-scenario__tab:focus-visible,
.light-scenario__apply-preset:focus-visible {
  outline: 2px solid var(--datts-accent);
  outline-offset: 2px;
}

.light-scenario__panel {
  padding-top: 16px;
}

.light-scenario__visual {
  position: relative;
  aspect-ratio: 1499 / 319;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--datts-line);
  border-radius: var(--datts-radius-lg);
  background: var(--datts-surface);
}

.light-scenario__visual::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 44px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  content: "";
}

.light-scenario__visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 160ms ease, filter 160ms ease;
}

.light-scenario__panel.is-changing .light-scenario__visual-image,
.light-scenario__panel.is-changing .light-scenario__cards {
  opacity: 0.3;
}

.light-scenario__cards {
  display: grid;
  grid-template-columns: 0.94fr 1.11fr 1fr;
  gap: 12px;
  margin-top: 12px;
  transition: opacity 160ms ease;
}

.light-scenario__card {
  min-width: 0;
  min-height: 260px;
  padding: 22px 20px;
  border: 1px solid var(--datts-line);
  border-radius: var(--datts-radius-lg);
  background: transparent;
}

.light-scenario__card--guide {
  padding: 22px 20px 18px;
  border-color: rgba(255, 224, 150, 0.62);
  background: transparent;
}

.light-scenario__card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.light-scenario__icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: var(--datts-accent);
}

.light-scenario__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.light-scenario__card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.light-scenario__points {
  display: grid;
  gap: 14px;
  margin: 19px 0 0;
  padding: 0;
  color: #d3d6d8;
  font-size: 16px;
  line-height: 1.45;
  list-style: none;
}

.light-scenario__points li {
  position: relative;
  padding-left: 30px;
}

.light-scenario__points li::before {
  position: absolute;
  top: -1px;
  left: 2px;
  color: var(--datts-accent);
  font-size: 21px;
  line-height: 1;
  content: "\2713";
}

.light-scenario__guide-kicker {
  margin: 14px 0 0;
  color: var(--datts-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.light-scenario__guide-title {
  margin: 7px 0 0;
  color: var(--datts-text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.light-scenario__guide-params {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 13px 0 0;
}

.light-scenario__guide-params div {
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--datts-line-strong);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.light-scenario__guide-params dt {
  color: #8e9598;
  font-size: 10px;
  line-height: 1.2;
}

.light-scenario__guide-params dd {
  margin: 4px 0 0;
  color: #e5e7e8;
  font-size: 12px;
  line-height: 1.25;
}

.light-scenario__effect-text {
  margin: 19px 0 0;
  color: #d3d6d8;
  font-size: 16px;
  line-height: 1.55;
}

.light-scenario__apply-preset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 48px;
  margin-top: 13px;
  padding: 0 16px;
  border: 1px solid var(--datts-accent);
  border-radius: 8px;
  background: var(--datts-accent);
  color: #17130a;
  box-shadow: 0 10px 24px rgba(255, 224, 150, 0.1);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.light-scenario__apply-preset:hover {
  background: var(--datts-accent-soft);
  color: #17130a;
  transform: translateY(-1px);
}

.light-scenario__apply-arrow {
  font-size: 20px;
  font-weight: 400;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ===================================================================
   Light Scenario — Responsive
   =================================================================== */

@media (max-width: 1180px) {
  .light-scenario__cards {
    grid-template-columns: 1fr 1.18fr;
  }
  .light-scenario__card--effect {
    grid-column: 1 / -1;
    min-height: 0;
  }
  .light-scenario__effect-text {
    max-width: 920px;
  }
}

@media (max-width: 850px) {
  .light-scenario__tabs {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .light-scenario__tab {
    min-width: 160px;
    font-size: 15px;
    scroll-snap-align: start;
  }
  .light-scenario__tabs::-webkit-scrollbar {
    display: none;
  }
  .light-scenario__visual {
    aspect-ratio: 16 / 6.8;
  }
  .light-scenario__cards {
    grid-template-columns: 1fr;
  }
  .light-scenario__card,
  .light-scenario__card--effect {
    grid-column: auto;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .light-scenario {
    padding-top: 22px;
    padding-bottom: 0;
  }
  .light-scenario__tabs {
    margin-top: 20px;
  }
  .light-scenario__tab {
    min-height: 54px;
    padding-inline: 10px;
  }
  .light-scenario__panel {
    padding-top: 14px;
  }
  .light-scenario__visual {
    aspect-ratio: 4 / 2.15;
  }
  .light-scenario__visual-image {
    object-position: 40% center;
  }
  .light-scenario__cards {
    gap: 12px;
    margin-top: 12px;
  }
  .light-scenario__card {
    padding: 17px;
    border-radius: 15px;
  }
  .light-scenario__guide-params {
    grid-template-columns: 1fr;
  }
  .light-scenario__apply-preset {
    width: 100%;
    min-height: 48px;
    padding-inline: 14px;
    text-align: center;
  }
}

/* ===================================================================
   Filter
   =================================================================== */

.picker {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.picker__head {
  padding: 28px 0 22px;
}

.picker__title {
  max-width: none;
  margin: 0;
  font-size: clamp(34px, 3.35vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.picker__lead {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.mode-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 64px;
  margin: 0 0 -1px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.mode-tab {
  position: relative;
  display: grid;
  grid-template-columns: 30px auto;
  flex: 0 1 auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px 8px 0 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.mode-tab + .mode-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--line-soft);
}
.mode-tab svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mode-tab span { display: grid; gap: 3px; }
.mode-tab small { font-size: 12px; font-weight: 400; }
.mode-tab strong { color: var(--text); font-size: 15px; font-weight: 600; }
.mode-tab:hover:not(.is-active) { color: #d5d2c9; background: rgba(255, 255, 255, .02); }
.mode-tab.is-active {
  z-index: 1;
  border: 1px solid var(--line);
  border-bottom-color: var(--panel);
  color: var(--orange);
  background: var(--panel);
  box-shadow: none;
}
.mode-tab.is-active strong { color: var(--orange); }
.mode-tab.is-active::before { opacity: 0; }
.mode-tab:focus-visible,
.facet__info:focus-visible,
.facet-option:focus-visible,
.primary-button:focus-visible,
.clear-button:focus-visible,
.chip button:focus-visible,
.edit-filters:focus-visible,
.hide-results:focus-visible,
.load-more-button:focus-visible,
.product-action:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.filter-shell {
  scroll-margin-top: 18px;
}
.filter-panel { display: none; }
.filter-panel.is-visible { display: block; }

.facet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 12px 12px 0 0;
  background: var(--line);
  overflow: hidden;
}
#params-facets {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.96fr) minmax(0, 1.04fr) minmax(0, 1.18fr);
}
.facet {
  position: relative;
  min-height: 172px;
  padding: 22px 20px;
  border: 0;
  background: linear-gradient(145deg, var(--panel-elevated), var(--panel));
}
.facet__title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .005em;
}
.facet__info {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  color: #a3a9ac;
  background: transparent;
  cursor: help;
  font: inherit;
  font-size: 10px;
  line-height: 1;
  text-align: center;
}
.facet__info:hover,
.facet__info[aria-expanded="true"] { border-color: var(--orange); color: var(--orange); }
.facet__tooltip {
  position: absolute;
  z-index: 5;
  top: 54px;
  left: 20px;
  right: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 224, 150, .24);
  border-radius: 10px;
  color: #e6e8e9;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .42);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}
.facet__tooltip[hidden] { display: none; }
.facet__options { display: flex; flex-wrap: wrap; gap: 8px; }
.facet--power .facet__options {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.facet--power .facet-option:nth-child(-n + 3) { grid-column: span 2; }
.facet--power .facet-option:nth-child(n + 4) { grid-column: span 3; }
.facet--power .facet-option {
  padding-inline: 8px;
  font-size: 14px;
  white-space: nowrap;
}
.facet-option {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 7px;
  color: #e5e7e8;
  background: rgba(255, 255, 255, .025);
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
}
.facet-option:hover:not(.is-unavailable) {
  border-color: rgba(255, 224, 150, .48);
  background: rgba(255, 224, 150, .055);
  transform: translateY(-1px);
}
.facet-option.is-selected {
  border-color: var(--orange);
  color: #211b0e;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16), inset 0 1px rgba(255, 255, 255, .38);
}
.facet-option.is-unavailable {
  border-color: rgba(255, 255, 255, .08);
  color: #8c9295;
  background: rgba(255, 255, 255, .018);
  box-shadow: none;
  cursor: not-allowed;
  opacity: .55;
}
.availability-tooltip {
  position: fixed;
  z-index: 100;
  width: max-content;
  max-width: min(280px, calc(100vw - 24px));
  padding: 10px 12px;
  border: 1px solid rgba(255, 224, 150, .24);
  border-radius: 10px;
  color: #eceeef;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .44);
  font-size: 12px;
  line-height: 1.45;
  pointer-events: none;
  transform: translateX(-50%);
}
.availability-tooltip[hidden] { display: none; }
.facet-grid--task { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.facet-grid--task .facet {
  min-height: 172px;
  border: 0;
}

.selection-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  padding: 14px 26px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: var(--panel-deep);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}
.selection-summary {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 24px;
}
.selection-summary > span { flex: 0 0 auto; color: #c6cbcd; font-size: 14px; }
.selection-summary strong { margin-left: 3px; color: var(--orange); font-size: 24px; line-height: 1; }
.selection-chips { display: flex; flex-wrap: wrap; gap: 7px; min-width: 0; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  color: #dce0e2;
  background: rgba(255, 255, 255, .025);
  font-size: 13px;
  white-space: nowrap;
}
.chip button {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  color: #b8bec1;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  line-height: 16px;
}
.selection-actions { display: flex; align-items: center; gap: 34px; flex: 0 0 auto; }
.clear-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: #f2f3f3;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
}
.clear-button:disabled { opacity: .38; cursor: default; }
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  color: #17130a;
  background: var(--orange);
  box-shadow: 0 10px 28px rgba(255, 224, 150, .1);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.primary-button:hover { color: #17130a; background: var(--orange-2); transform: translateY(-1px); }
.primary-button__arrow { font-size: 20px; font-weight: 400; }

.results-section { scroll-margin-top: 18px; }
.results-section[hidden] { display: none; }
.results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 0;
}
.results-title {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}
.results-title span { color: var(--orange); }
.results-summary {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.results-head__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}
.edit-filters,
.hide-results {
  flex: 0 0 auto;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
}
.edit-filters {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: #f0f2f2;
  background: transparent;
}
.hide-results {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .025);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.hide-results:hover {
  border-color: rgba(255, 224, 150, .38);
  color: var(--text);
  background: rgba(255, 224, 150, .045);
}

.results {
  display: block;
  padding: 24px 0 32px;
}
.results[hidden] { display: none; }
.product-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
  transition: background-color .18s ease, border-color .18s ease;
}
.product-list-item:nth-child(odd) { background: #111314; }
.product-list-item:nth-child(even) { background: #181a1b; }
.product-list-item:first-child {
  border-top: 1px solid var(--line-soft);
  border-radius: 10px 10px 0 0;
}
.product-list-item:last-child { border-radius: 0 0 10px 10px; }
.product-list-item:hover {
  border-color: rgba(255, 224, 150, .14);
  background: #202223;
}
.product-list-item__title {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}
.product-list-item__copy { display: grid; gap: 5px; min-width: 0; }
.product-list-item__specs {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.product-list-item__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .18s ease, background .18s ease, color .18s ease, filter .18s ease;
}
.product-action--build {
  border: 1px solid #ffe096;
  color: #17130a;
  background: #ffe096;
  box-shadow: 0 8px 22px rgba(255, 224, 150, .08);
}
.product-action--details {
  border: 1px solid rgba(255, 255, 255, .24);
  color: var(--text);
  background: transparent;
}
.product-action--build:hover { color: #17130a; background: var(--orange-2); }
.product-action--details:hover { border-color: #ffe096; color: #ffe096; }
.results-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 0 36px;
  color: var(--muted);
  font-size: 12px;
}
.results-more[hidden] { display: none; }
.load-more-button {
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  color: var(--orange);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}
.load-more-button:hover { color: var(--orange-2); background: rgba(255, 224, 150, .08); }
.empty-state {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
}
.empty-state strong { display: block; margin-bottom: 8px; color: var(--text); font-size: 20px; }

/* ===================================================================
   Filter — Responsive
   =================================================================== */

@media (max-width: 1180px) {
  .selection-bar { align-items: flex-start; flex-wrap: wrap; }
  .selection-summary { flex: 1 1 520px; }
  .selection-actions { margin-left: auto; }
}

@media (max-width: 980px) {
  .facet-grid,
  .facet-grid--task { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #params-facets { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facet-grid--task .facet:last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .picker__head { padding: 22px 0 20px; }
  .picker__title { font-size: 30px; }
  .picker__lead { margin-top: 12px; font-size: 15px; line-height: 1.5; }
  .mode-tab { grid-template-columns: 24px minmax(0, 1fr); gap: 8px; padding: 12px 10px; }
  .mode-tab svg { width: 22px; height: 22px; }
  .mode-tab strong { font-size: 13px; }
  .mode-tab small { font-size: 10px; }
  .facet-grid,
  .facet-grid--task { grid-template-columns: 1fr; }
  #params-facets { grid-template-columns: 1fr; }
  .facet-grid--task .facet:last-child { grid-column: auto; }
  .facet,
  .facet-grid--task .facet { min-height: auto; padding: 22px 18px; }
  .facet__info { width: 28px; height: 28px; }
  .facet__tooltip { top: 54px; left: 18px; right: 18px; }
  .facet--power .facet-option { padding-inline: 3px; font-size: 12px; }
  .selection-bar {
    min-height: 68px;
    padding: 10px 18px;
    background: var(--panel-deep);
    box-shadow: 0 -16px 44px rgba(0, 0, 0, .48);
  }
  .selection-summary { display: none; }
  .selection-actions { width: 100%; margin-left: 0; gap: 14px; justify-content: space-between; }
  .clear-button:disabled { display: none; }
  .primary-button { flex: 1 1 auto; gap: 10px; padding: 0 14px; }
  .results-head { align-items: flex-start; flex-direction: column; gap: 14px; padding: 24px 0 0; }
  .results-title { font-size: 20px; }
  .results-head__actions { width: 100%; flex-wrap: wrap; justify-content: space-between; gap: 10px 16px; }
  .results { padding: 20px 0 26px; }
  .results-more { padding: 0 0 28px; }
  .load-more-button { width: 100%; }
  .product-list-item { grid-template-columns: 1fr; gap: 14px; padding: 18px 16px; }
  .product-list-item__actions { width: 100%; }
  .product-action { flex: 1 1 0; padding: 0 12px; }
}

@media (max-width: 420px) {
  .mode-tab { grid-template-columns: 1fr; }
  .mode-tab svg,
  .mode-tab small { display: none; }
  .mode-tab span { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
