/** Shopify CDN: Minification failed

Line 33:1 Unexpected "<"
Line 88:1 Unexpected "<"

**/
a.lh__1.pr[href*="b2b"],
a[href*="/pages/b2b"],
.mobile-nav a[href*="b2b"],
.drawer a[href*="b2b"],
.menu a[href*="b2b"] {
  color: #f0c060 !important;
  background: transparent !important;
  border: 2px solid #f0c060 !important;
  border-radius: 50px !important;
  padding: 6px 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  transition: all 0.25s ease !important;
}

a.lh__1.pr[href*="b2b"]:hover,
a[href*="/pages/b2b"]:hover {
  background: #f0c060 !important;
  color: #1a1a1a !important;
}

a.lh__1.pr[href*="b2b"]::before,
a[href*="/pages/b2b"]::before {
  content: "⚡ ";
}<script>
window.addEventListener('load', function() {
  var els = document.querySelectorAll('a[href*="/pages/b2b"]');
  els.forEach(function(el) {
    el.removeAttribute('style');
    el.style.color = '#f0c060';
    el.style.background = 'transparent';
    el.style.border = '2px solid #f0c060';
    el.style.borderRadius = '50px';
    el.style.padding = '6px 16px';
    el.style.fontWeight = '700';
    el.style.textTransform = 'uppercase';
    el.style.textDecoration = 'none';
    el.style.transition = 'all 0.25s ease';
    el.addEventListener('mouseenter', function() {
      el.style.background = '#f0c060';
      el.style.color = '#1a1a1a';
    });
    el.addEventListener('mouseleave', function() {
      el.style.background = 'transparent';
      el.style.color = '#f0c060';
    });
  });
});
</script>
.price-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.price-sale {
  font-size: 22px;
  font-weight: 600;
  color: #111;
}
.price-original {
  font-size: 15px;
  color: #aaa;
  text-decoration: line-through;
}
.price-save {
  background: #FAEEDE;
  color: #B97228;
  font-size: 13px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}<div class="price-label">Price</div>
  <div class="price-row">
    <span class="price-sale">
      
    </span>
  </div>