/* Product detail content width and desktop breakpoint. */
@media (min-width: 992px) {
  .webbg > .container.product-detail-layout,
  .Popular > dl.container,
  .fctel-search-strip > dl.container {
    width: calc(100% - 64px) !important;
    max-width: 1280px !important;
  }

  .webbg > .container.product-detail-layout { margin-top: -10px; }

  /* Give the category rail and product content a clearer visual gutter. */
  .product-detail-layout > .row > .col-lg-9 {
    padding-left: 28px !important;
  }
}

/* Keep the compact desktop layout single-column until there is enough room. */
@media (min-width: 1260px) and (max-width: 1299px) {
  .product-detail-layout > .row > .visible-lg {
    display: none !important;
  }

  .product-detail-layout > .row > .col-lg-9 {
    float: none;
    width: 100%;
    padding-left: 15px !important;
  }
}

/* Persistent main-image frame: shared by generated product detail pages. */
.Productheadbigimg .jqzoom {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 880 / 560;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
  background: #fff;
  border-radius: 14px;
}
.Productheadbigimg .jqzoom > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 !important;
  border: 0 !important;
  box-sizing: border-box;
}
