/** Shopify CDN: Minification failed

Line 16:17 Expected identifier but found whitespace
Line 16:29 Unexpected ";"
Line 19:71 Unterminated string token

**/
/* Bubbez — small theme corrections, kept apart from the offer bar
   ------------------------------------------------------------------
   1. Add to cart / Buy with Shop Pay come out slightly different widths.

   Horizon lays the two out as flex siblings in blocks/buy-buttons.liquid:

     .product-form-buttons > *:not(...) {
       flex: 1 1 var(--buy-button-preferred-width, 0);   /* 185px */
       min-width: fit-content;
     }

   `min-width: fit-content` sets each item's floor to its OWN intrinsic
   content width. "Buy with Shop Pay" plus its logo is intrinsically wider
   than "Add to cart", so whenever that floor lands above the fair half of
   the row, Shop Pay claims the extra and Add to cart ends up narrower.

   Dropping the floor to 0 lets them split the row evenly. The 185px
   flex-basis is deliberately left alone, so they still wrap onto separate
   rows on narrow screens exactly as before. */

.product-form-buttons > *:not(.quantity-selector-wrapper, .quantity-rules, .quantity-label, .volume-pricing) {
  min-width: 0;
}
