.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2500;
  width: min(460px, calc(100vw - 32px));
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: #031B44;
  color: #fff;
  box-shadow: 0 18px 48px rgba(2,15,40,0.32);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent h2 { margin: 0 0 8px; color: #fff; font-size: 1.1rem; }
.cookie-consent p { margin: 0; color: rgba(255,255,255,0.8); font-size: 0.875rem; line-height: 1.55; }
.cookie-consent a { color: #6FD1CC; text-decoration: underline; }
.cookie-consent__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cookie-consent__button {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}
.cookie-consent__button:hover { background: rgba(255,255,255,0.1); }
.cookie-consent__button--primary { border-color: #179A9A; background: #179A9A; }
.cookie-consent__button--primary:hover { background: #148686; }
.cookie-consent__preferences { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.16); }
.cookie-consent__preferences[hidden] { display: none; }
.cookie-consent__option { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; }
.cookie-consent__option + .cookie-consent__option { border-top: 1px solid rgba(255,255,255,0.12); }
.cookie-consent__option input { width: 18px; height: 18px; margin-top: 2px; accent-color: #179A9A; }
.cookie-consent__option strong { display: block; font-size: 0.875rem; }
.cookie-consent__option span { display: block; margin-top: 2px; color: rgba(255,255,255,0.72); font-size: 0.8rem; line-height: 1.45; }
.cookie-settings-trigger {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2490;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(3,27,68,0.2);
  border-radius: 6px;
  background: #fff;
  color: #031B44;
  box-shadow: 0 6px 20px rgba(2,15,40,0.16);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.cookie-settings-trigger:hover { background: #F3F4F6; }
@media (max-width: 600px) {
  .cookie-consent { right: 16px; bottom: 16px; padding: 20px; }
  .cookie-consent__actions { display: grid; grid-template-columns: 1fr; }
  .cookie-consent__button { width: 100%; }
  .cookie-settings-trigger { right: 16px; bottom: 16px; }
}
