/* ====== Age Verification Overlay ====== */
 
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: none;
}
 
#overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}
 
#popup {
    /* Sizing & spacing only — colors/fonts come from the site */
    width: 700px;
    max-width: 90%;
    padding: 40px 30px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 1px 2px 18px rgba(0, 0, 0, 0.5);
 
    /* Inherit site background and text */
    background-color: var(--site-bg, #fff);
    color: inherit;
}
 
#popup h2 {
    /* Let the site's heading styles take over — just add spacing */
    margin-top: 0;
    margin-bottom: 1.25em;
}
 
#popup .btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}
 
/* Buttons use the site's .main-btn class — no overrides needed here */
/* Only add IDs for JS hooks; styling comes from main-btn */

/* Custom Yes/No button colors — earthy tones from the El Güel brand palette */
#yesBtn {
    background-color: #5a7a3a;
    color: #fff;
    padding: 14px 40px;
}
 
#noBtn {
    background-color: #cc3535;
    color: #fff;
    padding: 14px 40px;
}
 
#yesBtn:hover { background-color: #3f5a28; color: #fff; }
#noBtn:hover  { background-color: #a02828; color: #fff; }
  
 
 
@media only screen and (max-width: 600px) {
    #popup {
        padding: 30px 20px;
    }
 
    #popup h2 {
        font-size: 1.25rem;
    }
 
    #popup .btn-group {
        flex-direction: column;
        align-items: center;
    }
}