/**
 * Security Styles - Prevent Code Copying
 */

/* Disable text selection globally */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Allow selection only for input fields */
input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevent image dragging */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Re-enable pointer events for interactive images */
a img,
button img {
    pointer-events: auto;
}

/* Disable print media */
@media print {
    body {
        display: none !important;
    }
}

/* Watermark overlay (invisible but prevents screenshots) */
body::before {
    content: "© TNISK Silver Jewellery - All Rights Reserved";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
    z-index: 9999;
    white-space: nowrap;
}

/* Disable outline for security */
*:focus {
    outline: none !important;
}

/* Prevent highlighting */
::selection {
    background: transparent;
    color: inherit;
}

::-moz-selection {
    background: transparent;
    color: inherit;
}

/* Additional protection layer */
html {
    -webkit-tap-highlight-color: transparent;
}

/* Cursor override for copy prevention */
body {
    cursor: default !important;
}

/* Disable pointer events on code elements */
code,
pre {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}