.bc-app-bar__button {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 1.65rem;
}

.bc-app-bar__stores {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
}

.bc-app-bar__icon {
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: transform .2s ease, background .2s ease;
}

.bc-app-bar__icon svg {
  width: .7rem;
  height: .7rem;
  fill: currentColor;
}

.bc-app-bar__button:hover .bc-app-bar__icon {
  transform: translateY(-1px);
  background: rgba(255,255,255,.2);
}

@media (max-width: 420px) {
  .bc-app-bar__button { gap: .4rem; font-size: .72rem; }
  .bc-app-bar__stores { gap: .2rem; }
}
