/* Volledige overlay over de site */
#hcw-age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* Verbergen indien nodig via JS */
.hcw-age-gate-hidden {
    display: none !important;
}

/* Modal venster */
.hcw-age-gate-modal {
    background: #ffffff;
    max-width: 480px;
    width: 100%;
    border-radius: 8px;
    padding: 2rem 1.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    text-align: center;
    box-sizing: border-box;
}

.hcw-age-gate-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.hcw-age-gate-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Knoppen */
.hcw-age-gate-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.hcw-age-gate-button {
    border: none;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.05s ease-out, box-shadow 0.05s ease-out, opacity 0.15s ease-out;
}

.hcw-age-gate-button--confirm {
    background-color: #2f855a;
    color: #ffffff;
}

.hcw-age-gate-button--confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 133, 90, 0.4);
}

.hcw-age-gate-button--deny {
    background-color: #e53e3e;
    color: #ffffff;
}

.hcw-age-gate-button--deny:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.4);
}

/* Tekst onderaan */
.hcw-age-gate-note {
    font-size: 0.85rem;
    margin-top: 1.25rem;
    color: #4a5568;
}

/* Specifieke styling voor de melding na "ik ben geen 16/18 jaar" */
#hcw-age-gate-underage-message {
    border: 1px solid #e53e3e; /* rode rand */
    border-radius: 6px;        /* ronde hoeken */
    padding: 15px;             /* padding rondom */
    font-weight: 700;
    color: #e53e3e;
}

/* Body mag niet scrollen terwijl de age gate actief is */
body.hcw-age-gate-no-scroll {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 480px) {
    .hcw-age-gate-modal {
        padding: 1.5rem 1.25rem;
    }

    .hcw-age-gate-title {
        font-size: 1.25rem;
    }
}
