.shop-page { max-width: 1100px; margin: 0 auto; padding: 1.5rem 1.25rem 3.5rem; }
.shop-page h1 { color: #0f766e; margin: 0 0 0.75rem; }
.shop-level { margin: 1.75rem 0 0.85rem; color: #0f766e; font-size: 1.2rem; }
.shop-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
@media (max-width: 900px) { .shop-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .shop-row { grid-template-columns: 1fr; } }
.scard {
  background: #fff;
  border: 1px solid #d1fae5;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  user-select: none;
}
.scard-img {
  height: 120px;
  background: linear-gradient(160deg, #f0fdfa, #ccfbf1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scard-img img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.scard-body { padding: 0.8rem 0.85rem 1rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.scard-body h3 { margin: 0; font-size: 0.98rem; color: #0f172a; line-height: 1.3; }
.scard-badges { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: .02em;
  padding: 0.18rem 0.45rem; border-radius: 999px;
}
.badge-preview { background: #fef3c7; color: #92400e; }
.badge-locked { background: #f1f5f9; color: #94a3b8; }
.badge-open { background: #d1fae5; color: #065f46; }
.scard-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; border-radius: 8px; font-size: 0.78rem; font-weight: 700;
  background: #e2e8f0; color: #64748b; border: none;
}
