/* === Мобильная страница товара === */
@media (max-width: 767px) {

    /* Минимизируем шапку */
    body#product #header {
        padding: 5px 0 !important;
        height: auto !important;
    }

    body#product #header_logo img {
        max-height: 40px !important; /* уменьшенный логотип */
        width: auto !important;
    }

    /* Скрываем меню */
    body#product ul.sf-menu {
        display: none !important;
    }

    body#product #block_top_menu {
        display: none !important;
    }

    /* Скрываем корзину */
    body#product .shopping_cart {
        display: none !important;
    }

    /* Товар на весь экран */
    body#product .primary_block {
        margin-top: 0 !important;
    }

    /* Закрепляем кнопку купить внизу */
    body#product .add-to-cart {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 999 !important;
        background: #ff9900 !important;
        text-align: center;
        padding: 10px 0;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    }

    body#product .add-to-cart a {
        display: block !important;
        color: #fff !important;
        font-size: 16px !important;
        font-weight: bold;
    }
}