/*
Theme Name: Easy Ware
Theme URI: https://example.com/easy-ware
Author: Easy Ware
Author URI: https://example.com
Description: A minimal WooCommerce-ready starter theme for the Easy Ware ecommerce project, built on Bedrock.
Version: 0.1.0
Requires at least: 6.5
Tested up to: 6.9
Requires PHP: 8.2
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: easy-ware
Tags: ecommerce, woocommerce, custom-menu, translation-ready
*/

:root {
    --ew-color-text: #111;
    --ew-color-bg: #fff;
    --ew-color-accent: #c8553d;
    --ew-color-muted: #666;
    --ew-max-width: 1100px;
    --ew-font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--ew-color-bg);
    color: var(--ew-color-text);
    font-family: var(--ew-font-stack);
    font-size: 16px;
    line-height: 1.6;
}

a { color: var(--ew-color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

.ew-container {
    max-width: var(--ew-max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.ew-site-header {
    border-bottom: 1px solid #eee;
    padding: 1.25rem 0;
}

.ew-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ew-site-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.ew-site-title a { color: inherit; }

.ew-primary-nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ew-site-main {
    padding: 2rem 0;
    min-height: 60vh;
}

.ew-site-footer {
    border-top: 1px solid #eee;
    padding: 1.5rem 0;
    color: var(--ew-color-muted);
    font-size: 0.9rem;
}
