/* Rainwolf Sports — Save Product button states.
   Uses the site's existing --accent CSS variable, no new colors introduced. */

.js-save-product {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font: inherit;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .005em;
  padding: .92rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--line, rgba(255,255,255,.2));
  background: transparent;
  color: var(--text, #F3F3F1);
  white-space: nowrap;
  transition: transform .2s ease, border-color .2s, color .2s;
}

.js-save-product:hover {
  border-color: var(--accent, #E4FF00);
  color: var(--accent, #E4FF00);
}

.js-save-product svg {
  width: 18px;
  height: 18px;
  transition: fill .15s ease, stroke .15s ease;
}

.js-save-product.is-saved {
  border-color: var(--accent);
  color: var(--accent);
}

.js-save-product.is-saved svg {
  fill: var(--accent);
}

.js-save-product:disabled {
  opacity: .6;
  cursor: not-allowed;
}
