/** Shopify CDN: Minification failed

Line 42:0 Expected "}" to go with "{"

**/
/* ---- Custom: reorder buttons in product popup drawers ---------------------
   Lifts the FIRST button in the bottom section above the dividing line,
   while leaving the SECOND button in its original position below the list.
   Moves the divider so it now sits between the lifted button and the
   "Returns" text block. Applies to every product popup drawer site-wide. */
.product-popup-modal__content-bottom {
  border-top: 0 !important;
  padding-top: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

.product-popup-modal__content-bottom > .product-popup-modal__content-buttons {
  display: contents !important;
}

.product-popup-modal__content-bottom > .product-popup-modal__content-buttons > a.button:nth-child(1) {
  order: 1 !important;
  margin: 0 0 24px !important;
}

.product-popup-modal__content-bottom > .medium-font {
  order: 2 !important;
  border-top: 1px solid rgb(152, 140, 99) !important;
  padding-top: 24px !important;
  margin-top: 0 !important;
}

.product-popup-modal__content-bottom > .product-popup-modal__content-buttons > a.button:nth-child(2) {
  order: 3 !important;
  margin-top: 24px !important;
}

/* Buy buttons gap. */
.product-form__buttons {
  gap: 0.8rem;
