.brand-wall { padding: 24px 0; }
.brand-wall__title { font-size: 1.7rem; margin: 0 0 18px; text-align: center; }
/* Toolbar centered, search on top */
.brand-wall__toolbar {
  display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: center;
  margin: 0 auto 16px; max-width: 780px;
}
.brand-wall__search {
  width: 100%; max-width: 520px; padding: 12px 14px; border: 2px solid #3f51b5; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(63,81,181,.08);
  font-size: 14px;
}
.brand-wall__btn { padding: 10px 14px; border: 1px solid #2e7d32; border-radius: 8px; background: #43a047; color: #fff; cursor: pointer; }
.brand-wall__btn:hover { opacity: .95; }
/* Alphabet as colorful boxes */
.brand-wall__alphabet { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.brand-wall__alpha {
  display: inline-block; min-width: 36px; text-align: center;
  padding: 8px 10px; border-radius: 10px; text-decoration: none;
  background: #e8f0fe; color: #1a237e; border: 1px solid #c5cae9;
  font-weight: 600; box-shadow: 0 2px 6px rgba(26,35,126,.06);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.brand-wall__alpha:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(26,35,126,.12); }
.brand-wall__alpha.is-active {
  background: #3f51b5; color: #fff; border-color: #3f51b5; box-shadow: 0 4px 12px rgba(63,81,181,.25);
}
.brand-wall__grid { display: grid; gap: 16px; }
.brand-wall__item {
  display: block; background: #fff; border: 1px solid #eee; border-radius: 12px; text-align: center; padding: 14px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.brand-wall__item:hover { box-shadow: 0 6px 18px rgba(0,0,0,.06); transform: translateY(-2px); }
.brand-wall__figure { margin: 0; }
.brand-wall__figure img { max-width: 100%; max-height: 78px; object-fit: contain; }
.brand-wall__name { font-size: .95rem; margin-top: 10px; color: #333; display: inline-flex; gap: 6px; align-items: center; }
.brand-wall__badge { font-size: .72rem; padding: 2px 8px; background: #ffd54f; border-radius: 12px; color: #5d4037; }
.brand-wall__empty { color: #888; text-align:center; }
