/* Sale badge — "Bubble" pill style
   Converts the WooCommerce/Flatsome sale badge (currently a fixed
   2.8em square block) into a compact rounded pill, matching the
   site's secondary blue (#4AA3F1) and its soft card-shadow language.
   Scoped to .on-sale only, so other badge types (New/Hot labels) are untouched. */

.badge-container .badge:has(.badge-inner.on-sale) {
  display: inline-block;
  height: auto;
  width: auto;
  pointer-events: none;
}

.badge-inner.on-sale {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: auto !important;
  width: auto !important;
  min-width: 0;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .badge-inner.on-sale {
    padding: 4px 10px;
    font-size: 11px;
  }
}
