/* age-verification.css */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
  .age-verification-overlay.fade-out {
    opacity: 0;
  }
  
  .age-verification-container {
    background-color: #fcfcfc;
    max-width: 500px;
    width: 90%;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    font-family: 'Cormorant Garamond', Didot, 'Bodoni MT', serif;
  }
  
  .age-verification-container h2 {
    font-size: 2rem;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #1a1a1a;
  }
  
  .age-verification-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
  }
  
  .age-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .age-verify-button {
    padding: 12px 32px;
    border: none;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', Didot, 'Bodoni MT', serif;
  }
  
  .age-verify-button.confirm {
    background-color: #C21E56;
    color: white;
  }
  
  .age-verify-button.confirm:hover {
    background-color: #A01845;
  }
  
  .age-verify-button.exit {
    background-color: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
  }
  
  .age-verify-button.exit:hover {
    background-color: #1a1a1a;
    color: white;
  }
  
  body.no-scroll {
    overflow: hidden;
  }
  
  @media (min-width: 768px) {
    .age-verification-buttons {
      flex-direction: row;
      justify-content: center;
      gap: 20px;
    }
  }