/*
Theme Name: Nate's Baked - Elementor
Theme URI: https://www.natesbaked.shop
Author: Your Name
Author URI: https://www.natesbaked.shop
Description: A lightweight starter theme for Nate's Baked, designed to be used with Elementor for a clean, elegant storefront inspired by Tea Flow.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, elementor, responsive-layout, boutique, food
Text Domain: natesbaked
*/

/* --- Google Fonts (Matches Tea Flow aesthetic) --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap');

/* --- CSS Variables for Easy Customization --- */
:root {
    --color-background: #FFFFFF;
    --color-text: #333333;
    --color-primary: #A88B79; /* A sophisticated, muted brown/tan */
    --color-primary-dark: #8A6F5E;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* --- Basic Body & Typography --- */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Base WooCommerce Product Styling --- */
/* This provides a clean default look for product grids that you can enhance in Elementor */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.woocommerce ul.products li.product .price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.woocommerce ul.products li.product .button {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid #e1e1e1;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

