/* shop-page-hero — full-width intro banner */
.shop-page-hero {
  background: var(--black);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 3rem 6rem;
  border-bottom: 1px solid var(--border);
}

.shop-page-hero-inner {
  max-width: 720px;
}

.shop-page-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.shop-page-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.shop-page-standfirst {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto;
}

/* product grid */
.shop-body {
  padding: 7rem 3rem 9rem;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.shop-body-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.shop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 7rem;
}

.shop-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.shop-card-prop {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.shop-card-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-empty {
  font-size: 1rem;
  color: var(--text-dim);
  text-align: center;
  grid-column: 1 / -1;
}

/* responsive */
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .shop-page-hero { padding: 7rem 1.5rem 4rem; }
  .shop-body { padding: 5rem 1.5rem 6rem; }
  .shop-card { padding: 2rem 1.5rem; }
}
