/*
 Theme Name:   storefront Child
 Theme URI:    https://trakmove.com/storefront-child/
 Description:  Storefront Child Theme
 Author:       Serge Danan
 Author URI:   https://trakmove.com
 Template:     storefront
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  storefront-child
*/


/* remove search box in the header*/
.site-header .widget_product_search , .site-search{
display: none;
}

/* supprimer ligne menu principal */
.storefront-primary-navigation {
display: none;
}

/* modifier taille police menu secondaire */
.secondary-navigation .menu {
    font-size: 1.25em;
}

/*modifier couleur menu secondaire */
.secondary-navigation ul.menu a:hover {
    color: white;
	background-color: #3387a3;
}

.main-navigation ul li a:hover, .main-navigation ul li:hover > a, .site-title a:hover, .site-header ul.menu li.current-menu-item > a {
    background-color: #3387a3;
	color: white;
}


/* Control the image column width in the product image */
.storefront-full-width-content.single-product div.product .woocommerce-product-gallery {
    width: 30%;
    float: left;
    margin-right: 3%;
    margin-bottom: 3.70em;
}


/* Control the description column width in the product image */
.storefront-full-width-content.single-product div.product .summary {
    width: 67%;
    float: right;
    margin-right: 0;
    margin-bottom: 3.70em;
}

/* remove the sidebar on WooCommerce product pages to go full width 
Complément à la fontion functions.php*/
body.woocommerce #primary { 
	width: 100%; 
	}



