#cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #1f2937;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-size: 14px;
  line-height: 1.4;
  font-family: inherit;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner__text {
  flex: 1 1 280px;
  min-width: 0;
}

.cookie-banner__text a {
  color: #93c5fd;
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity .15s ease;
}

.cookie-banner__btn:hover { opacity: .85; }

.cookie-banner__btn_accept {
  background: #fff;
  color: #1f2937;
}

.cookie-banner__btn_reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}

@media (max-width: 600px) {
  #cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .cookie-banner__inner { padding: 12px 14px; }
  .cookie-banner__btn { flex: 1 1 auto; }
}