/* Desktop custom gallery hidden on mobile, show default Woo gallery */
@media (max-width: 767px) {
    .cwpg-desktop-gallery {
        display: none !important;
    }
    .woocommerce-product-gallery {
        display: block !important;
    }
}

/* Desktop custom gallery */
@media (min-width: 768px) {

    .sales-flash-overlay {
       display: flex; 
       flex-wrap: wrap;
    }

    .cwpg-desktop-gallery {
        display: block;
        width: 50%;
        max-width: 640px;
    }

    /* Product summary next to gallery */
    .single-product.woocommerce .summary.entry-summary {
        width: 48% !important;
        padding: 0px 50px;
        position: sticky !important;
        top: 200px;
        align-self: flex-start;
    }

    /* Image styling */
    .cwpg-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Row layout for two small images */
    .cwpg-row {
        display: flex;
    }

    .cwpg-half {
        flex: 1;
    }

    /* Hide default gallery on desktop */
    .woocommerce-product-gallery:not(.cwpg-desktop-gallery) {
        display: none !important;
    }
}

/* Hide magnifier/search icon */
.woocommerce-product-gallery__trigger {
    display: none !important;
}

/* Disable cursor zoom */
.woocommerce-product-gallery__image img {
    cursor: default !important;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.images.cwpg-desktop-gallery {
    margin-right: 0;
}