/* Approximate price notice — same row as list price */
.dw-approx-price-notice {
  display: inline;
  margin: 0 10px 0 0;
  padding: 0;
  color: #e53935;
  font-size: 15px;
  font-weight: 700;
  line-height: inherit;
  letter-spacing: -0.01em;
  vertical-align: baseline;
  animation: dw-approx-pulse 1.35s ease-in-out infinite;
}

@keyframes dw-approx-pulse {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 0 transparent;
  }
  50% {
    opacity: 0.28;
    text-shadow: 0 0 8px rgba(229, 57, 53, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dw-approx-price-notice {
    animation: none;
    opacity: 1;
  }
}
