﻿:root {
    --primary-green: #2E7D32;
    --dark-green: #1B5E20;
    --light-green: #4CAF50;
    --mint: #A5D6A7;
    --cream: #F1F8F4;
    --lime: #8BC34A;
    --olive: #689F38;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #666666;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: "Poppins", sans-serif; line-height: 1.6; color: var(--black); background: var(--cream); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.navbar { padding: 0 20px; }
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo a { display: flex; align-items: center; }
 .logo img { width: 187px; height: auto; transition: transform 0.3s ease; }
 .footer-section img { width: 187px; height: auto; }
.logo img:hover { transform: scale(1.05); }
.mobile-menu-toggle { display: none; flex-direction: column; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-toggle span { width: 25px; height: 3px; background: var(--primary-green); margin: 3px 0; transition: 0.3s; border-radius: 3px; }
.nav-menu { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-link { font-weight: 500; color: var(--black); padding: 8px 16px; border-radius: 25px; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; }
.nav-link i { font-size: 14px; }
.nav-link:hover, .nav-link.active { background: linear-gradient(135deg, var(--primary-green), var(--light-green)); color: var(--white); transform: translateY(-2px); }
.page-hero { position: relative; height: 50vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%); margin-top: 80px; overflow: hidden; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle at 20% 50%, rgba(139, 195, 74, 0.2) 0%, transparent 50%); }
.hero-content { text-align: center; color: var(--white); z-index: 1; padding: 0 20px; }
.hero-content h1 { font-family: "Playfair Display", serif; font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; margin-bottom: 15px; }
.gradient-text { background: linear-gradient(135deg, var(--white), var(--mint)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content p { font-size: 1.3rem; margin-bottom: 20px; opacity: 0.95; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1rem; opacity: 0.9; }
.breadcrumb a { color: var(--white); transition: opacity 0.3s ease; }
.breadcrumb a:hover { opacity: 0.7; }
.filters { padding: 40px 20px; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.filter-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.filter-btn { padding: 12px 25px; border: 2px solid var(--primary-green); background: var(--white); color: var(--primary-green); border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; }
.filter-btn:hover, .filter-btn.active { background: linear-gradient(135deg, var(--primary-green), var(--light-green)); color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3); }
.products-section { padding: 80px 20px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; margin: 0 auto; }
.product-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.product-image { position: relative; height: 250px; background: var(--cream); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.3s ease; }
.product-card:hover .product-image img { transform: scale(1.1); }
.product-badge { position: absolute; top: 15px; right: 15px; background: var(--lime); color: var(--white); padding: 6px 15px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.product-badge.premium { background: linear-gradient(135deg, var(--primary-green), var(--dark-green)); }
.product-badge.best-seller { background: var(--olive); }
.product-info { padding: 25px; }
.product-info h3 { font-size: 1.3rem; color: var(--primary-green); margin-bottom: 10px; }
.product-info p { color: var(--gray); margin-bottom: 20px; line-height: 1.6; }
.product-btn { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--primary-green), var(--light-green)); color: var(--white); padding: 10px 20px; border-radius: 25px; font-weight: 600; transition: all 0.3s ease; }
.product-btn:hover { transform: translateX(5px); box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3); }
.footer { background: var(--dark-green); color: var(--white); padding: 60px 20px 20px; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-section h4 { margin-bottom: 20px; font-size: 1.3rem; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 10px; }
.footer-section a:hover { color: var(--lime); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-green), var(--light-green)); color: var(--white); border: none; border-radius: 50%; cursor: pointer; opacity: 0; pointer-events: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 999; }
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-5px); }
@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .nav-menu { position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; gap: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .nav-menu.active { max-height: 500px; }
    .nav-link { width: 100%; justify-content: center; padding: 12px; }
    .page-hero { height: 40vh; margin-top: 70px; }
    .hero-content h1 { font-size: 2rem; }
    .filter-buttons { gap: 10px; }
    .filter-btn { padding: 10px 20px; font-size: 14px; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

