/* AJAW Trade — brand pictogram icons (public/icons-brand.js output).
   Sizing/alignment only; color lives in the SVG itself. */

.bico {
  display: inline-block;
  flex: none;
  vertical-align: middle;
  overflow: visible;
}

/* Quick-action cards ("Source by category" / "Request for Quotation" /
   "Top Ranking") — icon sits above or beside the label, never stretched. */
.quick-action .bico,
.panel-cats .bico,
.factory-category .bico,
.welcome-strip-links .bico {
  width: 28px;
  height: 28px;
}

/* Filter chips ("All" / "Super" / "US local stock" / "Top Deals") — a
   touch smaller so they sit comfortably inline with chip text. */
.chip .bico,
.filter-chip .bico,
.results-chips .bico {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

/* Gentle lift on hover/focus for interactive icon rows; skipped entirely
   for users who asked for reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  a:hover > .bico,
  button:hover > .bico {
    transition: transform 0.15s ease;
    transform: translateY(-1px) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  a:hover > .bico,
  button:hover > .bico {
    transition: none;
    transform: none;
  }
}
