/* General Styles - Agriculture Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2e7d32; /* Deep Agriculture Green */
    --secondary-color: #1b5e20;
    --accent-color: #fbc02d; /* Sun Yellow */
    --text-color: #333;
    --light-bg: #f1f8e9;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--white);
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background: var(--white);
    border-bottom: 4px solid var(--primary-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.btn-get-in-touch {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-get-in-touch:hover {
    background: var(--secondary-color);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--light-bg);
    padding: 12px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Layout */
.product-layout {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.main-content {
    flex: 0 0 70%;
}

.sidebar {
    flex: 0 0 30%;
}

/* Product Content */
h1 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-image {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-info h2 {
    color: var(--primary-color);
    margin: 25px 0 15px;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.benefit-list li::before {
    content: '🌱';
    position: absolute;
    left: 0;
}

/* Sidebar */
.sidebar-widget {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.category-nav {
    list-style: none;
}

.category-nav li {
    margin-bottom: 8px;
}

.category-nav li a {
    text-decoration: none;
    color: var(--text-color);
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    background: #fff;
    transition: 0.3s;
    border: 1px solid transparent;
}

.category-nav li a:hover, .category-nav li a.active {
    background: var(--primary-color);
    color: #fff;
}

/* CTA */
.cta-box {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
footer {
    background: #1b2631;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 25px;
}

.footer-col p, .footer-col ul li {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 12px;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    transition: 0.3s;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .product-layout {
        flex-direction: column;
    }
    .main-content, .sidebar {
        flex: 0 0 100%;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
