/**
 * Theme Name:     OnePress Child
 * Author:         FameThemes
 * Template:       onepress
 * Text Domain:	   onepress-child
 * Description:    Child theme of Onepress
 */
 
 
.woocommerce-tabs,
.up-sells {
    display:none;
}
@media (max-width: 768px) {
    /* 1. Make the main product container a flexbox column */
    .single-product div.product {
        display: flex !important;
        flex-direction: column !important;
    }

    /* 2. "Unwrap" the summary div so we can move the title independently */
    .single-product div.product .summary {
        display: contents !important;
    }

    /* 3. Reorder the components */
    .single-product .product_title {
        order: -2 !important; /* Forces Title to the very top */
        text-align: center;    /* Keeps it tidy on mobile */
        padding: 15px;
    }

    .single-product .woocommerce-product-gallery {
        order: -1 !important; /* Puts Image second */
        margin-bottom: 20px !important;
    }

    /* 4. Price, Description, and Cart follow naturally */
    .single-product .summary > *:not(.product_title) {
        order: 0 !important;
    }
}