body { padding-bottom: var(--cookie-notice-space, 0px); }
.cookie-notice {
  position: fixed;
  z-index: 100;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(660px, calc(100% - 32px));
  padding: 20px 22px;
  border: 1px solid #cddbe5;
  border-radius: 16px;
  background: #fff;
  color: #17263a;
  box-shadow: 0 10px 40px rgb(13 45 79 / 18%);
}
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0; font-size: 14px; line-height: 1.6; }
.cookie-notice a { color: #173a5f; text-decoration: underline; text-underline-offset: 3px; }
.cookie-notice button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: 10px;
  background: #0d2d4f;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-notice button:hover { background: #194b77; }
.cookie-notice button:focus-visible, .cookie-notice a:focus-visible {
  outline: 3px solid #527b9f;
  outline-offset: 4px;
}
@media (max-width: 540px) {
  .cookie-notice { align-items: stretch; flex-direction: column; gap: 14px; padding: 18px; }
  .cookie-notice button { align-self: flex-end; }
}
