/* v37 - large, buyer-friendly product photo view. */
.product-detail-panel { width:min(680px, 100%); }
.detail-hero { grid-template-columns:minmax(220px, 43%) 1fr; align-items:start; gap:24px; }
.detail-gallery { min-width:0; }
.detail-picture { min-height:245px; height:245px; width:100%; overflow:hidden; }
.detail-picture .detail-product-image { display:block; width:100%; height:100%; object-fit:cover; }
.detail-gallery-thumbs { gap:9px; margin-top:10px; }
.detail-gallery-thumb { width:48px; height:48px; border-radius:9px; }
.detail-hero h2 { font-size:30px; }

@media (max-width:650px) {
  .product-detail-panel { max-height:calc(100vh - 10px); padding:34px 17px 26px; }
  .detail-hero { display:block; }
  .detail-picture { min-height:275px; height:clamp(275px, 58vw, 335px); border-radius:13px; }
  .detail-gallery-thumbs { justify-content:center; gap:10px; margin-top:11px; }
  .detail-gallery-thumb { width:50px; height:50px; border-radius:9px; }
  .detail-hero > div:last-child { margin-top:20px; }
  .detail-hero h2 { font-size:24px; line-height:1.18; }
  .detail-rating .rating-stars { font-size:17px; }
}
