.store-shell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 2rem;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 360px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

/* Skeleton shapes match the final layout, not generic boxes. */
.sk-image     { height: 200px;   width: 100%; margin-bottom: 1.25rem; border-radius: 8px; }
.sk-title     { height: 1.75rem; width: 60%;  margin-bottom: 0.75rem; }
.sk-price     { height: 1.1rem;  width: 28%;  margin-bottom: 1rem; }
.sk-line      { height: 0.85rem; width: 100%; margin-bottom: 0.55rem; }
.sk-line.short { width: 70%; }
.sk-button    { height: 2.75rem; width: 100%; margin-top: auto; border-radius: 8px; }

/* Real-content styles match the skeleton shapes. */
.product-image {
  height: 200px;
  width: 100%;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 60%, var(--card) 40%));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--card);
  margin-bottom: 1.25rem;
}
.product-card h2     { margin: 0 0 .25rem; font-size: 1.4rem; font-weight: 700; }
.product-card .price { color: var(--muted); font-size: 1.05rem; font-weight: 500; margin: 0 0 0.4rem; }
.product-card .role  { color: var(--muted); font-size: 0.85rem; margin: 0 0 0.75rem; }
.product-card .bio   { font-size: 0.9rem; line-height: 1.5; color: var(--fg); margin: 0 0 1rem; }
.product-card .buy-btn {
  margin-top: auto;
  width: 100%;
  padding: 0.85rem;
  border-radius: 8px;
  border: none;
  background: var(--fg);
  color: var(--bg);
  font-weight: 600;
  cursor: pointer;
}

@media (prefers-color-scheme: dark) {
  .product-card .buy-btn { background: var(--accent); color: var(--bg); }
}
