/* Global background logo watermark */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../cdn/shop/files/logo1.png'); /* Path relative to CSS file */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: 400px; /* Dibuat lebih besar */
    opacity: 0.8; /* Dibuat lebih terlihat */
    z-index: -1;
    pointer-events: none; /* Pastikan tidak mengganggu klik */
}
