.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 300;
  width: min(420px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid rgba(12, 30, 61, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #0C1E3D;
  box-shadow: 0 24px 70px rgba(12, 30, 61, 0.18);
  backdrop-filter: blur(18px);
  font-family: Inter, Arial, sans-serif;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
}
.cookie-banner p {
  margin: 0 0 16px;
  color: rgba(12, 30, 61, 0.68);
  font-size: 13px;
  line-height: 1.55;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-actions button,
.cookie-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 30, 61, 0.14);
  background: #fff;
  color: #0C1E3D;
  font: 800 12px/1 Inter, Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.cookie-actions .cookie-accept {
  border-color: #F59500;
  background: #F59500;
  color: #fff;
}
.cookie-actions .cookie-settings {
  color: #F59500;
}
