.cookie-banner {
  position: fixed;
  z-index: 9999;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(2, 15, 60, 0.98);
  color: #f9fbff;
  box-shadow: 0 22px 70px rgba(2, 15, 60, 0.34);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: rgba(249, 251, 255, 0.82);
  font: 500 14px/1.45 Inter, system-ui, sans-serif;
}

.cookie-banner a {
  color: #d8a85b;
  font-weight: 800;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__button {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font: 900 13px/1 Inter, system-ui, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner__button--accept {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(3deg, #c48b0a, #8a6002 48%, #c48b0a);
}

.cookie-banner__button--reject {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #ffffff;
}

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

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__button {
    flex: 1;
  }
}
