/* ADULTS ONLY MODAL */
.adult-modal {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
}

.adult-modal.show {
    opacity: 1;
    visibility: visible;
}

.adult-modal-content {
    position: relative;

    width: min(90%, 500px);

    background: #fffaf3;
    border-radius: 24px;

    padding: 40px 30px;

    text-align: center;

    box-shadow: 0 20px 60px rgba(0,0,0,0.18);

    animation: modalPop 0.35s ease;
}

@keyframes modalPop {
    from {
        transform: scale(0.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.adult-modal-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    color: #4d5735;
    margin-bottom: 12px;
}

.adult-heart {
    font-size: 1.8rem;
    color: #8b6b4d;
    margin-bottom: 18px;
}

.adult-modal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}

.adult-button {
    margin-top: 18px;

    background: #4d5735;
    color: white;

    border: none;
    border-radius: 999px;

    padding: 14px 26px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.25s ease;
}

.adult-button:hover {
    background: #657149;
}

.adult-close {
    position: absolute;
    top: 14px;
    right: 16px;

    background: transparent;
    border: none;

    font-size: 28px;
    color: #777;

    cursor: pointer;
}

@media (max-width: 640px) {
    .adult-modal-content {
        padding: 34px 22px;
    }

    .adult-modal-content h2 {
        font-size: 1.8rem;
    }
}