/*!
Theme Name: ikhwaa
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ikhwaa
*/

/* Products grid-এ gap/sapce remove */
.woocommerce ul.products li.product {
    margin-bottom: 0 !important;  /* নিচের gap */
    min-height: auto !important;  /* ফিক্সড height remove */
    padding: 10px !important;    /* padding কমাও */
}

/* Grid layout tight করো */
.woocommerce ul.products {
    margin: 0 -15px 0 0 !important;  /* সাইড gap */
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));  /* Responsive grid */
    gap: 15px 15px;  /* চাইলে ছোট gap রাখো */
}

/* Header/Top gap remove */
.woocommerce-products-header,
.storefront-breadcrumb {
    display: none !important;  /* Page title বা breadcrumb সরাও */
}
.woocommerce-notices-wrapper{
	display: none;
}

