/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header-top {
    background-color: #2d5a3d;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

.header-main {
    background-color: #4a7c59;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.search-bar {
    display: flex;
    flex: 1;
    max-width: 400px;
    margin: 0 40px;
}

.search-bar input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 25px 0 0 25px;
    font-size: 16px;
    outline: none;
}

.search-bar button {
    padding: 12px 20px;
    background-color: #f4a261;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #e76f51;
}

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

.header-actions a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 20px;
    transition: background-color 0.3s;
    font-size: 14px;
}

.header-actions a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cart {
    background-color: #f4a261;
    color: #333 !important;
    font-weight: 500;
}

.navigation {
    background-color: #5d8a6b;
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    overflow-x: auto;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s;
    font-weight: 400;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 60px 0;
    position: relative;
}

.hero-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.slide-text h1 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 30px;
    font-weight: 700;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4a261;
    min-width: 60px;
}

.description {
    color: #555;
    font-weight: 400;
}

.highlight {
    background-color: #f4a261;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 500;
}

.coverage {
    font-size: 1.2rem;
    color: #2d5a3d;
    font-weight: 600;
}

.slide-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-controls button {
    background-color: #4a7c59;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-controls button:hover {
    background-color: #2d5a3d;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #4a7c59;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #f8fdf8;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #2d5a3d;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Category Cards */
.category-cards {
    padding: 80px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.4rem;
    color: #2d5a3d;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-primary {
    background-color: #f4a261;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e76f51;
}

.btn-secondary {
    background-color: #4a7c59;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: #f8fdf8;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
    color: #2d5a3d;
    font-weight: 500;
    line-height: 1.4;
}

.price {
    padding: 0 20px 15px;
    font-size: 1.2rem;
    color: #f4a261;
    font-weight: 600;
}

.add-to-cart {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background-color: #4a7c59;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #2d5a3d;
}

/* Category Showcase */
.category-showcase {
    padding: 80px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.showcase-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.showcase-card .card-image {
    height: 250px;
    overflow: hidden;
}

.showcase-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.showcase-card:hover .card-image img {
    transform: scale(1.05);
}

/* Eco-Friendly Section */
.eco-friendly {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a7c59 0%, #2d5a3d 100%);
    color: white;
}

.eco-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eco-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.eco-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.eco-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: #f4a261;
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.newsletter-text p {
    line-height: 1.7;
    opacity: 0.9;
}

.newsletter-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.newsletter-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.newsletter-form a {
    color: white;
    text-decoration: underline;
}

/* Contact CTA */
.contact-cta {
    padding: 60px 0;
    background-color: #4a7c59;
    text-align: center;
    color: white;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2d5a3d;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.footer-logo h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: background-color 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-main .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-bar {
        margin: 0;
        max-width: 100%;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .slide-text h1 {
        font-size: 2rem;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .products-slider {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .eco-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

