.store-badge {
  display: grid;
  place-items: center;
  width: 160px;
  height: 50px;
  background: #000;
  border-radius: 7px;
  overflow: hidden;
  transition: transform .2s ease;
}

.store-badge:hover { transform: translateY(-2px); }

.store-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 370px) {
  .store-badge,
  .store-badge { width: 146px; height: 45px; }
}
