.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1200;
  padding: 16px;
  background: rgba(17, 24, 39, 0.96);
  color: #f8fafc;
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.25);
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1rem;
}

.cookie-banner__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #cbd5e1;
  max-width: 760px;
}

.cookie-banner__desc a {
  color: #93c5fd;
  font-weight: 600;
}

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

.cookie-banner .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.cookie-banner .btn-primary {
  background: #2563eb;
  color: #fff;
}

.cookie-banner .btn-secondary {
  background: transparent;
  color: #e2e8f0;
  border-color: #475569;
}

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

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