.shop-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}
.shop-card {
  background:#1a1f2e;
  border-radius:16px;
  padding:10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  box-shadow:0 2px 8px rgba(0,0,0,.3);
}
.shop-thumb {
  width:100%;
  aspect-ratio:1/1;
  border-radius:12px;
  overflow:hidden;
  background:#222;
}
.shop-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.shop-name {
  font-weight:600;
  margin-top:8px;
}
.shop-id {
  font-size:12px;
  opacity:.6;
}
.shop-price {
  margin:6px 0;
  font-weight:600;
  color:#4dd0e1;
}
.buy-btn {
  width:100%;
  margin-top:auto;
}

/* Защита от "чёрного квадрата", если где-то фон перекрывает img */
.card-thumb { background: transparent !important; }
.card-thumb img { display:block; width:100%; height:auto; object-fit:cover; }
