* { box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin: 0;
  color: #1a1a1a;
  background: #fafafa;
  line-height: 1.5;
}
.pdp-simple {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.image-panel img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: #f3f3f3;
  border-radius: 6px;
}
.category-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #666;
}
.price-row .price { font-size: 1.5rem; }
.discount { color: #c0392b; margin-left: 0.5rem; font-weight: 600; }
.rating, .delivery, .shipping, .returns, .scarcity { margin: 0.4rem 0; }
.scarcity { color: #c0392b; font-weight: 600; }
.primary-cta {
  background: #ff9900;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
.cta-high .primary-cta { padding: 1rem 2rem; font-size: 1.1rem; }
.cta-low .primary-cta { opacity: 0.75; font-size: 0.9rem; }
.scenario-footer {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #999;
}
.store-index { max-width: 720px; margin: 2rem auto; padding: 1rem; }
@media (max-width: 700px) {
  .product-hero { grid-template-columns: 1fr; }
}
