
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #004d99;
  color: #fff;
  padding: 20px;
  z-index: 10000;
  font-size: 16px;
  display: none;
}

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

.cookie-consent__buttons {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent__button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-consent__button--accept {
  background-color: #00cc66;
  color: #fff;
}

.cookie-consent__button--accept:hover {
  background-color: #00994d;
}

.cookie-consent__button--customize {
  background-color: #ffffff;
  color: #004d99;
}

.cookie-consent__button--customize:hover {
  background-color: #cce6ff;
}

.cookie-consent__button--back {
  background-color: #ccc;
  color: #000;
}

.cookie-settings {
  margin-top: 20px;
  background-color: #fff;
  color: #111;
  padding: 20px;
  border-radius: 10px;
  display: none;
}

.cookie-settings__option {
  margin-bottom: 20px;
}

.cookie-settings__option label {
  font-weight: 600;
}

.cookie-settings__option .description {
  font-size: 14px;
  color: #555;
}


.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11000;
}

.age-modal__content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.age-modal__content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #111;
}

.age-modal__content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.age-modal__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.age-modal__button {
  padding: 10px 24px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.age-modal__button--confirm {
  background-color: #007bff;
  color: #fff;
}

.age-modal__button--confirm:hover {
  background-color: #0056b3;
}

.age-modal__button--deny {
  background-color: #999;
  color: #fff;
}
