/* Hide product images in category listing */
div.theme-product-image-area,
div.theme-product-image-area img {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

/* Hide product images in product detail pages */
div.theme-product-detail-image-container,
div.theme-product-detail-image-container img {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}
<style>
  /* Hide checkout logo on mobile view only */
  @media (max-width: 768px) {
    body[data-zs-page="checkout"] .theme-mobile-header-logo,
    body[data-zs-page="checkout"] .theme-logo-parent,
    body[data-zs-page="checkout"] img[data-zs-logo] {
      display: none !important;
    }
  }
</style>
