/*
 Theme Name:   Dev By Mrigank Theme
 Theme URI:    http://tidyteamclean.com.au/
 Description:  A High-Performance Custom WooCommerce Theme for Tidy Team Clean.
 Author:       Mrigank
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 Text Domain:  devbymrigank
*/

/* --- 2. WooCommerce Layout Fixes (Crucial for Custom Themes) --- */

/* Shop Grid: Products ko 3-4 column mein dikhane ke liye */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 40px 0;
}

.woocommerce ul.products li.product {
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
}

/* --- 3. Checkout Page Design (Overlap Fix) --- */

.woocommerce-checkout {
    padding: 60px 0;
}

/* Billing aur Order Review ko do alag columns mein divide karna */
@media (min-width: 768px) {
    #customer_details {
        float: left;
        width: 55%;
    }
    #order_review_heading, #order_review {
        float: right;
        width: 40%;
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
}

/* Clearfix for float layout */
.woocommerce-checkout:after {
    content: "";
    display: table;
    clear: both;
}

/* --- 4. Buttons & UI Elements --- */

.button, .woocommerce-button {
    background-color: #0073aa !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 5px !important;
    border: none !important;
    cursor: pointer;
    font-weight: bold;
}

.button:hover {
    background-color: #005177 !important;
}

/* Price highlighting */
.amount {
    color: #28a745;
    font-weight: 700;
}