/* Fashionbymilox - the info/buy-box column uses flex-basis:auto (shrink to
   fit its content) while the images column next to it is flex:1 1 0 (grows
   to fill whatever space is left). Framer's native "Variant, and Buy
   Buttons" content was wide enough to naturally hold that column near
   ~464px; our replacement buy-box (assets/fbm-pdp-buybox.js/css) is much
   narrower, so the column shrank and the images column ballooned to fill
   the gap. Give the column back a stable width instead of shrink-to-fit,
   independent of exactly how wide the buy-box content happens to be. */
[data-framer-name="Info + Purchase Options"] {
  width: 460px !important;
  flex-basis: 460px !important;
  flex-shrink: 0 !important;
}
