/*
 * Product Finder design contract.
 * Add the CSS class "aero-finder" to the outer Avada container. The inner
 * classes can be mapped to the final finder markup once its screenshot/HTML is
 * available, without changing the global theme.
 */
.aero-b2b-site .aero-finder {
  background: var(--aero-white);
  border: 1px solid var(--aero-line);
  border-radius: var(--aero-radius-lg);
  box-shadow: var(--aero-shadow);
  overflow: hidden;
}

.aero-b2b-site .aero-finder__header {
  background: linear-gradient(145deg, #0b1830, #123466);
  color: var(--aero-white);
  padding: clamp(28px, 5vw, 50px);
}
.aero-b2b-site .aero-finder__header h2 { color: var(--aero-white); font-size: clamp(28px, 4vw, 42px); margin: 0 0 10px; }
.aero-b2b-site .aero-finder__header p { color: #cbd8eb; margin: 0; max-width: 700px; }

.aero-b2b-site .aero-finder__body { display: grid; grid-template-columns: minmax(220px, 280px) 1fr; min-height: 480px; }
.aero-b2b-site .aero-finder__filters { background: var(--aero-surface); border-right: 1px solid var(--aero-line); padding: 26px; }
.aero-b2b-site .aero-finder__filter { border-bottom: 1px solid var(--aero-line); margin-bottom: 20px; padding-bottom: 20px; }
.aero-b2b-site .aero-finder__filter:last-child { border-bottom: 0; }
.aero-b2b-site .aero-finder__filter-title { color: var(--aero-ink); display: block; font-size: 12px; font-weight: 800; letter-spacing: .04em; margin-bottom: 10px; text-transform: uppercase; }
.aero-b2b-site .aero-finder__options { display: grid; gap: 8px; }
.aero-b2b-site .aero-finder__options label { align-items: center; display: flex; gap: 8px; }

.aero-b2b-site .aero-finder__results { padding: clamp(24px, 4vw, 38px); }
.aero-b2b-site .aero-finder__toolbar { align-items: center; border-bottom: 1px solid var(--aero-line); display: flex; gap: 14px; justify-content: space-between; margin-bottom: 22px; padding-bottom: 18px; }
.aero-b2b-site .aero-finder__count { color: var(--aero-muted); font-size: 13px; font-weight: 650; }
.aero-b2b-site .aero-finder__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.aero-b2b-site .aero-finder__chip { background: var(--aero-surface-blue); border: 1px solid #c9ddf9; border-radius: 999px; color: var(--aero-blue-dark); font-size: 12px; font-weight: 700; padding: 7px 10px; }
.aero-b2b-site .aero-finder__grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.aero-b2b-site .aero-finder__result { align-items: center; background: var(--aero-white); border: 1px solid var(--aero-line); border-radius: var(--aero-radius); display: grid; gap: 18px; grid-template-columns: 92px 1fr; padding: 18px; }
.aero-b2b-site .aero-finder__result:hover { border-color: #abc8ef; box-shadow: var(--aero-shadow-sm); transform: translateY(-2px); }
.aero-b2b-site .aero-finder__result-image { align-items: center; aspect-ratio: 1; background: var(--aero-surface); border-radius: 9px; display: flex; justify-content: center; overflow: hidden; }
.aero-b2b-site .aero-finder__result-image img { height: 100%; object-fit: contain; width: 100%; }
.aero-b2b-site .aero-finder__result h3 { font-size: 16px; margin: 0 0 5px; }
.aero-b2b-site .aero-finder__result p { font-size: 13px; line-height: 1.5; margin: 0; }

@media (max-width: 900px) {
  .aero-b2b-site .aero-finder__body { grid-template-columns: 1fr; }
  .aero-b2b-site .aero-finder__filters { border-bottom: 1px solid var(--aero-line); border-right: 0; }
}

@media (max-width: 600px) {
  .aero-b2b-site .aero-finder__grid { grid-template-columns: 1fr; }
  .aero-b2b-site .aero-finder__toolbar { align-items: stretch; flex-direction: column; }
}
