/* ❌ Убираем подсветку ссылок в шапке */
.spirit-navbar-menu a:hover,
.spirit-navbar-menu a:focus {
  background: none !important;
  color: inherit !important;
  font-weight: inherit !important;
}

/* ✅ Подсветка кнопки "Перейти в магазин" */
a.btn.btn-xl.btn-accent.rounded-pill {
  background-color: #f5b759 !important;
  color: #111827 !important;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 0 12px rgba(245, 183, 89, 0.4);
}

a.btn.btn-xl.btn-accent.rounded-pill:hover {
  background-color: #ffc84a !important;
  color: #000 !important;
  box-shadow: 0 0 20px rgba(255, 200, 74, 0.8);
  transform: scale(1.03);
}
