
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #f1f5f9;
  padding: 20px;
  z-index: 10000;
  font-size: 16px;
  display: none;
  border-top: 1px solid rgba(253, 224, 71, 0.2);
}

.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: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #fff;
}

.cookie-consent__button--accept:hover {
  filter: brightness(1.1);
}

.cookie-consent__button--customize {
  background-color: rgba(255,255,255,0.15);
  color: #fcd34d;
  border: 1px solid rgba(253, 224, 71, 0.4);
}

.cookie-consent__button--customize:hover {
  background-color: rgba(255,255,255,0.25);
}

.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: 20px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(180, 83, 9, 0.15);
}

.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: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #fff;
}

.age-modal__button--confirm:hover {
  filter: brightness(1.1);
}

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

body.lock {
  overflow: hidden;
}
