/*
Theme Name: Konte Child Theme
Theme URI: http://konte.uix.store/
Author: UIX Themes
Author URI: http://uix.store
Description: A fully responsive Premium WordPress Theme with a pixel perfect design and extensive functionality
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: konte
Tags: one-column, two-columns, right-sidebar, custom-colors, custom-menu, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
Template: konte
*/
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 300px;  /* set a fixed height */
    object-fit: cover; /* crop to fit */
}
/* Hide hamburger on desktop */
@media (min-width: 1025px) {
  .header-hamburger,
  .hamburger-menu {
    display: none !important;
  }
}

/* (Optional) ensure it shows on mobile/tablet */
@media (max-width: 1024px) {
  .header-hamburger,
  .hamburger-menu {
    display: block; /* or flex, as your layout needs */
  }
}

/* ✅ Single product background white */
.layout-v1 {
    background-color: #efefef !important;
}

/* ✅ Force gallery wrapper white too */
.single-product .woocommerce-product-gallery,
.single-product .woocommerce-product-gallery__wrapper {
    background-color: #efefef !important;
}

/* ✅ Fix product image size */
.single-product .woocommerce-product-gallery img {
    width: 100%;
    max-width: 500px;   /* set max width */
    height: auto;
    object-fit: contain; /* keep full image, no crop */
    margin: 0 auto;      /* center image */
    display: block;
}

/* ✅ Keep summary section aligned */
.single-product .summary.entry-summary {
    background-color: #efefef !important;
}
.product-gallery-summary {
	    margin-top: 120px;
}
.header-main{
	background-color: #fff;
}
/* WooCommerce single product image fixed size */
.single-product .woocommerce-product-gallery img {
    width: 400px;       /* set fixed width */
    height: 400px;      /* set fixed height */
    object-fit: cover;  /* crop to fit box */
    display: block;
    margin: 0 auto;     /* center the image */
}



