.cookie-consent-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 1200;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(0, 21, 53, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.cookie-consent-banner__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
}

.cookie-consent-banner__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-banner__text a {
  color: #ffb366;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-banner__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-consent-banner__btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.cookie-consent-banner__btn:hover {
  opacity: 0.92;
}

.cookie-consent-banner__btn--reject {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-consent-banner__btn--accept {
  background: linear-gradient(180deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
}

@media (max-width: 720px) {
  .cookie-consent-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-banner__actions {
    width: 100%;
  }

  .cookie-consent-banner__btn {
    flex: 1 1 auto;
    min-height: 44px;
  }
}
