.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.shop-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.shop-type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  font-weight: 600;
}

.shop-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-dark) !important;
}

.shop-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

.shop-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
}

.shop-card input[type="email"] {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.88rem;
}

.shop-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

.shop-loading, .shop-empty {
  text-align: center;
  color: var(--text-dim);
  padding: 2rem;
}

.shop-empty code {
  background: #f1f5f9;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
}