/*
Theme Name: Asi Agro
Theme URI: https://asiagro.com/
Author: Development Team
Description: A premium Bengali eCommerce WordPress Theme featuring Egg Incubators, agricultural machineries, and WooCommerce support built for Asi Agro and Consultancy.
Version: 1.0.0
Text Domain: asi-agro
License: GPLv2 or later
Tags: e-commerce, green, incubator, poultry, agricultural-machinery, translation-ready, woocommerce
*/

/* --- Base Styles --- */
:root {
    --primary-color: #2e7d32; /* Green */
    --secondary-color: #8d6e63; /* Earthy Brown */
    --accent-color: #ffb300; /* Warm Accent */
    --text-color: #333333;
    --bg-color: #f9fbf9;
    --white: #ffffff;
    --font-heading: 'Noto Sans Bengali', sans-serif;
    --font-body: 'Hind Siliguri', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

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

a:hover {
    color: var(--secondary-color);
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Header --- */
.site-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding a {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    font-weight: 600;
    color: var(--text-color);
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-icons .cart-icon {
    position: relative;
    color: var(--text-color);
}

.header-icons .cart-count {
    background: var(--accent-color);
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: -10px;
}

/* --- Hero Section & Homepage --- */
.hero-section {
    background: linear-gradient(rgba(46, 125, 50, 0.8), rgba(46, 125, 50, 0.8)), url('assets/images/hero-bg.jpg') center/cover;
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.hero-section h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    margin-top: 20px;
}

.hero-btn:hover {
    background: #ffa000;
    color: var(--white);
}

.section-title {
    text-align: center;
    margin: 50px 0 30px;
    font-size: 32px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- WooCommerce Tweaks --- */
.woocommerce ul.products li.product {
    background: var(--white);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    text-align: center;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.woocommerce ul.products li.product h2 {
    font-size: 18px;
    color: var(--text-color);
}

.woocommerce ul.products li.product .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

.woocommerce ul.products li.product .button {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    width: 100%;
}

.woocommerce ul.products li.product .button:hover {
    background: #1b5e20 !important;
}

/* --- Footer --- */
.site-footer {
    background: var(--text-color);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget a {
    color: #cccccc;
}

.footer-widget a:hover {
    color: var(--accent-color);
}

.site-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #999;
}
