
/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1e1e1e;
  color: #fff;
  padding: 1rem 2rem;
  display: none;
  z-index: 9999;
  font-size: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
  text-align: center;
}

.cookie-banner-buttons {
  text-align: center;
}

.cookie-banner button {
  background-color: #f0f0f0;
  color: #000;
  border: none;
  padding: 0.5rem 1.2rem;
  margin: 0 0.3rem;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-banner button:hover {
  background-color: #ccc;
}

/* Cookie Info Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #333;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  width: 90%;
  max-width: 420px;
  z-index: 10000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.cookie-popup h3 {
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.cookie-popup p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  text-align: left;
}

.cookie-popup button {
  display: block;
  background-color: #1e1e1e;
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  margin: 0 auto;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-popup button:hover {
  background-color: #333;
}

#cookie-settings-button {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 50%;
  height: 3.5rem;
  width: 3.5rem;
  font-size: 1.8rem; /* adjust emoji size */
  cursor: pointer;
  z-index: 10001;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

#cookie-settings-button:hover,
#cookie-settings-button:hover {
  background: #f8f8f8;
  transform: scale(1.1);
}


@media (max-width: 768px) {
  #cookie-settings-button {
    height: 2.8rem;
    width: 2.8rem;
    font-size: 1.3rem;
  }

  .cookie-popup {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .cookie-popup h3 {
    font-size: 1.1rem;
  }

  .cookie-popup p {
    font-size: 0.85rem;
  }

  .cookie-banner {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .cookie-banner button {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
}
/* END OF Cookie banner */
