body:has(.style-1-wrapper) {
	body {
		background-color: #050505;
		color: white;
	}

    /* 1. CUSTOM header STYLE FOR DARK MODE */
    .header-text-color {
        color: rgba(255, 255, 255, 0.9);
    }
    .header-border-color {
        border-color: rgba(255, 255, 255, 0.1);
    }
    .header-bg-color:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    #mobile-menu.header-mobile-bg-color {
        background-color: rgb(2 6 23 / 0.85);
    }

    /* 2. CUSTOM RETICLE CURSOR */
	.custom-cursor {
		border: 2.5px solid #00d2ef;
		transition: background-color 0.3s, border-color 0.3s;
		/*mix-blend-mode: difference;*/
		/* Cool inversion effect */
	}
	.custom-cursor.hovered {
		background-color: rgba(0, 210, 239, 0.1);
		border-color: #00d3ef0b;
	}
	.custom-cursor::after {
		/* The center dot */
		background: white;
	}

    /* 3. SONAR RIPPLE CLICK */
    .sonar-ripple {
        background: rgba(0, 210, 239, 0.1);
        border: 2px solid rgba(0, 210, 239, 0.8);
        mix-blend-mode: screen;
    }

    /* 4. QUANTUM BORDER GLOW */
	.quantum-border::before {
		background: linear-gradient(90deg, rgb(31 125 177 / 0%) 0%, rgb(17 188 249 / 97%) 50%, rgb(239 252 255 / 0%) 100%);
	}
	.quantum-border::after {
		background: #0f172a;
	}

	/* 5. LIQUID GLASS SHIMMER (The "Squeaky Clean" look) */
	.glass-shimmer::after {
		background: linear-gradient(to right,
				transparent 0%,
				rgba(255, 255, 255, 0.4) 50%,
				transparent 100%);
	}

    /* 6. BIO-DIGITAL PULSE (The "Active Formula" look) */
    .bio-pulse {
          background-image: linear-gradient(45deg, #0099ff, #00d2ef, #00ffcc, #0099ff);
        box-shadow: 0 0 20px rgba(0, 210, 239, 0.5);
    }

    /* 7. NANO-PARTICLE (The "Cleaning Agent") */
    .nano-particle {
        background: #00d2ef;
        box-shadow: 0 0 10px #00d2ef;
    }

    /* 8. SINGLE PRODUCT IMAGE STYLES */
    img#singleproductimage {
        border-color: #ffffff0e;
        filter: drop-shadow(0 0 30px rgba(0, 187, 239, 0.5));
    }

    /* 9. CHEMICAL FILL SCROLLBAR */
    .chemical-scroll-track {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
	.chemical-scroll-fill {
		background: linear-gradient(to top, #0099ff, #00d2ef);
		box-shadow: 0 0 15px #00d2ef;
	}
	.chemical-scroll-fill::after {
		background-image: radial-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px);
	}

    /* 10. LASER SCAN HOVER (For Specs) */
    .spec-scan-line {
        background: #00d2ef;
        box-shadow: 0 0 35px #00d2ef;
    }

    /* 11. QR MODAL DARK OVERRIDE */
    #qr-modal .qr-modal-content {
        background: #0a0a0a !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        box-shadow: 0 25px 50px rgba(0,0,0,0.8) !important;
    }
    #qr-modal .qr-modal-content h3 {
        color: white !important;
    }
    #qr-modal .qr-modal-content p {
        color: rgba(255,255,255,0.5) !important;
    }
    #qr-modal #qr-code-target {
        background: white !important;
        border-radius: 16px;
    }
    #qr-modal #qr-close-btn {
        color: rgba(255,255,255,0.5) !important;
    }
    #qr-modal #qr-close-btn:hover {
        color: #ef4444 !important;
        background: rgba(255,255,255,0.05) !important;
    }
    #qr-modal .qr-modal-content > .mb-4 > div:first-child {
        background: linear-gradient(135deg, var(--accent, #00d2ef), #0099ff) !important;
    }
    #qr-modal #qr-copy-link-btn {
        background: rgba(255,255,255,0.05) !important;
        color: white !important;
        border: 1px solid rgba(255,255,255,0.1);
    }
    #qr-modal #qr-copy-link-btn:hover {
        background: rgba(0,210,239,0.15) !important;
        color: #00d2ef !important;
        border-color: rgba(0,210,239,0.3);
    }

.grid__item-img {
	width: 110%;
    height: 105%;
	aspect-ratio: 1;
	position: absolute;
	overflow: hidden;
    margin: -10px;
    padding: 0;
    border-radius: 10%;
	place-items: center;
	--x: 0px; 
	--y: 0px;
}
.grid__item-img::after {
    display: none;
}
.grid__item-img-deco {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    
    /* 1. Define the Gradient here */
    background: radial-gradient(rgb(0, 32, 51) 40%, rgb(3, 80, 175) 70%, rgb(104, 64, 212) 80%, rgb(248, 24, 110) 90%);
    /*background: white;*/
/* background: radial-gradient(circle,rgb(1, 0, 21) 0%, rgb(0, 0, 80) 55%, rgba(0, 212, 255, 1) 100%); */

    background-size: cover;
    background-repeat: no-repeat;
    
    /* 2. Cut the gradient into the shape of the letters */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* 3. Make the text fill transparent so the gradient shows through */
    -webkit-text-fill-color: transparent;
    color: transparent;
    
    /* 4. The Spotlight Mask (The mouse hole) */
    /* This ensures the text is only visible around the cursor */
    -webkit-mask-image: radial-gradient(300px circle at var(--x) var(--y), black 20%, rgba(0,0,0,0.25), transparent);
    mask-image: radial-gradient(300px circle at var(--x) var(--y), black 20%, rgba(0,0,0,0.25), transparent);

    /* Standard Styling */
    font-family: "Space Mono", monospace;
        /*font-family: "Doto", sans-serif;
        font-optical-sizing: auto;*/
     font-size: 1rem;
    word-wrap: break-word;
    line-height: 1.2;
    z-index: 2;
    opacity: 0; /* JS fades this in on hover */
    pointer-events: none;
}

}