@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

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

:root {
    --primary-green: #2E7D32;
    --secondary-green: #4CAF50;
    --light-green: #81C784;
    --dark-green: #1B5E20;
    --earth-brown: #4CAF50;
    --light-brown: #4CAF50;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Merriweather', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    color: var(--primary-green);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }


/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo h2 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
}

.tagline {
    font-size: 0.9rem;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* Hero Section */
.hero {
    background: linear-gradient(to right, #2c5e3f, #4CAF50);
    color: #fff;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-green);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-green);
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--secondary-green);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Products Section */
.featured-products {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjusted min-width for smaller screens */
    gap: 1rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Further adjustment for very small screens */
    }

    .product-image {
        height: auto; /* Let image dictate height */
    }
}

.product-image {
    height: auto; /* Let image dictate height */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Home Page Product Card Slider Styles */
.product-card .product-image-slider {
    position: relative;
    height: 280px; /* Increased from 200px */
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background-color: var(--bg-light);
}

.product-card .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-card .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.product-card .slide.active {
    opacity: 1;
}

.product-card .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .slide img {
    transform: scale(1.05);
}

.product-card .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.product-card:hover .slider-btn {
    opacity: 1;
}

.product-card .slider-btn:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.product-card .prev-btn {
    left: 10px;
}

.product-card .next-btn {
    right: 10px;
}

.product-card .slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.product-card .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.product-card .dot.active {
    background-color: var(--primary-green);
    border-color: white;
    transform: scale(1.2);
}

.product-card .dot:hover {
    background-color: var(--secondary-green);
    transform: scale(1.1);
}

/* Mobile responsive adjustments for home page sliders */
@media (max-width: 768px) {
    .product-card .product-image-slider {
        height: 220px; /* Increased from 150px */
    }
    
    .product-card .slider-btn {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .product-card .dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .product-card .product-image-slider {
        height: 180px; /* Increased from 120px */
    }
    
    .product-card .slider-btn {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .product-card .slider-dots {
        bottom: 8px;
    }
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--earth-brown);
    margin-bottom: 0.5rem;
}

.min-order {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-content .btn-small {
    margin-top: auto;
    align-self: flex-start;
}

.text-center {
    text-align: center;
}

/* CTA Section */
.cta {
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    border-radius: 20px;
    margin: 40px 20px;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(to right, #2c5e3f, #4CAF50);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* Products Page Styles */
.products-section {
    padding: 80px 0;
}

.category-title {
    color: var(--primary-green);
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--light-green);
    display: inline-block;
}

.products-grid {
    display: grid;
    gap: 3rem;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1fr; /* Stack vertically by default (mobile-first) */
    gap: 1.5rem; /* Reduced gap for mobile */
    background-color: var(--white);
    padding: 1.5rem; /* Reduced padding for mobile */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    align-items: center;
}

/* Product Image Slider Styles */
.product-image-slider {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--bg-light);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background-color: var(--primary-green);
    border-color: white;
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--secondary-green);
    transform: scale(1.1);
}

/* Mobile responsive adjustments for slider */
@media (max-width: 768px) {
    .product-image-slider {
        height: 250px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .product-image-slider {
        height: 200px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
}

.product-image-large {
    height: auto; /* Let image dictate height */
    overflow: hidden;
    border-radius: 10px;
}

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

@media (min-width: 768px) {
    .product-detail-card {
        grid-template-columns: 1fr 2fr; /* Side-by-side on larger screens */
        gap: 3rem;
        padding: 2.5rem;
    }

    .product-image-slider {
        height: 350px; /* Restore fixed height for larger screens */
    }
}

.product-info h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.product-details p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.pricing-table {
    margin: 2.5rem 0;
}

.pricing-table h4 {
    color: var(--earth-brown);
    margin-bottom: 1rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-table th {
    background-color: var(--light-green);
    color: var(--white);
    text-align: center;
}
.pricing-table td {
    text-align: center;
}

.seasonal-info {
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 15px;
}

.season-table table {
    width: 100%;
    margin-top: 1.5rem;
    border-collapse: collapse;
}

.season-table th,
.season-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.season-table th {
    background-color: var(--primary-green);
    color: var(--white);
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    color: var(--primary-green);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-section .section-subtitle {
    margin-bottom: 2rem;
}

.about-section > p {
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.facility-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-green);
}

.facility-card h3 {
    color: var(--earth-brown);
    margin-bottom: 1rem;
}

.quality-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 2rem auto;
}

.quality-list li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.1rem;
}

.quality-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.5rem;
    top: -5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background-color: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.benefit-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.designation {
    color: var(--earth-brown);
    font-weight: bold;
    margin-bottom: 1rem;
}

.certification-list {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    grid-template-columns: 1fr;
}

.cert-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cert-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-section h2, .contact-info-section h2 {
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.contact-form {
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 5px rgba(46, 125, 50, 0.3);
}

.contact-info-section .contact-card {
    margin-bottom: 2rem;
    padding-left: 2.5rem;
    position: relative;
}

.contact-card h3 {
    margin-bottom: 0.8rem;
    color: var(--earth-brown);
}

.contact-card::before {
    content: '📍';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.contact-card:nth-of-type(2)::before { content: '📞'; }
.contact-card:nth-of-type(3)::before { content: '📧'; }
.contact-card:nth-of-type(4)::before { content: '💬'; }
.contact-card:nth-of-type(5)::before { content: '🕒'; }
.contact-card:nth-of-type(6)::before { content: '🚗'; }


.whatsapp-link {
    color: var(--secondary-green);
    font-weight: 600;
    text-decoration: none;
}

.map-section {
    margin-top: 4rem;
    text-align: center;
}

.map-section h2 {
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-section {
    margin-top: 4rem;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        border-top: 1px solid #ddd;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 20px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #333;
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .container {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr; /* Display one product per row on mobile */
    }
}
