/* Larger product photography and adjacent detail/email actions. */
.product-card{grid-template-columns:240px minmax(0,1fr)}
.product-card__image{min-height:252px;padding:16px}
.product-card__image img{display:block;width:100%;height:220px;max-height:none;object-fit:contain}
.product-card__image>span{font-size:18px;line-height:1.6;text-align:center;overflow-wrap:anywhere}
.product-card__content{display:flex;flex-direction:column;justify-content:center}
.product-card__actions{display:flex;align-items:center;flex-wrap:wrap;gap:16px 24px;margin-top:6px}
.product-card__actions .product-card__email{font-size:14px;min-height:42px;padding:10px 14px;gap:9px}
.product-card__email svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.6;flex-shrink:0}
.product-category-results .product-grid{grid-template-columns:1fr}
@media(max-width:1100px){
  .product-card{grid-template-columns:220px minmax(0,1fr)}
  .product-card__image{min-height:242px}
  .product-card__image img{height:210px}
}
@media(max-width:650px){
  .product-card{grid-template-columns:1fr}
  .product-card__image{min-height:0;padding:20px}
  .product-card__image img{width:100%;height:230px}
  .product-card__image>span{padding:35px 0}
  .product-card__content{padding:24px}
  .product-card__actions{gap:12px}
}
@media(max-width:360px){
  .product-card__image img{height:210px}
  .product-card__content{padding:20px}
}
