.store-browser {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.store-tabs {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  border: 0;
  background: transparent;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
}

.store-tab {
  min-height: 78px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border: 1px solid #cad6df;
}

.store-tab-image {
  width: 72px;
  height: 60px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #edf2f5;
}

.store-tab-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.store-tab small {
  margin-bottom: 4px;
  font-size: 9px;
}

.store-tab b {
  display: block;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.store-tab.active .store-tab-image,
.store-tab:hover .store-tab-image {
  background: #fff;
}

.store-content { min-width: 0; }

@media (max-width: 900px) {
  .store-browser { grid-template-columns: 1fr; }
  .store-tabs {
    position: static;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
  }
  .store-tab { min-width: 245px; }
}

@media (max-width: 520px) {
  .store-tab { min-width: 215px; grid-template-columns: 58px 1fr; }
  .store-tab-image { width: 58px; height: 54px; }
}
