/** Shopify CDN: Minification failed

Line 13:9 Unexpected "!"

**/
/* Made By Debonair — deviations from stock Horizon required by the client mockup PDF.
   Kept in one file so the underlying theme stays vanilla and this is easy to remove. */

/* PDP: the mockup has no quantity stepper — just a single full-width action button.
   Horizon declares `quantity` as a static block inside buy-buttons ("static": true),
   so it cannot be removed from templates/product.json and has to be hidden here. */
   Horizon emits this file BEFORE styles.css, so equal-specificity rules there would win —
   hence !important rather than a specificity arms race. */
.quantity-selector-wrapper {
  display: none !important;
}

/* With the stepper gone, let the add-to-cart button occupy the full column,
   matching the SOLD OUT bar in the PDF. */
.product-form-buttons {
  grid-template-columns: 1fr !important;
}
