.cookie-banner {
  position: fixed; z-index: 90; right: 20px; bottom: 20px; left: 20px;
  display: none; justify-content: center;
}
.cookie-banner.is-visible { display: flex; }
.cookie-panel {
  width: min(100%, 760px); padding: 24px;
  color: #0a1c35; border: 1px solid #cbd7df; border-radius: 6px;
  background: #fff; box-shadow: 0 24px 70px rgba(3,19,41,.28);
}
.cookie-panel h2 { margin: 0 0 8px; color: #0a1c35; font-size: 21px; line-height: 1.3; }
.cookie-panel p { margin: 0; color: #536277; font-size: 14px; line-height: 1.65; }
.cookie-panel a { color: #087f7a; font-weight: 700; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cookie-action {
  min-height: 44px; padding: 10px 17px; cursor: pointer;
  border: 1px solid #087f7a; border-radius: 3px;
  font: 700 13px/1.2 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
.cookie-action.primary { color: #fff; background: #087f7a; }
.cookie-action.primary:hover { background: #066d69; }
.cookie-action.secondary { color: #075f5b; background: #fff; }
.cookie-action.secondary:hover { background: #eef7f6; }
.cookie-settings {
  padding: 0; color: inherit; cursor: pointer; border: 0; background: transparent;
  font: inherit; text-decoration: underline; text-underline-offset: 4px;
}
:where(.cookie-action, .cookie-settings):focus-visible {
  outline: 3px solid #f1cf6a; outline-offset: 3px;
}
.cookie-status {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
@media (max-width: 620px) {
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; }
  .cookie-panel { padding: 20px; }
  .cookie-actions { display: grid; }
  .cookie-action { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner, .cookie-panel { scroll-behavior: auto; }
}
