/* =========================
   SHOP PAGE
========================= */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 100px));
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  aspect-ratio: 1 / 1;   

  padding: 10px;
  border: 1px solid #eee;
  border-radius: 14px;
  text-decoration: none;

  background: var(--bg-card);

  transition: all 0.2s ease;
}

.shop-card img {
  height: 40px;          /* hard control */
  width: 40px;
  max-width: 80%;
  object-fit: contain;
  margin-bottom: 6px;
}

.shop-card span {
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #333;
}

.shop-card:hover {
  transform: translateY(-3px);
  border-color: #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}