Why isn't my website page width at 100% on mobile?

Hi @vseazon

This is the function of product image slider. Please add this code to the bottom of section-main-product.css file to make it full-width

@media(max-width: 749px) {
.slider.slider--mobile {
    scroll-padding-left: 0 !important;
}
.product__media-list .product__media-item {
    width: 100% !important;
}
}