.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px;
  color: #071d33;
  background: #ffffff;
  border: 1px solid rgba(7, 29, 51, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(7, 29, 51, 0.3);
  font-family: Arial, sans-serif;
}

.cookie-consent[hidden] { display: none; }
.cookie-consent h2 { margin: 0 0 8px; color: #071d33; font-size: 1.25rem; }
.cookie-consent p { margin: 0; color: #405064; line-height: 1.55; }
.cookie-consent a { color: #b34700; font-weight: 700; }

.cookie-consent__choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.cookie-consent__choice {
  display: flex;
  min-height: 76px;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  background: #f2f5f8;
  border: 1px solid rgba(7, 29, 51, 0.14);
  border-radius: 12px;
  cursor: pointer;
}

.cookie-consent__choice--required { cursor: default; }
.cookie-consent__choice input { width: 18px; height: 18px; margin-top: 2px; accent-color: #ff6a00; }
.cookie-consent__choice strong,
.cookie-consent__choice small { display: block; }
.cookie-consent__choice small { margin-top: 4px; color: #5b6879; line-height: 1.35; }
.cookie-consent__always { display: inline-block; padding: 2px 7px; color: #24602a; background: #e4f1df; border-radius: 999px; font-size: .75rem; font-weight: 800; }
.cookie-consent__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-consent__button,
.cookie-settings-link { appearance: none; border: 1px solid #071d33; border-radius: 999px; font: inherit; font-weight: 800; cursor: pointer; }
.cookie-consent__button { min-height: 44px; padding: 10px 16px; color: #071d33; background: #fff; }
.cookie-consent__button--primary { color: #fff; border-color: #ff6a00; background: #ff6a00; }
.cookie-consent__button:hover,
.cookie-consent__button:focus-visible,
.cookie-settings-link:hover,
.cookie-settings-link:focus-visible { outline: 3px solid rgba(255, 106, 0, .25); outline-offset: 2px; }
.cookie-settings-link { padding: 0; color: inherit; background: transparent; border: 0; text-decoration: underline; }
.site-footer .footer-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 12px; }
.site-footer .footer-privacy-link,
.site-footer .cookie-settings-link { color: inherit; font-size: .88rem; }

@media (max-width: 720px) {
  .cookie-consent { right: 10px; bottom: 10px; left: 10px; max-height: calc(100vh - 20px); overflow-y: auto; padding: 16px; }
  .cookie-consent__choices { grid-template-columns: 1fr; }
  .cookie-consent__button { width: 100%; }
  .site-footer .footer-actions { justify-content: flex-start; }
}
