/*
 * CDMedia Frontend Content Protection CSS
 * File: cdmedia.in/assets/css/content-protection.css
 *
 * Purpose:
 * - Disable normal text selection on public website.
 * - Disable image dragging/selection.
 * - Keep forms usable.
 */

html body.cd-content-protection,
html body.cd-content-protection *:not(input):not(textarea):not(select):not(option):not([contenteditable="true"]):not(.allow-copy):not(.allow-copy *) {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

html body.cd-content-protection img,
html body.cd-content-protection picture,
html body.cd-content-protection svg,
html body.cd-content-protection canvas,
html body.cd-content-protection video {
    -webkit-user-drag: none !important;
    user-drag: none !important;
    -webkit-touch-callout: none !important;
}

html body.cd-content-protection img {
    pointer-events: auto;
}

/* Keep form/payment/contact fields normal */
html body.cd-content-protection input,
html body.cd-content-protection textarea,
html body.cd-content-protection select,
html body.cd-content-protection option,
html body.cd-content-protection [contenteditable="true"],
html body.cd-content-protection .allow-copy,
html body.cd-content-protection .allow-copy * {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Optional subtle protected image state */
html body.cd-content-protection img {
    -webkit-tap-highlight-color: transparent;
}

/* Print deterrent */
@media print {
    html body.cd-content-protection {
        display: none !important;
    }

    html body.cd-content-protection::before {
        content: "Printing is disabled for this website.";
        display: block !important;
        color: #000;
        font-size: 22px;
        padding: 40px;
    }
}
