/* ===================================================
   Cookie Consent Banner — АвтоПомощник
   =================================================== */
.cookie-bar{
  position:fixed;bottom:0;left:0;right:0;z-index:999;
  background:rgba(15,24,42,.97);
  backdrop-filter:blur(10px);
  border-top:1px solid rgba(255,255,255,.1);
  padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  box-shadow:0 -4px 24px rgba(0,0,0,.25);
  transition:transform .35s ease,opacity .35s ease;
}
.cookie-bar.hidden{transform:translateY(100%);opacity:0;pointer-events:none}
.cookie-text{font-family:'Golos Text',system-ui,sans-serif;font-size:14px;color:rgba(255,255,255,.82);line-height:1.55;flex:1}
.cookie-text a{color:#7ab8e0;text-decoration:underline;text-underline-offset:2px}
.cookie-btns{display:flex;gap:10px;flex-shrink:0;flex-wrap:wrap}
.cookie-accept{background:#1f5fa8;color:#fff;border:none;border-radius:8px;padding:9px 22px;font-family:'Golos Text',system-ui,sans-serif;font-size:14px;font-weight:600;cursor:pointer;transition:background .15s;white-space:nowrap}
.cookie-accept:hover{background:#2a6fc4}
@media(max-width:640px){
  .cookie-bar{flex-direction:column;align-items:flex-start;gap:12px;padding:16px 18px}
  .cookie-btns{width:100%}
  .cookie-accept{flex:1;text-align:center}
  }
