/**
 * Ukryj galerię produktu i rozszerz konfigurator
 */

/* Ukryj całą galerię WooCommerce */
.single-product .woocommerce-product-gallery {
    display: none !important;
}

/* Rozszerz summary na całą szerokość */
.single-product div.product .summary {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

/* Ukryj standardowy przycisk dodaj do koszyka */
.single-product.has-fabric-configurator .single_add_to_cart_button {
    display: none !important;
}

/* Ukryj quantity selector */
.single-product.has-fabric-configurator .quantity {
    display: none !important;
}

/* Canvas sticky na desktop */
@media (min-width: 1025px) {
    .canvas-wrapper {
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 120px);
    }
}