
/* --------------------------
   COOKIE BANNER
--------------------------- */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 15px;
  z-index: 9999;
  font-family: Arial, sans-serif;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

#cookie-banner-buttons {
  display: flex;
  gap: 10px;
}

#cookie-banner-buttons button {
  padding: 6px 14px;
  border: none;
  cursor: pointer;
}

#accept-all {
  background: #fff;
  color: #000;
}

#customize {
  background: #444;
  color: #fff;
}

/* --------------------------
   COOKIE SETTINGS MODAL
--------------------------- */
#cookie-settings {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  color: #fff;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#cookie-settings-box {
  background: #000;
  padding: 25px;
  max-width: 500px;
  width: 90%;
  font-size: 14px;
  border-radius: 8px;
  position: relative;
}

#close-modal {
  position: absolute;
  top: 10px; right: 10px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

#cookie-settings form label {
  display: block;
  margin-bottom: 15px;
}

#cookie-settings form small {
  opacity: 0.7;
}

/* Buttons inside modal */
.cookie-modal-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  gap: 10px;
}

.cookie-btn {
  padding: 6px 14px;
  border: none;
  cursor: pointer;
}

#reject-all {
  background: #444;
  color: #fff;
}

#save-preferences {
  background: #fff;
  color: #000;
}

#accept-all-modal {
  background: #fff;
  color: #000;
}

/* --------------------------
   MOBILE RESPONSIVE
--------------------------- */
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  #cookie-banner-buttons {
    flex-direction: row;
    
  }

  #cookie-banner-buttons button {
    width: 100%;
  }

  .cookie-modal-buttons {
    flex-direction: column-reverse;
  }

  .cookie-btn {
    width: 100%;
  }
}
