/*
Theme Name: MrAgri Theme
Theme URI: https://mragri.lk/theme
Author: MR.AGRI Web Engineering Team
Author URI: https://mragri.lk
Description: A premium, highly customizable, WooCommerce-ready WordPress theme designed for urban farming, home gardening solutions, smart agriculture, and eco-friendly products. Fully responsive with Customizer controls, custom page templates, and rich aesthetic components.
Version: 1.0.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mragri
Tags: e-commerce, custom-logo, custom-menu, custom-colors, custom-header, theme-options, full-width-template, right-sidebar, grid-layout, two-columns, block-patterns, sticky-post, translation-ready

MrAgri Theme WordPress Stylesheet
All custom styling is loaded via assets/css/theme.css and assets/css/woocommerce-custom.css
*/

:root {
    --color-primary-dark: #0A2E17;
    --color-primary: #165B33;
    --color-primary-emerald: #1B8A4C;
    --color-primary-light: #25B865;
    --color-accent-gold: #FFB800;
    --color-bg-light: #F7F8F3;
    --color-bg-alt: #F4F7EF;
    --color-card-bg: #FFFFFF;
    --color-text-main: #1E293B;
    --color-text-muted: #64748B;
    --color-border: #E2E8F0;
    --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(22, 91, 51, 0.08);
    --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset Defaults */
html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: #FAFAFA;
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

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