/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
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: astra-child
Template: astra
*/

/* 1. Ensure the shop container completely hits the edges of the screen */
.archive.woocommerce .site-content > .ast-container,
.archive.woocommerce .ast-woocommerce-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* 2. Target the product grid to remove ALL gaps and margins */
.woocommerce[class*="columns-"] ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important; /* Overrides modern CSS grid gaps */
    border-top: 1px solid #e2e2e2; /* Top border of the whole grid */
    border-left: 1px solid #e2e2e2; /* Left border of the whole grid */
}

/* 3. Style the individual product boxes to form the grid lines */
.woocommerce[class*="columns-"] ul.products li.product {
    margin: 0 !important;
    /* This padding adds breathing room INSIDE the box, around the image/text */
    padding: 30px 20px 40px 20px !important; 
    border-right: 1px solid #e2e2e2; /* Right vertical grid line */
    border-bottom: 1px solid #e2e2e2; /* Bottom horizontal grid line */
    box-sizing: border-box !important;
    text-align: center; /* Centers the product text/price cleanly */
    background-color: #f7f7f5; /* Optional: Slight background color like your reference */
}

/* 4. Force exact widths so the seamless edges align perfectly with your Columns Switcher */
.woocommerce.columns-2 ul.products li.product { width: 50% !important; }
.woocommerce.columns-3 ul.products li.product { width: 33.3333% !important; }
.woocommerce.columns-4 ul.products li.product { width: 25% !important; }
.woocommerce.columns-5 ul.products li.product { width: 20% !important; }

/* Optional: Clean up the "Add to Cart" button spacing in this compact setup */
.woocommerce ul.products li.product .button {
    margin-top: 15px;
}

