.coteaux-age-gate {
    display: none;
}

html.coteaux-age-gate-active .coteaux-age-gate {
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999999 !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.coteaux-age-gate__backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    opacity: 0 !important;
    transition: opacity .35s ease !important;
}

.coteaux-age-gate.is-open .coteaux-age-gate__backdrop {
    opacity: 1 !important;
}

.coteaux-age-gate.is-closing .coteaux-age-gate__backdrop {
    opacity: 0 !important;
}

.coteaux-age-gate__modal {
    position: relative !important;
    z-index: 1 !important;
    background: #244921 !important;
    color: #FFF2E0 !important;
    border-radius: 24px !important;
    padding: 40px 32px 32px !important;
    text-align: center !important;
    max-width: 460px !important;
    width: 100% !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35) !important;
    font-family: 'Syne', sans-serif !important;
    transform: scale(0.82) !important;
    opacity: 0 !important;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .35s ease !important;
}

.coteaux-age-gate.is-open .coteaux-age-gate__modal {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.coteaux-age-gate.is-closing .coteaux-age-gate__modal {
    transform: scale(0.92) !important;
    opacity: 0 !important;
    transition: transform .3s cubic-bezier(0.4, 0, 1, 1), opacity .25s ease !important;
}

.coteaux-age-gate__logo {
    display: block !important;
    max-width: 180px !important;
    height: auto !important;
    margin: 0 auto 22px !important;
}

.coteaux-age-gate__title {
    font-family: 'Syne', sans-serif !important;
    font-weight: 700 !important;
    font-size: 50px !important;
    margin: 0 0 10px !important;
    color: #FFF2E0 !important;
    line-height: 1.05 !important;
}

.coteaux-age-gate__subtitle {
    font-family: 'Caveat', cursive !important;
    font-weight: 400 !important;
    font-size: 45px !important;
    color: #D5A137 !important;
    margin: 0 0 26px !important;
    line-height: 1.1 !important;
}

.coteaux-age-gate__actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
}

.coteaux-age-gate__btn {
    background: transparent !important;
    color: #FFF2E0 !important;
    border: 2px solid #FFF2E0 !important;
    border-radius: 99px !important;
    padding: 6px 22px !important;
    font-family: 'Syne', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    cursor: pointer !important;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease !important;
}

.coteaux-age-gate__btn:hover {
    background: #FFF2E0 !important;
    border-color: #FFF2E0 !important;
    color: #244921 !important;
}

.coteaux-age-gate__btn:active {
    transform: scale(.97) !important;
}

@media (max-width: 480px) {
    .coteaux-age-gate__modal {
        padding: 30px 22px 24px !important;
        border-radius: 18px !important;
    }
    .coteaux-age-gate__title    { font-size: 40px !important; }
    .coteaux-age-gate__subtitle { font-size: 40px !important; margin-bottom: 22px !important; }
    .coteaux-age-gate__logo     { max-width: 150px !important; margin-bottom: 16px !important; }
    .coteaux-age-gate__btn      { font-size: 16px !important; padding: 5px 18px !important; }
}
