.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  background: #1f2937;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  font-size: 14px;
  line-height: 1.4;
}
.cookie-banner__text { flex: 1 1 320px; }
.cookie-banner__text a { color: #7dd3fc; text-decoration: underline; }
.cookie-banner__btn {
  flex-shrink: 0;
  background: #0ea5e9;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-banner__btn:hover { background: #0284c7; }
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner__btn { width: 100%; }
}
