.cookie-banner{
  position:fixed;
  right:24px;
  bottom:24px;
  width:min(420px, calc(100vw - 32px));
  background:rgba(255,255,255,.97);
  border:1px solid rgba(0,0,0,.08);
  border-radius:26px;
  box-shadow:0 25px 60px rgba(0,0,0,.18);
  padding:26px 24px 22px;
  z-index:9999;
  backdrop-filter:blur(10px);
}

.cookie-banner.hidden{
  display:none !important;
}

/* ❌ quitamos el layout antiguo */
.cookie-top{
  display:none;
}

.cookie-close{
  position:absolute;
  top:14px;
  right:16px;
  border:none;
  background:transparent;
  font-size:26px;
  color:rgba(17,17,17,.45);
  cursor:pointer;
}

.cookie-close:hover{
  color:#111;
}

.cookie-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}

.cookie-icon{
  width:46px;
  height:46px;
  border-radius:999px;
  background:rgba(7,66,128,.08);
  color:#074280;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
}

.cookie-title{
  font-size:16px;
  font-weight:900;
  letter-spacing:.3px;
  color:#111;
  line-height:1.25;
}

.cookie-text{
  font-size:14.5px;
  line-height:1.8;
  color:rgba(17,17,17,.7);
  margin-bottom:18px;
}

.cookie-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.cookie-btn{
  flex:1;
  min-height:48px;
  padding:12px 16px;
  border-radius:16px;
  font-size:14px;
  font-weight:900;
  text-align:center;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s ease;
}

.cookie-btn-primary{
  background:#074280;
  color:#fff;
  box-shadow:0 10px 24px rgba(7,66,128,.08);
}

.cookie-btn-primary:hover{
  transform:translateY(-1px);
}

.cookie-btn-secondary{
  background:#fff;
  border-color:rgba(0,183,109,.2);
  color:#111;
}

.cookie-btn-secondary:hover{
  background:rgba(0,183,109,.05);
}