/* Product-level A+ image displayed between product details and bundles. */
.product-a-plus {
  width: 100%;
  margin: 40px auto 0;
}

.product-a-plus__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.product-a-plus__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-a-plus__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 749px) {
  .product-a-plus {
    margin-top: 28px;
  }

  .product-a-plus__inner {
    width: 100%;
  }
}
