.nwl_auth_modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.nwl_auth_modal.is-open {
    opacity: 1;
    visibility: visible;
}

.nwl_auth_modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(3px);
}

.nwl_auth_modal__dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    background: #FFFCF1;
    border: 1px solid #000000;
    border-radius: 8px;
    box-shadow: 6px 8px 0 0 #000000;
    padding: 28px 24px;
    text-align: center;
}

.nwl_auth_modal__close {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid #000000;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.nwl_auth_modal__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #000000;
}

.nwl_auth_modal__text {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #222222;
}

.nwl_auth_modal__actions {
    display: flex;
    gap: 10px;
}

.nwl_auth_modal__actions a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid #000000;
    border-radius: 6px;
    box-shadow: 3px 4px 0 0 #000000;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.nwl_auth_modal__login {
    background: #7b59e3;
    color: #ffffff;
}

.nwl_auth_modal__signup {
    background: #ffa725;
    color: #000000;
}

#nwl-guest-cart-loading {
    padding: 20px 0;
    text-align: center;
}
