/* Mobile sticky purchase bar: keep sale and regular prices inside the panel. */
@media (max-width: 767px) {
  .product-details .product-price-group .price-wrapper,
  .product-details .product-price-group .price-group {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 1px !important;
    height: 50px !important;
    min-height: 50px !important;
    overflow: hidden !important;
  }

  .product-details .product-price-group .product-price-new {
    display: block !important;
    margin: 0 !important;
    color: #d92d20 !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    line-height: 27px !important;
    white-space: nowrap !important;
  }

  .product-details .product-price-group .product-price-old {
    display: block !important;
    margin: 0 !important;
    color: #6b7280 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 18px !important;
    text-decoration: line-through !important;
    white-space: nowrap !important;
  }
}
