/* makeFLOWeasy – Cookie-Banner Styles */
.mfe-cookie-banner{
  position:fixed;left:20px;right:20px;bottom:20px;
  background:#0F2240;color:#fff;
  border-radius:16px;box-shadow:0 20px 60px -20px rgba(0,0,0,.45);
  padding:22px 26px;z-index:9999;
  animation:mfeSlideUp .35s ease-out;
}
@keyframes mfeSlideUp{from{transform:translateY(30px);opacity:0;}to{transform:translateY(0);opacity:1;}}
.mfe-cookie-inner{
  display:flex;align-items:center;gap:24px;flex-wrap:wrap;
  max-width:1180px;margin:0 auto;
}
.mfe-cookie-text{flex:1;min-width:280px;}
.mfe-cookie-text h2{
  font-family:'Space Grotesk','DM Sans',system-ui,sans-serif;
  font-size:17px;margin:0 0 8px;color:#fff;font-weight:700;letter-spacing:-.01em;
}
.mfe-cookie-text p{
  font-family:'DM Sans',system-ui,sans-serif;
  font-size:14px;color:rgba(255,255,255,.78);line-height:1.55;margin:0;
}
.mfe-cookie-text a{color:#7FE3F5;text-decoration:underline;}
.mfe-cookie-text a:hover{color:#fff;}
.mfe-cookie-actions{display:flex;gap:10px;flex-shrink:0;flex-wrap:wrap;}
.mfe-btn{
  border:0;cursor:pointer;padding:12px 22px;border-radius:10px;
  font-family:'DM Sans',system-ui,sans-serif;
  font-size:14px;font-weight:700;transition:transform .15s,background .2s,box-shadow .2s;
}
.mfe-btn-reject{background:rgba(255,255,255,.1);color:#fff;}
.mfe-btn-reject:hover{background:rgba(255,255,255,.2);}
.mfe-btn-accept{background:#00C896;color:#0F2240;}
.mfe-btn-accept:hover{transform:translateY(-2px);box-shadow:0 8px 20px -6px rgba(0,200,150,.6);}

#mfe-cookie-reopen{
  position:fixed;bottom:20px;left:20px;
  width:44px;height:44px;border-radius:50%;
  border:0;background:#0F2240;color:#fff;
  font-size:20px;cursor:pointer;z-index:9998;
  box-shadow:0 8px 20px -6px rgba(0,0,0,.35);
  display:flex;align-items:center;justify-content:center;
  transition:transform .15s;
}
#mfe-cookie-reopen:hover{transform:translateY(-2px);}

@media(max-width:640px){
  .mfe-cookie-banner{left:12px;right:12px;bottom:12px;padding:18px 20px;}
  .mfe-cookie-actions{width:100%;}
  .mfe-btn{flex:1;}
  #mfe-cookie-reopen{width:38px;height:38px;font-size:17px;left:12px;bottom:12px;}
}
