/* ===== Cookie consent (floating toast) ===== */
.cookie-consent{
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(24px);
  width: min(980px, calc(100% - 28px));
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.cookie-consent.is-visible{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-consent.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cookie-consent__inner{
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 12, 20, 0.96);
  color: #f2efe6;
  border-radius: 12px;
  padding: 14px 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

.cookie-consent__text a{
  color: #f9d28b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__actions{
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-consent__close{
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #f2efe6;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: .85;
}
.cookie-consent__close:hover{ opacity: 1; }

@media (max-width: 575.98px){
  .cookie-consent__inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-consent__actions{
    width: 100%;
    justify-content: flex-end;
  }
}
