* { box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin: 0;
  color: #1a1a1a;
  background: #f5f6f8;
  line-height: 1.5;
}
.pdp-informative {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.media-gallery img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  background: #eef0f3;
  border-radius: 8px;
}
.visual-cues { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge.social-proof { background: #e8f4fd; color: #1565c0; }
.badge.sustainability { background: #e8f5e9; color: #2e7d32; }
.badge.scarcity { background: #fdecea; color: #c62828; }
.badge.urgency { background: #fff3e0; color: #e65100; }
.badge.urgency-strong { font-size: 0.9rem; padding: 0.4rem 0.8rem; }
.category-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #666;
}
.rating-card, .price-card, .assurance-card {
  margin: 1rem 0;
  padding: 0.75rem;
  background: #fafbfc;
  border-radius: 8px;
  border: 1px solid #e8eaed;
}
.price { font-size: 1.6rem; }
.discount { color: #c0392b; font-weight: 700; margin-left: 0.5rem; }
.rating-bars .bar {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  margin: 4px 0;
  overflow: hidden;
}
.rating-bars .bar span {
  display: block;
  height: 100%;
  background: #ffb300;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.detail-card {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e8eaed;
}
.detail-card dl { margin: 0; }
.detail-card dt { font-weight: 600; margin-top: 0.5rem; }
.detail-card dd { margin: 0 0 0.25rem 0; color: #444; }
.primary-cta {
  background: #ff9900;
  border: none;
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  width: 100%;
}
.cta-high .primary-cta { font-size: 1.15rem; padding: 1rem 2rem; }
.scenario-footer { margin-top: 1.5rem; font-size: 0.75rem; color: #999; }
.density-high .detail-card { border-width: 2px; }
@media (max-width: 900px) {
  .hero-grid, .details-grid { grid-template-columns: 1fr; }
}
