
.menuprovider > a {
  position: relative !important;
}

.provider-favorite-toggle {
  position: absolute;
  top: 5px;
  right: 6px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 1px solid rgba(234,190,78,.45);
  border-radius: 50%;
  color: #e6d7ad;
  background: rgba(15,12,12,.78);
  box-shadow: 0 3px 8px rgba(0,0,0,.28);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.provider-favorite-toggle:hover,
.provider-favorite-toggle:focus-visible {
  transform: scale(1.08);
  color: #f4cc5b;
  outline: none;
}

.provider-favorite-toggle.is-favorite {
  color: #2a180c;
  border-color: #f3cf65;
  background: linear-gradient(180deg,#f4cf64,#dca638);
}

.menuprovider:has(.provider-favorite-toggle.is-favorite) > a {
  border-color: rgba(240,193,71,.85) !important;
  box-shadow:
    0 0 0 1px rgba(240,193,71,.18),
    0 8px 20px rgba(0,0,0,.28),
    0 0 18px rgba(230,175,43,.14) !important;
}

@media (max-width: 767.98px) {
  .provider-favorite-toggle {
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    font-size: 15px;
  }
}
