/*
Theme Name: Shawon Web Starter
Theme URI: https://www.shawonweb.com
Author: Md. Niyaz Rahman Shawon
Description: AI-Ready Framework. Compatible with WooCommerce.
Version: 1.1.0
Text Domain: shawon-web
*/

/* --- GLOBAL VARIABLES (AI USES THESE) --- */
:root {
    --primary: #0073aa;      /* Main Brand Color */
    --secondary: #2c3e50;    /* Text Color */
    --accent: #e74c3c;       /* Buttons/Highlights */
    --bg-light: #f4f4f4;     /* Backgrounds */
    --container: 1200px;     /* Max Width */
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- BASE STYLES --- */
* { box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--secondary); margin: 0; line-height: 1.6; }
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* --- WOOCOMMERCE BASIC FIXES --- */
/* Ensures WooCommerce buttons match your theme */
.woocommerce button.button.alt {
    background-color: var(--primary) !important;
}
.woocommerce ul.products li.product h2 {
    font-size: 1.1rem;
}