/*
Theme Name: ECom Starter
Theme URI: https://example.com/ecom-starter
Author: Custom Developer
Description: Minimal, high-performance starter theme with built-in WooCommerce and Elementor location support.
Version: 1.0.0
Text Domain: ecom-starter
*/

/* Basic Reset & Layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    color: #2271b1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-container {
    width: 100%;
    margin: 0 auto;
}

/* Header Styles */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.site-title a {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.header-cart-link {
    font-weight: 600;
    background: #0073aa;
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Footer Styles */
.site-footer {
    padding: 20px 30px;
    text-align: center;
    background: #f9f9f9;
    border-top: 1px solid #eeeeee;
    margin-top: 40px;
}

/* WooCommerce Compatibility Tweaks */
.woocommerce .woocommerce-ordering select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.woocommerce ul.products li.product .button {
    margin-top: 10px;
}

.woocommerce-main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}