/* Mobile consent/chat guardrail: cookie stays centered and chat remains tappable. */
@media(max-width:640px){
  .cookie-banner {
    left:8px;
    right:8px;
    width:auto;
    max-width:none;
    box-sizing:border-box;
    overflow:hidden;
    animation:none;
    transform:translateY(calc(100% + 24px));
  }
  .cookie-banner .cookie-content,
  .cookie-banner .cookie-actions {
    min-width:0;
    width:100%;
  }
  .cookie-banner .cookie-actions button {
    min-width:0;
  }
  body.has-cookie-banner .floating-chat {
    bottom:150px;
  }
}

@media(max-width:400px){
  body.has-cookie-banner .floating-chat {
    bottom:166px;
  }
}
