/**
 * Sale price layout — ships without Vite rebuild.
 * Keeps regular + sale on one line (product cards, loops, cart merch).
 */

.mrz-sale-price,
.product-card__price .mrz-cart-price {
  display: inline-flex !important;
  flex-flow: row nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  max-width: 100%;
  white-space: nowrap;
  text-align: center;
  vertical-align: baseline;
}

.mrz-sale-price__regular,
.mrz-sale-price__current,
.product-card__price .mrz-cart-price__regular,
.product-card__price .mrz-cart-price__sale,
.product-card__price del,
.product-card__price ins {
  display: inline !important;
}

.mrz-sale-price__regular,
.product-card__price .mrz-cart-price__regular,
.product-card__price del {
  color: #8b7355;
  font-weight: 500;
  text-decoration: line-through !important;
}

.mrz-sale-price__current,
.product-card__price .mrz-cart-price__sale,
.product-card__price ins {
  text-decoration: none !important;
  font-weight: 800;
  color: #111;
}

.product-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
