/* Cookie consent banner styles (extracted from index.html) */
#cookie-consent-banner.cookie-consent{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    padding: 18px 20px;
    display: none;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.cookie-consent__inner{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.cookie-consent__text{ color:#222; font-size:14px; }
.cookie-consent__text p{ margin:0; opacity:.9; }
.cookie-consent__actions button{ margin-left:8px; }
@media (max-width:767px){
    .cookie-consent__inner{ flex-direction:column; align-items:flex-start; }
    .cookie-consent__actions{ width:100%; display:flex; gap:8px; justify-content:flex-end; margin-top:10px; }
}
