/*********************************************************************
 * C:/Apache24/sites/apptemplate/v1/Business/Modules/MarketplaceSearch/Assets/css/marketplace-search.css
 * @title 🎨 Recherche unifiée publique Marketplace
 * @description Met en forme le hero partagé avec des filtres rapides parfaitement uniformes, le panneau avancé, les suggestions et la vue Liste/Carte.
 *********************************************************************/

.professional-directory__search {
  position: relative;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 10px;
}

.marketplace-search-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.marketplace-search-main .professional-directory__keyword {
  min-width: 0;
}

.marketplace-search-main
  .professional-directory__keyword
  > span {
  text-align: left;
}

.marketplace-search-main
  .professional-directory__keyword
  input {
  min-height: 58px;
  padding-left: 44px;
  padding-right: 18px;
  border-radius: 18px;
  background: #fff;
  font-size: .86rem;
  box-shadow: 0 12px 35px rgba(25, 49, 58, .06);
}

.marketplace-search-main
  .professional-directory__keyword
  i.fa-magnifying-glass {
  left: 16px;
  font-size: .88rem;
}

.marketplace-search-main
  > button[type="submit"] {
  min-height: 58px;
  padding-inline: 21px;
  border-radius: 18px;
  white-space: nowrap;
}

.marketplace-search-hero {
  position: relative;
  z-index: 20;
  width: min(100%, 1180px);
  margin-inline: auto;
  overflow: visible;
  view-transition-name: marketplace-search-hero;
}

.marketplace-search-hero__form {
  z-index: 30;
}

.marketplace-search-quick-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.marketplace-search-quick-filter {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(29, 57, 65, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #687c80 !important;
  font: inherit;
  font-size: .63rem;
  font-weight: 780;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: none;
  transition:
    background .16s ease,
    border-color .16s ease,
    color .16s ease,
    box-shadow .16s ease,
    transform .16s ease;
}

.marketplace-search-quick-filter:hover {
  border-color: rgba(77, 116, 101, .18);
  background: #fff;
  color: #496c5e !important;
  transform: translateY(-1px);
}

.marketplace-search-quick-filter.is-active {
  border-color: rgba(79, 133, 110, .22);
  background: #e9f4ee;
  color: #3f6f5b !important;
  box-shadow:
    inset 0 0 0 1px rgba(89, 145, 121, .05),
    0 5px 14px rgba(55, 101, 82, .06);
}

.marketplace-search-quick-filter > span {
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(71, 115, 96, .12);
  color: #3f6c59;
  font-size: .52rem;
  font-weight: 900;
}

.marketplace-search-filter-toggle {
  appearance: none;
}

/*
 * Le bouton Filtres reste volontairement identique aux autres
 * filtres rapides : même pilule, même hauteur, même fond et même
 * niveau visuel. Les règles plus générales des boutons de formulaire
 * ne doivent jamais le transformer en CTA principal sombre.
 */
.marketplace-search-quick-controls
  .marketplace-search-filter-toggle {
  min-height: 34px;
  width: auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 0 11px;
  border: 1px solid rgba(29, 57, 65, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #687c80 !important;
  font: inherit;
  font-size: .63rem;
  font-weight: 780;
  line-height: 1;
  box-shadow: none;
  cursor: pointer;
}

.marketplace-search-quick-controls
  .marketplace-search-filter-toggle:hover {
  border-color: rgba(77, 116, 101, .18);
  background: #fff;
  color: #496c5e !important;
  box-shadow: none;
}

.marketplace-search-quick-controls
  .marketplace-search-filter-toggle.is-active {
  border-color: rgba(79, 133, 110, .22);
  background: #e9f4ee;
  color: #3f6f5b !important;
  box-shadow:
    inset 0 0 0 1px rgba(89, 145, 121, .05),
    0 5px 14px rgba(55, 101, 82, .06);
}

.marketplace-search-filter-backdrop[hidden],
.marketplace-search-filter-panel[hidden] {
  display: none !important;
}

.marketplace-search-filter-backdrop {
  display: none;
}

.marketplace-search-filter-panel {
  position: absolute;
  z-index: 150;
  top: calc(100% + 12px);
  left: 50%;
  width: min(820px, calc(100% - 18px));
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid rgba(28, 51, 59, .10);
  border-radius: 24px;
  background: rgba(255, 255, 255, .985);
  box-shadow:
    0 34px 90px rgba(19, 43, 52, .18),
    0 10px 30px rgba(19, 43, 52, .08);
  backdrop-filter: blur(20px);
  text-align: left;
  transform-origin: top center;
  animation: marketplaceFilterPanelIn .18s ease-out;
}

@keyframes marketplaceFilterPanelIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.marketplace-search-filter-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 19px 20px 15px;
  border-bottom: 1px solid rgba(28, 51, 59, .07);
}

.marketplace-search-filter-panel__header > div {
  min-width: 0;
}

.marketplace-search-filter-panel__header span {
  display: block;
  color: #678078;
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.marketplace-search-filter-panel__header h2 {
  margin: 3px 0 0;
  color: var(--mpp-ink);
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.marketplace-search-filter-panel__header p {
  margin: 5px 0 0;
  color: var(--mpp-muted);
  font-size: .63rem;
  line-height: 1.45;
}

.marketplace-search-filter-panel__header > button {
  width: 34px;
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--mpp-line);
  border-radius: 11px;
  background: var(--mpp-soft);
  color: var(--mpp-muted);
  cursor: pointer;
}

.marketplace-search-filter-panel__body {
  display: grid;
  gap: 18px;
  padding: 18px 20px;
}

.marketplace-search-filter-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.marketplace-search-filter-fields label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.marketplace-search-filter-fields label > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--mpp-ink-soft);
  font-size: .62rem;
  font-weight: 850;
}

.marketplace-search-filter-fields label > span i {
  color: #5c7d72;
  font-size: .6rem;
}

.marketplace-search-filter-fields select {
  width: 100%;
  min-height: 44px;
  padding: 0 38px 0 12px;
  border: 1px solid var(--mpp-line);
  border-radius: 13px;
  background: var(--mpp-soft);
  color: var(--mpp-ink);
  font: inherit;
  font-size: .67rem;
}

.marketplace-search-filter-choice {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.marketplace-search-filter-choice legend {
  margin-bottom: 8px;
  color: var(--mpp-ink-soft);
  font-size: .62rem;
  font-weight: 850;
}

.marketplace-search-filter-choice > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.marketplace-search-filter-choice label {
  display: inline-flex;
}

.marketplace-search-filter-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.marketplace-search-filter-choice span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid var(--mpp-line);
  border-radius: 999px;
  background: #fff;
  color: var(--mpp-muted);
  font-size: .61rem;
  font-weight: 780;
  cursor: pointer;
  transition:
    border-color .14s ease,
    background .14s ease,
    color .14s ease;
}

.marketplace-search-filter-choice input:focus-visible + span {
  outline: 3px solid rgba(70, 124, 105, .14);
  outline-offset: 2px;
}

.marketplace-search-filter-choice input:checked + span {
  border-color: rgba(79, 133, 110, .23);
  background: #e9f4ee;
  color: #3e6e5a;
}

.marketplace-search-filter-panel__footer {
  min-height: 62px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 11px 20px;
  border-top: 1px solid rgba(28, 51, 59, .07);
  background: #fbfcfc;
}

.marketplace-search-filter-panel__footer > a {
  color: var(--mpp-muted) !important;
  font-size: .61rem;
  font-weight: 780;
}

.marketplace-search-filter-panel__footer > button {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: var(--mpp-accent);
  color: #fff;
  font: inherit;
  font-size: .65rem;
  font-weight: 850;
  cursor: pointer;
}

.marketplace-search-hero__reset {
  margin-top: 10px;
}

.marketplace-search-suggestions {
  position: absolute;
  z-index: 80;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: min(520px, 64vh);
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(28, 51, 59, .11);
  border-radius: 19px;
  background: rgba(255, 255, 255, .98);
  box-shadow:
    0 28px 70px rgba(19, 43, 52, .16),
    0 8px 24px rgba(19, 43, 52, .08);
  backdrop-filter: blur(14px);
}

.marketplace-search-suggestions[hidden] {
  display: none !important;
}

.marketplace-search-suggestions__group + .marketplace-search-suggestions__group {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(28, 51, 59, .07);
}

.marketplace-search-suggestions__heading {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 8px;
}

.marketplace-search-suggestions__heading strong {
  color: var(--mpp-ink-soft);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.marketplace-search-suggestions__heading span {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mpp-soft);
  color: var(--mpp-muted);
  font-size: .56rem;
  font-weight: 850;
}

.marketplace-search-suggestions__list {
  display: grid;
  gap: 2px;
}

.marketplace-search-suggestion {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  color: var(--mpp-ink) !important;
  text-decoration: none;
  transition:
    background .14s ease,
    transform .14s ease;
}

.marketplace-search-suggestion:hover,
.marketplace-search-suggestion.is-active {
  background: var(--mpp-soft);
  transform: translateY(-1px);
  text-decoration: none;
}

.marketplace-search-suggestion__visual {
  width: 42px;
  height: 42px;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    var(--mpp-mint),
    var(--mpp-blue)
  );
  color: #52766b;
}

.marketplace-search-suggestion__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.marketplace-search-suggestion__body {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.marketplace-search-suggestion__body strong,
.marketplace-search-suggestion__subtitle,
.marketplace-search-suggestion__meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marketplace-search-suggestion__body strong {
  color: var(--mpp-ink);
  font-size: .73rem;
  font-weight: 850;
}

.marketplace-search-suggestion__subtitle {
  color: var(--mpp-ink-soft);
  font-size: .63rem;
}

.marketplace-search-suggestion__meta {
  display: flex;
  gap: 5px;
  color: var(--mpp-muted);
  font-size: .57rem;
  font-weight: 700;
}

.marketplace-search-suggestion > i:last-child {
  color: var(--mpp-muted);
  font-size: .65rem;
}

.marketplace-search-suggestions__empty {
  padding: 15px 11px;
  color: var(--mpp-muted);
  font-size: .66rem;
  line-height: 1.5;
  text-align: center;
}

@media(max-width: 980px) {
  .marketplace-search-filters__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width: 650px) {
  .marketplace-search-main {
    grid-template-columns: 1fr;
  }

  .marketplace-search-main
    > button[type="submit"] {
    width: 100%;
  }

  .marketplace-search-main
    .professional-directory__keyword
    input {
    min-height: 54px;
    font-size: .8rem;
  }

  .marketplace-search-filters__grid {
    grid-template-columns: 1fr;
  }

  /*
   * 📱 MOBILE-SEARCH-SUGGESTIONS-1B
   * Le panneau est un enfant direct de .marketplace-smart-search__bar :
   * on le remet dans le flux entre le champ mot-clé et le sélecteur de lieu.
   * Ainsi il reste visible au-dessus du clavier iPhone.
   */
  .marketplace-smart-search__bar
    > .marketplace-search-suggestions,
  .marketplace-search-main
    > .marketplace-search-suggestions {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-height: min(320px, 38dvh);
    margin-top: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 16px;
    -webkit-overflow-scrolling: touch;
  }

  .marketplace-search-suggestion {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .marketplace-search-suggestion__visual {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .marketplace-search-suggestion > i:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketplace-search-filters__chevron,
  .marketplace-search-suggestion {
    transition: none;
  }
}


/* ======================================================
   🗺️ LISTE / CARTE SYNCHRONISÉE — LOT 12C3-B
   ====================================================== */

.marketplace-results-view-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--mpp-line);
  border-radius: 14px;
  background: #fff;
}

.marketplace-results-view-switch button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--mpp-muted);
  font-size: .63rem;
  font-weight: 850;
  cursor: pointer;
}

.marketplace-results-view-switch button.is-active {
  background: var(--mpp-mint);
  color: #3f725d;
}

.marketplace-results-shell {
  display: block;
}

.marketplace-results-layout {
  min-width: 0;
}

.marketplace-results-list {
  min-width: 0;
}

.marketplace-results-map-panel {
  display: none;
  min-width: 0;
}

.marketplace-results-shell.is-map-view
  .marketplace-results-layout {
  display: grid;
  grid-template-columns: minmax(380px, .86fr) minmax(470px, 1.14fr);
  gap: 15px;
  align-items: start;
}

.marketplace-results-shell.is-map-view
  .marketplace-results-list {
  max-height: min(690px, calc(100vh - 175px));
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

.marketplace-results-shell.is-map-view
  .professional-directory__grid {
  grid-template-columns: 1fr;
}

.marketplace-results-shell.is-map-view
  .marketplace-results-map-panel {
  display: block;
  position: sticky;
  top: 16px;
}

.marketplace-map-card {
  overflow: hidden;
  border: 1px solid var(--mpp-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(24, 49, 58, .08);
}

.marketplace-map-card__head {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(28, 51, 59, .07);
}

.marketplace-map-card__head > div {
  min-width: 0;
}

.marketplace-map-card__head strong {
  display: block;
  color: var(--mpp-ink);
  font-size: .7rem;
  font-weight: 900;
}

.marketplace-map-card__head span {
  display: block;
  margin-top: 2px;
  color: var(--mpp-muted);
  font-size: .57rem;
}

.marketplace-map-card__provider {
  flex: 0 0 auto;
  max-width: 220px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--mpp-soft);
  color: var(--mpp-muted) !important;
  font-size: .53rem !important;
  font-weight: 800;
  text-align: right;
}

.marketplace-map {
  width: 100%;
  height: min(640px, calc(100vh - 235px));
  min-height: 460px;
  background:
    linear-gradient(
      135deg,
      #eef5f3,
      #edf4f8
    );
}

.marketplace-map.is-unavailable {
  display: grid;
  place-items: center;
}

.marketplace-map-state {
  max-width: 360px;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 24px;
  color: var(--mpp-muted);
  text-align: center;
}

.marketplace-map-state > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  color: #52766b;
  font-size: 1rem;
}

.marketplace-map-state strong {
  color: var(--mpp-ink);
  font-size: .76rem;
}

.marketplace-map-state span {
  font-size: .62rem;
  line-height: 1.5;
}

.marketplace-map-marker-shell {
  background: transparent;
  border: 0;
}

.marketplace-map-marker {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 14px;
  transform: rotate(-45deg);
  background: #365f52;
  color: #fff;
  box-shadow: 0 7px 18px rgba(35, 69, 59, .28);
  transition:
    transform .15s ease,
    box-shadow .15s ease;
}

.marketplace-map-marker > i {
  transform: rotate(45deg);
  font-size: .74rem;
}

.marketplace-map-marker.is-approximate {
  background: #6d8b82;
  border-style: solid;
}

.marketplace-map-marker-shell.is-highlighted
  .marketplace-map-marker {
  transform:
    rotate(-45deg)
    scale(1.15);
  box-shadow: 0 10px 28px rgba(35, 69, 59, .38);
}

.marketplace-map-popup {
  min-width: 205px;
  display: grid;
  gap: 4px;
  font-family: var(--marketplace-font-sans, "Manrope", sans-serif);
}

.marketplace-map-popup__precision {
  justify-self: start;
  padding: 4px 7px;
  border-radius: 999px;
  background: #edf5f1;
  color: #487361;
  font-size: .55rem;
  font-weight: 850;
}

.marketplace-map-popup > strong {
  color: #1c3038;
  font-size: .76rem;
}

.marketplace-map-popup__profession,
.marketplace-map-popup__location,
.marketplace-map-popup__matches {
  color: #667981;
  font-size: .61rem;
  line-height: 1.4;
}

.marketplace-map-popup__matches {
  padding-top: 3px;
  border-top: 1px solid rgba(28, 51, 59, .08);
}

.marketplace-map-popup > a {
  justify-self: start;
  margin-top: 4px;
  color: #3f725d !important;
  font-size: .62rem;
  font-weight: 850;
  text-decoration: none;
}

.marketplace-results-shell.is-map-view
  .professional-directory-card {
  transition:
    border-color .16s ease,
    box-shadow .16s ease,
    transform .16s ease;
}

.marketplace-results-shell.is-map-view
  .professional-directory-card.is-map-highlighted {
  border-color: rgba(71, 124, 104, .34);
  box-shadow: 0 18px 38px rgba(50, 91, 76, .14);
  transform: translateY(-1px);
}

.marketplace-map-privacy-note {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 8px 11px;
  border-top: 1px solid rgba(28, 51, 59, .07);
  background: #fbfcfc;
  color: var(--mpp-muted);
  font-size: .55rem;
  line-height: 1.4;
}

.marketplace-map-privacy-note i {
  color: #55766c;
}

@media(max-width: 1050px) {
  .marketplace-results-shell.is-map-view
    .marketplace-results-layout {
    grid-template-columns: minmax(320px, .8fr) minmax(390px, 1.2fr);
  }
}

@media(max-width: 900px) {
  .marketplace-results-view-switch {
    width: 100%;
  }

  .marketplace-results-view-switch button {
    flex: 1 1 50%;
  }

  .marketplace-results-shell.is-map-view
    .marketplace-results-layout {
    display: block;
  }

  .marketplace-results-shell.is-map-view
    .marketplace-results-list {
    display: none;
  }

  .marketplace-results-shell.is-map-view
    .marketplace-results-map-panel {
    position: static;
  }

  .marketplace-map {
    height: min(68vh, 620px);
    min-height: 430px;
  }
}

@media(max-width: 650px) {
  .marketplace-map-card {
    border-radius: 18px;
  }

  .marketplace-map {
    min-height: 390px;
  }

  .marketplace-map-card__head {
    align-items: flex-start;
  }

  .marketplace-map-card__provider {
    max-width: 150px;
  }
}


/* ======================================================
   ✨ CONTINUITÉ VISUELLE ENTRE / ET /professionnels
   ====================================================== */

@view-transition {
  navigation: auto;
}

::view-transition-old(marketplace-search-hero),
::view-transition-new(marketplace-search-hero) {
  animation-duration: .22s;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
}

@media(max-width: 760px) {
  .marketplace-search-quick-controls {
    justify-content: flex-start;
  }

  .marketplace-search-quick-filter {
    min-height: 33px;
    font-size: .59rem;
  }

  .marketplace-search-filter-backdrop:not([hidden]) {
    position: fixed;
    z-index: 9990;
    inset: 0;
    display: block;
    background: rgba(17, 35, 42, .22);
    backdrop-filter: blur(2px);
  }

  .marketplace-search-filter-panel {
    position: fixed;
    z-index: 9991;
    top: auto;
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    max-height: min(78vh, 680px);
    overflow-y: auto;
    transform: none;
    border-radius: 24px;
    animation: marketplaceFilterSheetIn .22s ease-out;
  }

  @keyframes marketplaceFilterSheetIn {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .marketplace-search-filter-fields {
    grid-template-columns: 1fr;
  }

  .marketplace-search-filter-panel__footer {
    position: sticky;
    bottom: 0;
  }
}

@media(max-width: 520px) {
  .marketplace-search-quick-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .marketplace-search-quick-filter {
    width: 100%;
    padding-inline: 8px;
  }

  .marketplace-search-quick-controls
    .marketplace-search-filter-toggle {
    width: 100%;
    min-height: 33px;
    padding-inline: 8px;
    font-size: .59rem;
  }

  .marketplace-search-filter-panel__header,
  .marketplace-search-filter-panel__body,
  .marketplace-search-filter-panel__footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .marketplace-search-filter-panel__footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .marketplace-search-filter-panel__footer > a,
  .marketplace-search-filter-panel__footer > button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketplace-search-filter-panel,
  .marketplace-search-quick-filter {
    animation: none;
    transition: none;
  }
}
