/**
 * LuxeHarmony Age Gate - Standalone Styles
 * Isolated from all other site CSS. Do not merge into style.css.
 */

html.lh-age-gate-active,
html.lh-age-gate-active body {
    overflow: hidden !important;
    height: 100% !important;
    touch-action: none !important;
}

#lhAgeGate {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    inset: 0 !important;
    z-index: 9999999 !important;
    display: none !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    margin: 0 !important;
    border: none !important;
    background: rgba(0, 0, 0, 0.88) !important;
    overflow: hidden !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    isolation: isolate !important;
    box-sizing: border-box !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    animation: lhAgeGateOverlayIn 0.35s ease forwards !important;
}

#lhAgeGate.lh-age-gate--visible {
    display: flex !important;
}

#lhAgeGate .lh-age-gate__panel {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10000000 !important;
    width: calc(100vw - 40px) !important;
    max-width: 560px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45) !important;
    border-top: 4px solid #E63973 !important;
    text-align: center !important;
    box-sizing: border-box !important;
    animation: lhAgeGatePanelIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
    overflow: hidden !important;
}

#lhAgeGate .lh-age-gate__inner {
    padding: 2.75rem 2.25rem !important;
}

#lhAgeGate .lh-age-gate__icon {
    width: 72px !important;
    height: 72px !important;
    margin: 0 auto 1.5rem !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #E63973 0%, #1F3C88 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(230, 57, 115, 0.35) !important;
}

#lhAgeGate .lh-age-gate__icon svg {
    display: block !important;
    width: 34px !important;
    height: 34px !important;
}

#lhAgeGate .lh-age-gate__title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: clamp(1.5rem, 4vw, 1.85rem) !important;
    font-weight: 600 !important;
    color: #1F3C88 !important;
    margin: 0 0 0.85rem 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}

#lhAgeGate .lh-age-gate__text {
    font-size: 0.95rem !important;
    color: #6B7280 !important;
    line-height: 1.75 !important;
    margin: 0 0 2rem 0 !important;
    padding: 0 !important;
}

#lhAgeGate .lh-age-gate__actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

#lhAgeGate .lh-age-gate__btn {
    display: block !important;
    width: 100% !important;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    line-height: 1.4 !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

#lhAgeGate .lh-age-gate__btn--yes {
    background: linear-gradient(135deg, #E63973 0%, #D42A6A 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 18px rgba(230, 57, 115, 0.35) !important;
}

#lhAgeGate .lh-age-gate__btn--yes:hover {
    background: linear-gradient(135deg, #C2185B 0%, #A01550 100%) !important;
    transform: translateY(-1px) !important;
}

#lhAgeGate .lh-age-gate__btn--no {
    background: #F8F9FC !important;
    color: #1F3C88 !important;
    border: 2px solid rgba(31, 60, 136, 0.2) !important;
}

#lhAgeGate .lh-age-gate__btn--no:hover {
    background: #1F3C88 !important;
    color: #ffffff !important;
    border-color: #1F3C88 !important;
}

@keyframes lhAgeGateOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lhAgeGatePanelIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (min-width: 490px) {
    #lhAgeGate .lh-age-gate__panel {
        width: 560px !important;
        min-width: 450px !important;
        max-width: 600px !important;
    }

    #lhAgeGate .lh-age-gate__actions {
        flex-direction: row !important;
    }

    #lhAgeGate .lh-age-gate__btn {
        flex: 1 !important;
    }
}

@media (max-width: 489.98px) {
    #lhAgeGate .lh-age-gate__inner {
        padding: 2rem 1.5rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    #lhAgeGate,
    #lhAgeGate .lh-age-gate__panel {
        animation: none !important;
    }
}
