/* Gallery Height Matching with Combined Panels */

@media (min-width: 768px) {
    /* Make gallery wrapper match the height of both right panels combined */
    .product-gallery-wrapper {
        display: flex;
        flex-direction: column;
    }

    .product-gallery.panel.panel-default {
        flex: 1;
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .product-gallery .panel-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        min-height: 200px;
        width: 100%;
    }

    /* Ensure carousel containers maintain proper width */
    .product-gallery .panel-body #sync1,
    .product-gallery .panel-body #sync2 {
        width: 100%;
    }

    /* Ensure right column panels stack properly */
    .product-info-wrapper {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .contact-panel {
        margin-bottom: 10px;
    }

    .main-product-details .panel {
        margin-bottom: 0;
        flex: 1;
    }

    /* JavaScript will calculate and set exact heights */
    .height-matched .product-gallery.panel.panel-default {
        height: var(--target-height);
    }
}

@media (max-width: 767px) {
    .product-gallery.panel.panel-default {
        height: auto !important;
    }
}