/**
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
*/

/* Body styles */
body.woocommerce-account {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333333;
}

/* Center the content */
.woocommerce-MyAccount-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Style the account navigation links */
.woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    margin-bottom: 15px;
    padding: 20px;
    color: #ffffff;
    text-decoration: none;
    background-color: #4CAF50; /* Green color */
    border-radius: 12px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.2); /* Light green shadow */
}

.woocommerce-MyAccount-navigation a:hover {
    background-color: #45a049; /* Darker green on hover */
}

/* Style the account content */
.woocommerce-MyAccount-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Style the order table */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-orders-table th, .woocommerce-orders-table td {
    padding: 20px;
    border: 1px solid #dddddd;
}

/* Style the logout link */
.woocommerce-MyAccount-logout a {
    color: #ff5a5f;
    font-weight: bold;
    text-decoration: none;
}

.woocommerce-MyAccount-logout a:hover {
    text-decoration: underline;
}

/* Add a border between navigation links and content */
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
    border-top: 1px solid #dddddd;
    padding-top: 30px;
}






/* Cart page container */
.woocommerce-cart {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Cart title */
.woocommerce-cart h2 {
    color: #333333;
    font-size: 32px;
    margin-bottom: 20px;
}

/* Cart table */
.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

/* Cart table header */
.woocommerce-cart table.shop_table th {
    background-color: #4CAF50; /* Green color for header */
    color: #ffffff;
    padding: 20px;
    text-align: left;
    border-radius: 8px 0 0 0;
}

/* Cart table item rows */
.woocommerce-cart table.shop_table td {
    padding: 20px;
    border: 1px solid #dddddd;
}

/* Cart total row */
.woocommerce-cart table.shop_table tr.cart-subtotal {
    background-color: #f4f4f4;
    border-top: 2px solid #4CAF50; /* Green color for subtotal row */
}

/* Cart total and proceed to checkout button */
.woocommerce-cart .cart-collaterals {
    margin-top: 40px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 30px;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
    color: #333333;
    font-size: 28px;
    margin-bottom: 20px;
}

.woocommerce-cart .cart-collaterals .cart_totals .button {
    background-color: #4CAF50; /* Green color for checkout button */
    color: #ffffff;
    padding: 20px 40px;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    transition: background-color 0.3s;
}

.woocommerce-cart .cart-collaterals .cart_totals .button:hover {
    background-color: #45a049; /* Darker green on hover */
    cursor: pointer;
}




/* Checkout page container */
/* Checkout page container */
.woocommerce-checkout {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Checkout title */
.woocommerce-checkout h2 {
    color: #333333;
    font-size: 32px;
    margin-bottom: 20px;
}

/* Checkout form */
.woocommerce-checkout form {
    width: 100%;
}

/* Checkout form billing and shipping sections */
.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    width: 48%;
    float: left;
    margin-bottom: 20px;
}

/* Checkout form input styles */
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.woocommerce-checkout input[type="text"]:focus,
.woocommerce-checkout input[type="email"]:focus,
.woocommerce-checkout input[type="tel"]:focus,
.woocommerce-checkout input[type="password"]:focus,
.woocommerce-checkout select:focus {
    border-color: #4CAF50; /* Green color on focus */
}

/* Additional styles for checkboxes and radio buttons */
.woocommerce-checkout input[type="checkbox"],
.woocommerce-checkout input[type="radio"] {
    margin-top: 10px;
}

/* Additional styles for order notes textarea */
.woocommerce-checkout textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.woocommerce-checkout textarea:focus {
    border-color: #4CAF50; /* Green color on focus */
}

/* Checkout form place order button */
.woocommerce-checkout #place_order {
    background-color: #4CAF50; /* Green color for place order button */
    color: #ffffff;
    padding: 20px 40px;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.woocommerce-checkout #place_order:hover {
    background-color: #45a049; /* Darker green on hover */
}





/* Product column container */
.product-column-4 {
    display: flex;
    flex-wrap: wrap;
    margin: -10px; /* Adjust negative margin for spacing */
}

/* Individual product item */
.product-column-4 .product {
    width: calc(25% - 20px); /* Adjust the width based on your layout */
    margin: 10px; /* Adjust the margin for spacing */
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
}

.product-column-4 .product:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

/* Product image */
.product-column-4 .product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Product title */
.product-column-4 .product h2 {
    font-size: 16px;
    margin-top: 8px;
    color: #333333;
}

/* Product price */
.product-column-4 .product .price {
    font-size: 14px;
    color: #4CAF50; /* Green color for price */
    margin-top: 8px;
}

/* Add to cart button */
.product-column-4 .product .add_to_cart_button {
    background-color: #4CAF50; /* Green color for button */
    color: #ffffff;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-column-4 .product .add_to_cart_button:hover {
    background-color: #45a049; /* Darker green on hover */
}

