.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2000;
  display: none;
  gap: 0.85rem;
  border: 1px solid rgba(0, 1, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px -20px rgba(0, 1, 255, 0.45);
  padding: 0.9rem 1rem;
}

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

.cookie-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(10, 10, 10, 0.84);
}

.cookie-text a {
  color: #0001ff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-btn {
  border-radius: 999px;
  border: 1px solid #0001ff;
  padding: 0.5rem 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-btn-primary {
  background: #0001ff;
  color: #fff;
}

.cookie-btn-secondary {
  background: #fff;
  color: #0a0a0a;
}

@media (min-width: 860px) {
  .cookie-banner {
    left: 50%;
    right: auto;
    bottom: 1.2rem;
    width: min(760px, calc(100% - 2rem));
    transform: translateX(-50%);
    align-items: center;
    grid-template-columns: 1fr auto;
  }
}
