/* KBH: single product image size overrides */

/* Reduce main single-product image size to ~50% on desktop */
@media (min-width: 769px) {
  /* Target the WooCommerce gallery main image(s) */
  .single-product .woocommerce-product-gallery__image img,
  .single-product .images img,
  .single-product .product .woocommerce-product-gallery img {
    max-width: 50% !important; /* half of the current width */
    height: auto !important;
    display: block;
    margin: 0 auto; /* center the smaller image */
    object-fit: contain;
  }

  /* Ensure the gallery wrapper doesn't forcibly stretch the image */
  .single-product .woocommerce-product-gallery,
  .single-product .images {
    display: block;
    text-align: center;
  }
}

/* Keep mobile unchanged: full width */
@media (max-width: 768px) {
  .single-product .woocommerce-product-gallery__image img,
  .single-product .images img,
  .single-product .product .woocommerce-product-gallery img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }
}
