/* Age Gate Styles */

/* When the page has .age-open, show the gate */
.age-open #age-gate { display: flex !important; }

#age-gate {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  font-family: 'Barlow Semi Condensed', sans-serif;
}

#age-gate .age-card {
  background-color: #345b52;
  color: #F5DEB3;
  max-width: 420px;
  width: 90%;
  padding: 24px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  border: 2px solid #F5DEB3;
}

#age-gate h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

#age-gate p {
  margin: 0 0 18px;
  font-size: 1.1rem;
}

#age-gate .age-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

#age-gate button {
  padding: 10px 16px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  border: 2px solid #F5DEB3;
  transition: all 0.25s cubic-bezier(.08, .59, .29, .99);
}

#age-yes {
  background: #F5DEB3;
  color: #345b52;
}

#age-no {
  background: transparent;
  color: #F5DEB3;
}

#age-gate p:last-child {
  margin: 14px 0 0;
  font-size: 0.8rem;
  opacity: .9;
}
