/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fdf9; /* Very light green hint */
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e7d32; /* Organic Green */
}

.logo .highlight {
    color: #333;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #2e7d32;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icons i {
    font-size: 1.2rem;
    cursor: pointer;
    color: #555;
}

.badge {
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    vertical-align: top;
    margin-left: -5px;
}

.menu-icon {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1b5e20;
}

/* Features */
.features {
    padding: 60px 0;
    background: #fff;
}

.features .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.feature-box i {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

/* Products */
.products {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #2e7d32;
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 3px;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.price {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 10px 0;
}

.btn-add {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-add:hover {
    background: #555;
}

/* Newsletter */
.newsletter {
    background: #e8f5e9; /* Light green */
    padding: 60px 0;
    text-align: center;
}

.newsletter input {
    padding: 12px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 30px 0 0 30px;
    outline: none;
}

.newsletter button {
    border-radius: 0 30px 30px 0;
    border: none;
    cursor: pointer;
    padding: 13px 30px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.socials a {
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav ul.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .newsletter input {
        width: 60%;
        margin-bottom: 10px;
        border-radius: 5px;
    }
    
    .newsletter button {
        border-radius: 5px;
        width: auto;
    }
}