
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3000;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__box {
  max-width: 1040px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.28);
  padding: 20px 22px;
  backdrop-filter: blur(10px);
}
.cookie-banner__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
}
.cookie-banner__text {
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 0.96rem;
  line-height: 1.6;
}
.cookie-banner__text a, .cookie-banner__manage, .legal-page a.cookie-link-inline {
  color: #8cc8ff;
  text-decoration: underline;
}
.cookie-banner__row {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
}
.cookie-btn--primary {
  background: linear-gradient(135deg, #18a957, #128144);
  border-color: transparent;
}
.cookie-btn--secondary {
  background: #ffffff;
  color: #123b78;
  border-color: #ffffff;
}
.cookie-banner__manage {
  margin-left: auto;
  font-size: 0.92rem;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner__box { padding: 18px; border-radius: 18px; }
  .cookie-banner__row { flex-direction: column; align-items: stretch; }
  .cookie-btn { width: 100%; }
  .cookie-banner__manage { margin-left: 0; }
}
