/* Três grupos de produtos. Imagens montadas com recortes do catálogo original. */
.product-grid { gap: 28px; }
.product-card > img { aspect-ratio: 7 / 4; background: #f4f1e6; object-fit: contain; }
.product-card.bulk-card { grid-column: 1 / -1; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
.bulk-card > img { height: 100%; aspect-ratio: auto; }
.bulk-card .product-body { align-self: center; padding: 36px; }
.product-body > p:not(.eyebrow) { font-size: .92rem; color: var(--muted); }
.product-body > p:last-child { margin-bottom: 0; }
.product-spec { list-style: none; padding: 0; margin: 20px 0 0; font-size: .87rem; line-height: 1.75; color: #616161; }
.product-spec strong { color: #171717; }
.product-formats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.product-formats > span { display: inline-flex; align-items: center; gap: 10px; padding: 9px 12px; border: 1px solid #d9ddd1; border-radius: 4px; font-size: .8rem; font-weight: 600; background: #fffdf8; color: #171717; }
@media (max-width: 1000px) {
  .product-card.bulk-card { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
  .bulk-card .product-body { padding: 28px; }
}
@media (max-width: 760px) {
  .product-card.bulk-card { grid-template-columns: minmax(0, 1fr); }
  .bulk-card > img { height: auto; aspect-ratio: 7 / 4; }
  .bulk-card .product-body { padding: 26px; }
  .product-formats { gap: 8px; }
}
