/* Noxygen mobile hardening: минимальный слой против горизонтального скролла и проблем Яндекс mobile-friendly. */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe,
table,
svg {
    max-width: 100%;
}

img,
svg {
    height: auto;
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
        line-height: 1.4;
    }

    a,
    button,
    input,
    select,
    textarea,
    .button,
    .add_to_cart_button {
        touch-action: manipulation;
    }

    button,
    .button,
    input[type="button"],
    input[type="submit"],
    .add_to_cart_button {
        min-height: 44px;
    }

    .container,
    .content-area,
    .site-content,
    .shop-grid,
    .products {
        max-width: 100% !important;
    }
}
