/*
Theme Name: Westone Electric Theme
Theme URI: http://www.westoneelectric.com
Author: Manus AI
Author URI: https://example.com/
Description: A custom WordPress theme designed for Westone Electric, compatible with WooCommerce and Elementor. Inspired by professional e-commerce layouts and featuring a green leaf color scheme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: woocommerce, elementor, e-commerce, custom-header, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready, blog, shop, responsive-layout
Text Domain: westone-electric
*/

/* Basic Reset & Body Styles */
body {
    font-family: 'Roboto', sans-serif; /* Example font, ensure Google Fonts are enqueued if used */
    color: #333333;
    background-color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    box-sizing: border-box;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Links */
a {
    color: #6B8E23; /* Leaf Green Accent */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: #556B2F; /* Darker Green */
    text-decoration: underline;
}

/* Buttons */
button, input[type="button"], input[type="reset"], input[type="submit"],
.button, .wp-block-button__link {
    background-color: #6B8E23; /* Leaf Green */
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover,
.button:hover, .wp-block-button__link:hover,
button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus,
.button:focus, .wp-block-button__link:focus {
    background-color: #556B2F; /* Darker Green */
    color: #FFFFFF;
}

/* Basic Header Styles (Elementor Header will override) */
.site-header {
    background-color: #F4F4F4; /* Light Gray */
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

/* Basic Footer Styles (Elementor Footer will override) */
.site-footer {
    background-color: #333333; /* Dark Gray/Black */
    color: #FFFFFF;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.site-footer a {
    color: #8FBC8F; /* Lighter Green for Footer Links */
}

.site-footer a:hover, .site-footer a:focus {
    color: #FFFFFF;
}

/* WooCommerce Basic Styles (Further customization via Elementor/Theme Options) */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1em;
    color: #333333;
}

.woocommerce ul.products li.product .price {
    color: #6B8E23; /* Leaf Green */
    font-weight: bold;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    border-color: #6B8E23;
    color: #6B8E23;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus {
    background: #6B8E23;
    color: #FFFFFF;
    border-color: #6B8E23;
}

/* Elementor Compatibility */
/* Add specific styles if needed to ensure Elementor works smoothly */

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    /* Add more mobile-specific styles */
}

