@charset "utf-8";
        /* Crucial for AR passthrough */
        canvas.a-canvas {
            background-color: transparent !important;
        }

        html,
        body {
            background-color: transparent !important;
        }

        #btn-native-ar {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 12px 24px;
            background: rgb(158, 129, 110);
            color: white;
            font-size: 16px;
            font-weight: bold;
            border: 2px solid white;
            border-radius: 8px;
            cursor: pointer;
            z-index: 9999;
            display: block;
        }

        #ar-menu-container {
            position: absolute;
            bottom: 20px;
            left: 400px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        #btn-ar-toggle {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: rgba(116, 232, 172, 1) -1px -1px 3px 1px, rgba(57, 191, 117, 1) -2px -2px 3px 0px, rgba(57, 191, 117, 1) -1px -1px 4px 2px inset, rgba(0, 0, 0, 1) 2px 2px 6px 4px;
            text-shadow: rgb(131, 219, 174) -1px -1px 3px, rgba(0, 0, 0, 0.88) 1px 1px 2px;
            background: rgb(158, 129, 110);
            font-family: "Book Antiqua";
            font-size: 20px;
            color: rgb(64, 52, 42);
            letter-spacing: 1px;
        }

        #ar-model-list {
            display: none;
            /* Hidden by default */
            flex-direction: column;
            gap: 5px;
            background-color: rgba(48, 37, 28, 1);
            box-shadow: rgba(57, 191, 117, 1) -1px -1px 4px 1px, rgba(57, 191, 117, 1) 1px 1px 2px -1px inset, rgba(57, 191, 117, 1) -1px -1px 5px 0px inset, rgba(0, 0, 0, 1) 1px 1px 4px 3px;
            padding: 10px;
            border-radius: 5px;
        }

        .ar-model-btn {
            padding: 8px;
            color: white;
            cursor: pointer;
            text-align: left;
            box-shadow: rgb(57, 191, 117) -2px -2px 2px 0px, rgb(0, 0, 0) -1px -1px 2px 0px inset, rgb(0, 0, 0) 0px 0px 10px 0px;
            text-shadow: rgb(0, 0, 0) 1px 1px 3px;
            background-color: rgb(61, 58, 57);
            font-family: "Calisto MT";
            font-size: 16.96px;
            color: rgb(184, 180, 177);
            text-indent: 5px;
            letter-spacing: 1px;
            line-height: 11px;
            text-transform: capitalize;
        }

        .ar-model-btn:hover {
            box-shadow: rgb(57, 191, 117) -2px -2px 3px 0px, rgb(0, 0, 0) -1px -1px 2px 0px inset, rgba(0, 0, 0, 1) 0px 0px 10px 0px;
            background: #666;
        }
    
