#cookieOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:none;
  z-index:999998;
}

#cookieBanner{
  position:fixed;
  left:20px;
  right:20px;
  bottom:20px;
  max-width:650px;
  margin:auto;
  background:#fff;
  color:#222;
  border-radius:16px;
  padding:24px;
  box-shadow:0 15px 40px rgba(0,0,0,.3);
  display:none;
  z-index:999999;
  font-family:Arial,sans-serif;
}

#cookieBanner h3{
  margin:0 0 10px;
  font-size:22px;
}

#cookieBanner p{
  font-size:14px;
  line-height:1.5;
}

.cookie-box{
  margin:12px 0;
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
}

.cookie-box label{
  display:flex;
  gap:10px;
  align-items:flex-start;
  cursor:pointer;
}

.cookie-buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.cookie-buttons button{
  padding:10px 16px;
  border:0;
  border-radius:8px;
  cursor:pointer;
  font-weight:bold;
}

.cookie-buttons .all{
  background:#be9b53;
  color:#000;
}

.cookie-buttons .save{
  background:#222;
  color:#fff;
}

.cookie-buttons .decline{
  background:#eee;
  color:#222;
}

.cookie-links{
  margin-top:12px;
  font-size:13px;
}

.cookie-links a{
  color:#be9b53;
  text-decoration:underline;
}

@media(max-width:600px){
  #cookieBanner{
    left:12px;
    right:12px;
    bottom:12px;
  }

  .cookie-buttons button{
    width:100%;
  }
}
