#cookie-banner{

  position:fixed;

  left:50%;
  bottom:24px;

  transform:translateX(-50%);

  width:90%;
  max-width:650px;

  background:#ffffff;

  border-radius:20px;

  padding:24px;

  box-shadow:
  0 15px 50px rgba(0,0,0,0.15);

  z-index:99999;

  display:none;

  flex-direction:column;

  gap:20px;
}

#cookie-banner.show{

  display:flex;
}

.cookie-text h3{

  margin-bottom:12px;

  font-size:22px;

  color:#161616;
}

.cookie-text p{

  line-height:1.7;

  color:#555;
}

.cookie-text a{

  color:#b88646;

  font-weight:600;

  text-decoration:none;
}

.cookie-buttons{

  display:flex;

  gap:12px;

  justify-content:flex-end;

  flex-wrap:wrap;
}

.cookie-btn{

  padding:12px 20px;

  border:none;

  border-radius:12px;

  cursor:pointer;

  font-weight:600;

  transition:0.3s;
}

.cookie-btn:hover{

  transform:translateY(-2px);
}

.secondary-cookie-btn{

  background:#ececec;

  color:#222;
}

.cookie-btn:not(.secondary-cookie-btn){

  background:#b88646;

  color:white;
}