#ar-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

#ar-preview-overlay video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

#ar-product-image {
    position: relative;
    max-width: 60%;
    max-height: 50%;
    z-index: 2;
    transition: transform 0.3s ease;
    box-shadow:  20px 10px rgba(0, 0, 0, 0.5);  
}

.zoom-controls {
    position: absolute;
    bottom: 50px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.zoom-controls button {
    background: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background 0.2s;
}

.zoom-controls button:hover {
    background: #ddd;
}
