.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px);
  color: #0f172a;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

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

.cookie-banner__copy {
  font-size: 14px;
  line-height: 1.5;
  color: #334155;
}

.cookie-banner__copy a {
  color: #4b58e6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.cookie-banner__btn {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    filter 0.15s ease,
    transform 0.05s ease;
}

.cookie-banner__btn:active {
  transform: translateY(1px);
}

.cookie-banner__btn--accept {
  background: linear-gradient(135deg, #5b6cff, #3c46c6);
  color: #fff;
}

.cookie-banner__btn--decline {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #e2e8f0;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
