/* NSFW IMAGE BLUR */
img[data-nsfw="true"] {
    filter: blur(18px);
    transition: filter 0.3s ease;
}
body.wc-nsfw-unlocked img[data-nsfw="true"] {
    filter: none;
}

/* MODAL */
.wc-nsfw-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-nsfw-modal-content {
    padding: 30px;
    max-width: 420px;
    text-align: center;
    border-radius: 6px;
}

/* NSFW SHOP PAGE MESSAGE */
.wc-nsfw-blocked-message {
    background: #ffeded;
    color: #900;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
}
