/* Hoofy shop — physical goods (hoof knives) */

.shop-hero {
  padding: clamp(1.5rem, 5vw, 2.5rem) 0 clamp(1rem, 3vw, 1.5rem);
}

.shop-hero .section-lead {
  max-width: 48ch;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.shop-product {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.shop-product:hover {
  border-color: rgba(244, 176, 46, 0.35);
}

.shop-product__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, rgba(22, 22, 28, 0.95) 0%, rgba(10, 10, 14, 1) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product photos: intrinsic aspect ratios, contain so branding / product stay uncropped */
.shop-product__media--hoofy {
  aspect-ratio: 1024 / 549;
}

.shop-product__media--hoofy img {
  object-fit: contain;
  object-position: center;
}

.shop-product__media--emerald {
  aspect-ratio: 1024 / 997;
  background: #fff;
}

.shop-product__media--emerald img {
  object-fit: contain;
  object-position: center;
}

.shop-product__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.shop-product__body h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  margin: 0;
  letter-spacing: -0.02em;
}

.shop-product__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-hot);
  letter-spacing: -0.02em;
}

.shop-product__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.shop-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.shop-note {
  max-width: 44rem;
  margin: 0 auto clamp(3rem, 8vw, 5rem);
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(244, 176, 46, 0.25);
  background: rgba(244, 176, 46, 0.06);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.shop-note strong {
  color: var(--text);
}

.shop-note a {
  color: var(--accent-hot);
  font-weight: 600;
}

.shop-stock-photo-note {
  max-width: 48rem;
  margin: -0.5rem auto 0;
  padding: 0 clamp(1rem, 4vw, 2rem);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.shop-stock-photo-note a {
  color: var(--accent-hot);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
