.cookie-consent[hidden] { display: none !important; }
.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(980px, calc(100% - 40px));
  margin-inline: auto;
  padding: 18px 20px;
  border: 1px solid #dce6f2;
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  color: #13264e;
  box-shadow: 0 18px 48px rgba(15,49,92,.18);
  backdrop-filter: blur(10px);
}
.cookie-consent__copy { flex: 1 1 auto; min-width: 0; }
.cookie-consent__title { margin: 0 0 5px; color: #071a4b; font-size: 16px; line-height: 1.2; }
.cookie-consent__text { margin: 0; color: #52627c; font-size: 12px; line-height: 1.5; }
.cookie-consent__text a { color: #1268d7; text-decoration: underline; text-underline-offset: 2px; }
.cookie-consent__actions { display: flex; flex: 0 0 auto; gap: 9px; align-items: center; }
.cookie-consent__button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #1268d7;
  border-radius: 8px;
  background: #fff;
  color: #1268d7;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.cookie-consent__button--primary { background: #1268d7; color: #fff; }
.cookie-consent__button:hover { filter: brightness(.98); }
.cookie-consent__button:focus-visible { outline: 3px solid rgba(18,104,215,.25); outline-offset: 2px; }
.legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 11px 0 18px;
  color: #5f7089;
  font-size: 11px;
}
.legal-links a, .legal-links button { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.legal-links button { border: 0; padding: 0; background: none; font: inherit; cursor: pointer; }
.request-form .consent a, .privacy-note a { color: #1268d7; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 720px) {
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; width: calc(100% - 24px); flex-direction: column; align-items: stretch; gap: 14px; padding: 16px; border-radius: 14px; }
  .cookie-consent__actions { display: grid; grid-template-columns: 1fr; }
  .cookie-consent__button { width: 100%; min-height: 42px; }
  .cookie-consent__title { font-size: 15px; }
  .cookie-consent__text { font-size: 11px; }
  .legal-links { padding-inline: 15px; font-size: 11px; }
}
.legal-links a,
.legal-links button { min-height: 24px; display: inline-flex; align-items: center; }
