.cookie-bar{
  display:none;
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#2c2c2c;
  color:#f5f5f5;
  font-family:'Poppins', sans-serif;
  font-size:12px;
  padding:12px 10px;
  z-index:99999;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  box-shadow:0 -2px 8px rgba(0,0,0,.3);
}

.cookie-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  width:100%;
}

.btn-cookie{
  border:none;
  padding:6px 12px;
  font-size:11px;
  border-radius:4px;
  cursor:pointer;
  font-weight:600;
}

.btn-cookie.accept{ background:#f39c12; color:#fff; }
.btn-cookie.reject{ background:#777; color:#fff; }
.btn-cookie.config{ background:#555; color:#fff; }
.btn-cookie.save{ background:#f39c12; color:#fff; margin-top:10px; }

.cookie-config{
  display:none;
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#fff;
  color:#333;
  font-family:'Poppins', sans-serif;
  padding:20px;
  z-index:100000;
  box-shadow:0 -2px 10px rgba(0,0,0,.3);
}

.cookie-option{
  display:block;
  margin-bottom:10px;
  font-size:13px;
}

.cookie-bar a,
.cookie-config a{
  color:#f39c12;
  text-decoration:underline;
}
