/**
Theme Name: Astra Child theme matcollc
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-theme-matcollc
Template: astra
*/


/* ===================================================================
   CUSTOM: Background color customization
   Add this to the bottom of astra-child-theme-matc/style.css
   =================================================================== */

/* --- 1. Checkout page background ONLY (not the whole site) --- */
/* Astra wraps checkout content usually inside .woocommerce-checkout or body.woocommerce-checkout */
body.woocommerce-checkout {
	background-color: #f7f5ef; /* soft cream, matches your organic branding — change hex as needed */
}

/* If your checkout content sits inside a card/box (like in your screenshots),
   you can target just that box instead of the whole page: */
body.woocommerce-checkout .woocommerce {
	background-color: #ffffff;
	padding: 40px;
	border-radius: 12px;
}


/* --- 2. Site-wide DEFAULT background color (applies everywhere, unless overridden) --- */
body {
	background-color: #f7f5ef; /* change this hex to whatever base background you want site-wide */
}


/* --- Optional: different background specifically behind the checkout form
   (left column) vs the quote summary (right column), if you want contrast --- */
.billing_first_name {
    border-radius:5px;
}

.woocommerce-billing-fields {
	background-color: #ffffff;
}

.woocommerce-checkout-review-order {
	background-color: #ffffff;
	padding: 30px;
	border-width:0px;
	border-radius: 0px;
}

.order_review_heading {
    border-width:0px;
    border-radius:0px;
}

.woocommerce-additional-fields > h3 {
	display: none;
}

#order_comments_field {
	margin-top: 30px;
}

/* Increase the height of the Order Notes / Quote Notes field */
.woocommerce-checkout #order_comments {
    height: 150px !important; /* Adjust this value (e.g., 150px, 200px, 300px) */
    min-height: 100px !important;
}


/* Clean, modern input styling to match the mockup */
.woocommerce-billing-fields__field-wrapper input.input-text,
.woocommerce-billing-fields__field-wrapper textarea,
#order_comments_field textarea {
	border: 1px solid #d8d8d3;
	border-radius: 5px;
	padding: 14px 16px;
	font-size: 15px
}

/* Remove borders from the Header and the entire Order Review block */
#order_review_heading, 
.woocommerce-checkout-review-order {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Ensure no borders are applied to the table inside the review block */
.woocommerce-checkout-review-order-table {
    border: 1px !important;
}

/* Ensure the checkout container has space at the bottom */
.ast-container .woocommerce {
    margin-bottom: 20px !important; /* Increase this number to make the gap larger */
    display: block !important;
}

/* Optional: If the footer is part of the same block, add padding to the bottom */
.site-content {
    padding-bottom: 20px !important;
}