/* Foxinburg cookie-consent — брендовый баннер согласия на cookie (сессия 46).
   Стили только под #fxb-consent, ни с чем не пересекаются. */
#fxb-consent {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 90000;
  max-width: 420px;
  width: calc(100% - 32px);
  background: rgba(36, 26, 54, 0.97);
  border: 1px solid rgba(252, 249, 81, 0.22);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 18px 48px -12px rgba(25, 15, 45, 0.65);
  color: #fff;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#fxb-consent.fxb-consent-show {
  opacity: 1;
  transform: translateY(0);
}
#fxb-consent.fxb-consent-hide {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
#fxb-consent .fxb-consent-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 12px;
}
#fxb-consent .fxb-consent-text a {
  color: #fcf951;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#fxb-consent .fxb-consent-btns {
  display: flex;
  gap: 10px;
}
#fxb-consent .fxb-consent-btn {
  flex: 1;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
#fxb-consent .fxb-consent-accept {
  background: #fcf951;
  color: #392852;
}
#fxb-consent .fxb-consent-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(252, 249, 81, 0.55);
}
#fxb-consent .fxb-consent-decline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}
#fxb-consent .fxb-consent-decline:hover {
  background: rgba(255, 255, 255, 0.14);
}
@media (prefers-reduced-motion: reduce) {
  #fxb-consent {
    transition: none;
    transform: none;
  }
}
