/**
 * @file
 * .dvd-icon-btn — primitive bouton icône circulaire (40×40) avec badge compteur.
 * Utilisé par : cart, account, wishlist dans le header droit.
 */

.dvd-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--dvd-ink);
  background: transparent;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.dvd-icon-btn:hover {
  background: var(--dvd-paper-2);
  color: var(--dvd-sage-d);
}
.dvd-icon-btn i {
  font-size: 1.25rem;
  line-height: 1;
}
.dvd-icon-btn__count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--dvd-amber);
  color: var(--dvd-ink);
  border-radius: 999px;
  font-family: var(--dvd-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0;
}
