/* Cookie consent banner - compact accept-only */
#cookieConsentBanner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:2147483000;
  background:#050505;
  color:#fff;
  box-shadow:0 -4px 18px rgba(0,0,0,.20);
  font-family:inherit;
}
.cookie-consent-inner{
  max-width:1100px;
  margin:0 auto;
  padding:11px 16px calc(11px + env(safe-area-inset-bottom));
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
}
.cookie-consent-text{
  margin:0;
  max-width:820px;
  font-size:14px;
  line-height:1.45;
  text-align:center;
}
.cookie-consent-text a{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:2px;
}
.cookie-consent-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.cookie-consent-btn{
  appearance:none;
  border:1px solid #fff;
  border-radius:0;
  background:transparent;
  color:#fff;
  padding:7px 18px;
  min-height:36px;
  min-width:92px;
  font:inherit;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:background .18s ease,color .18s ease,opacity .18s ease;
}
.cookie-consent-btn:hover{background:#fff;color:#050505}
.cookie-consent-btn:focus-visible{outline:2px solid #fff;outline-offset:2px}
@media (max-width:760px){
  .cookie-consent-inner{
    padding:10px 14px calc(10px + env(safe-area-inset-bottom));
    flex-direction:column;
    gap:8px;
  }
  .cookie-consent-text{font-size:13px;line-height:1.42}
  .cookie-consent-btn{padding:6px 16px;min-height:34px;font-size:13px}
}
