/**
 * Pool Builder Visualization Styles
 * All styles related to the pool visualization, background, model, lighting, and features display
 */


/* ===================================================================
   POOL VISUALIZATION CONTAINER
   =================================================================== */

.wppb_pool_visualization {
    aspect-ratio: 3/2;
    /* min-width: 400px !important; */
    /* min-height: 300px !important;
    max-width: 600px !important;
    max-height: 400px !important; */
    width: 100% !important;
    height: 100% !important;
    border: 2px solid #ccc;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f0f0f0;
    margin-bottom: 0.5rem; /* Space between visualizer and quick summary */
    /* Static display - no hover effects */
}

/* ===================================================================
   VISUALIZATION LAYERS (Z-INDEX STACK)
   =================================================================== */

/* Background Layer - Bottom layer (z-index: 1) */
.wppb_pool_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: cover;
    background-position: center;
    z-index: 1;
    background-color: #e0e0e0;
}

/* Pool Model Layer - Above background (z-index: 2) */
.wppb_pool_model {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}


/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */

@media (max-width: 768px) {
    .wppb_pool_visualization {
        min-height: 200px !important;
        max-height: 300px !important;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .wppb_pool_visualization {
        min-height: 200px !important;
        max-height: 300px !important;
        border-radius: 12px;
    }
}

