
/* NL CSS-only icon — right side, hard-white (#fff), widget-proof */
#buy_now_btn,
.expcod-buy-now-btn,
.buy_now_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
}
#buy_now_btn::after,
.expcod-buy-now-btn::after,
.buy_now_btn::after {
  content: "";
  width: 1.60em;
  height: 1.60em;
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20100%20100%27%3E%3Cg%3E%3Cpath%20fill%3D%27%23fff%27%20d%3D%27M83.134%2026.075c-2.163-4.343-7.554-6.15-11.898-3.986-2.854%201.422-4.594%204.147-4.847%207.06l-.123-.247c-2.164-4.344-7.555-6.15-11.899-3.987-2.854%201.422-4.594%204.147-4.847%207.061l-.123-.248c-2.164-4.344-7.555-6.15-11.899-3.987-2.854%201.422-4.594%204.147-4.847%207.061L19.362%208.121c-1.05-2.11-2.908-3.663-5.201-4.534-2.231-.748-4.65-.627-6.759.423-4.343%202.164-6.15%207.555-3.986%2011.899l24.539%2049.267c.247.496.184.992-.126%201.302-.31.31-.807.556-1.365.37l-12.084-4.05c-4.09-1.37-8.62.422-10.67%204.077-1.244%202.168-1.434%204.896-.694%207.315.74%202.419%202.66%204.406%204.89%205.463l32.219%2014.31a33.297%2033.297%200%200%200%2028.521-.576l12.534-6.243c7.074-3.523%2012.291-9.529%2014.783-16.965%202.492-7.437%201.946-15.374-1.578-22.447z%27/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform-origin: center;
  animation: nl-pulse-zoom 0.6s ease-in-out infinite;
  margin-left: 0.6em;
}
@keyframes nl-pulse-zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
  #buy_now_btn::after, .expcod-buy-now-btn::after, .buy_now_btn::after { animation: none; }
}

/* Hide any inline SVG inside the button to prevent duplicates */
#buy_now_btn svg,
.expcod-buy-now-btn svg,
.buy_now_btn svg { display: none !important; }
