.cookie-consent,
.cookie-consent * { box-sizing: border-box; }
.cookie-consent[hidden] { display: none; }
.cookie-consent {
  position: fixed;
  right: clamp(14px, 1.6vw, 24px);
  bottom: calc(clamp(14px, 1.6vw, 24px) + env(safe-area-inset-bottom, 0px));
  z-index: 20;
  width: min(310px, calc(100vw - 28px));
  padding: 12px;
  border: 1px solid #e5ebf0;
  border-radius: 0;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 36px #10223518;
  color: #10151f;
  font-family: Inter, Arial, sans-serif;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.cookie-consent p { margin: 0 0 10px; color: #617285; font-size: 12px; line-height: 1.5; }
.cookie-consent__icon { margin-right: 4px; }
.cookie-consent a { color: #18354c; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent button {
  width: 100%; min-height: 40px; padding: 8px 12px;
  border: 1px solid #10151f; border-radius: 0;
  background: #10151f; color: white;
  font: 500 12px Inter, Arial, sans-serif; cursor: pointer;
}
.cookie-consent button:hover { background: #253547; }
.cookie-consent :focus-visible { outline: 3px solid #62baf5; outline-offset: 3px; }
@media (max-width: 650px) {
  .cookie-consent {
    right: 10px; bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: min(270px, calc(100vw - 20px)); padding: 10px;
  }
  .cookie-consent p { font-size: 11px; margin-bottom: 8px; }
  .cookie-consent button { min-height: 44px; }
}
