.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;

  background: rgba(0,0,0,.96);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 30px;
  backdrop-filter: blur(10px);
}

.cookie-box{
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-text{
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.6;
  max-width: 800px;
}

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

.cookie-buttons{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cookie-buttons button{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: #fff;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s ease;
  min-width: 130px;
}

.cookie-buttons button:hover{
  border-color: #fff;
  transform: translateY(-1px);
}

#accept-cookies{
  background: #fff;
  color: #000;
  border-color: #fff;
}

#accept-cookies:hover{
  background: #eaeaea;
}

#reject-cookies{
  background: transparent;
  color: #fff;
}

@media (max-width: 768px){

  .cookie-box{
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-text{
    max-width: 100%;
  }

  .cookie-buttons{
    width: 100%;
  }

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

}