 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            width: 100%;
            background: #ffffff;
        }

        html, body {
            height: 100%;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            z-index: 1000;
            padding: 20px 0;
            box-shadow: 0 2px 20px rgba(124, 185, 56, 0.1);
            transition: all 0.3s ease;
        }

        .nav-content {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, #7CB938 0%, #4A9D2F 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo::before {
            content: "🌱";
            font-size: 32px;
            -webkit-text-fill-color: initial;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #2D5016;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #7CB938;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #7CB938, #A8D867);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .auth-button {
            padding: 12px 28px;
            border-radius: 24px;
            border: none;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(124, 185, 56, 0.3);
        }

        .auth-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(124, 185, 56, 0.4);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: #7CB938;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            width: 100%;
            min-height: 100%;
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-slideshow {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(240, 249, 232, 0.85) 0%, rgba(232, 245, 217, 0.85) 50%, rgba(213, 239, 193, 0.85) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(168, 216, 103, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(124, 185, 56, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out reverse;
            z-index: 1;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 68px;
            font-weight: 800;
            color: #2D5016;
            line-height: 1.2;
            margin-bottom: 24px;
            animation: fadeInUp 1s ease;
        }

        .typewriter-text {
            display: inline-block;
            border-right: 4px solid #7CB938;
            padding-right: 8px;
            animation: blink 0.8s step-end infinite;
        }

        @keyframes blink {
            0%, 50% { border-color: #7CB938; }
            51%, 100% { border-color: transparent; }
        }

        .hero-subtitle {
            font-size: 22px;
            color: #4A7528;
            margin-bottom: 40px;
            line-height: 1.6;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn-primary, .btn-secondary {
            padding: 18px 40px;
            border-radius: 28px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(124, 185, 56, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(124, 185, 56, 0.45);
        }

        .btn-secondary {
            background: white;
            color: #7CB938;
            border: 2px solid #7CB938;
            box-shadow: 0 4px 15px rgba(124, 185, 56, 0.15);
        }

        .btn-secondary:hover {
            background: #7CB938;
            color: white;
            transform: translateY(-3px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Marquee Section */
        .marquee-container {
            width: 100%;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            padding: 20px 0;
            overflow: hidden;
            position: relative;
        }

        .marquee {
            display: flex;
            white-space: nowrap;
            animation: scroll 30s linear infinite;
        }

        .marquee-content {
            display: flex;
            gap: 60px;
            padding-right: 60px;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            font-weight: 600;
            color: white;
        }

        .marquee-icon {
            font-size: 28px;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* About Section */
        .about {
            width: 100%;
            padding: 100px 0;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: #2D5016;
            margin-bottom: 24px;
        }

        .about-text p {
            font-size: 18px;
            line-height: 1.8;
            color: #4A7528;
            margin-bottom: 32px;
        }

        .value-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .value-card {
            background: linear-gradient(135deg, #F0F9E8 0%, #E8F5D9 100%);
            padding: 24px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .value-card:hover {
            transform: translateY(-5px);
            border-color: #7CB938;
            box-shadow: 0 10px 30px rgba(124, 185, 56, 0.2);
        }

        .value-card .icon {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .value-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            color: #2D5016;
            font-weight: 600;
        }

        .about-image {
            position: relative;
        }

        .about-image-wrapper {
            background: linear-gradient(135deg, #A8D867 0%, #7CB938 100%);
            border-radius: 28px;
            padding: 20px;
            box-shadow: 0 15px 50px rgba(124, 185, 56, 0.25);
            transform: rotate(-3deg);
            transition: all 0.3s ease;
        }

        .about-image-wrapper:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .about-image-inner {
            background: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            font-size: 80px;
        }

        /* Products Section */
        .products {
            width: 100%;
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #F9FCF7 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: #2D5016;
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 18px;
            color: #4A7528;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(124, 185, 56, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-8px) rotate(1deg);
            box-shadow: 0 15px 40px rgba(124, 185, 56, 0.25);
        }

        .product-image {
            height: 250px;
            background: linear-gradient(135deg, #E8F5D9 0%, #D5EFC1 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            position: relative;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
        }

        .product-info {
            padding: 24px;
        }

        .product-category {
            display: inline-block;
            padding: 6px 16px;
            background: linear-gradient(135deg, #F0F9E8 0%, #E8F5D9 100%);
            color: #5FA82F;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .product-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            color: #2D5016;
            margin-bottom: 8px;
        }

        .product-price {
            font-size: 24px;
            font-weight: 700;
            color: #7CB938;
        }

        /* Recipes Section */
        .recipes {
            width: 100%;
            padding: 100px 0;
            background: white;
        }

        .recipes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .recipe-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(124, 185, 56, 0.12);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .recipe-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 45px rgba(124, 185, 56, 0.3);
        }

        .recipe-image {
            height: 280px;
            background: linear-gradient(135deg, #D5EFC1 0%, #C5E5B3 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            position: relative;
        }

        .recipe-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .recipe-card:hover .recipe-overlay {
            opacity: 1;
        }

        .recipe-time {
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 16px;
            border-radius: 16px;
            font-size: 14px;
            font-weight: 600;
            color: #5FA82F;
        }

        .recipe-info {
            padding: 24px;
        }

        .recipe-category {
            display: inline-block;
            padding: 6px 14px;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            color: white;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .recipe-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            color: #2D5016;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .recipe-rating {
            display: flex;
            gap: 4px;
            font-size: 18px;
        }

        /* Benefits Section */
        .benefits {
            width: 100%;
            padding: 100px 0;
            background: linear-gradient(135deg, #E8F5D9 0%, #D5EFC1 50%, #C5E5B3 100%);
            position: relative;
            overflow: hidden;
        }

        .benefits::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            border-radius: 50%;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 24px;
            text-align: center;
            border: 2px solid rgba(124, 185, 56, 0.2);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            background: rgba(255, 255, 255, 0.95);
            border-color: #7CB938;
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(124, 185, 56, 0.25);
        }

        .benefit-icon {
            font-size: 64px;
            margin-bottom: 20px;
            filter: drop-shadow(0 4px 10px rgba(124, 185, 56, 0.2));
        }

        .benefit-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            color: #2D5016;
            margin-bottom: 12px;
        }

        .benefit-card p {
            color: #4A7528;
            line-height: 1.6;
            font-size: 16px;
        }

        /* Blog Section */
        .blog {
            width: 100%;
            padding: 100px 0;
            background: white;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }

        .blog-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(124, 185, 56, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(124, 185, 56, 0.2);
        }

        .blog-image {
            height: 220px;
            background: linear-gradient(135deg, #F0F9E8 0%, #E8F5D9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            position: relative;
            overflow: hidden;
        }

        .blog-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .blog-card:hover .blog-image::after {
            opacity: 0.3;
        }

        .blog-content {
            padding: 28px;
        }

        .blog-date {
            font-size: 14px;
            color: #7CB938;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .blog-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            color: #2D5016;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-card p {
            color: #4A7528;
            line-height: 1.6;
            font-size: 15px;
        }

        /* Testimonials Section */
        .testimonials {
            width: 100%;
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #F9FCF7 100%);
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            padding: 40px 32px;
            border-radius: 28px;
            box-shadow: 0 4px 25px rgba(124, 185, 56, 0.12);
            border: 2px solid #E8F5D9;
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            font-family: 'Georgia', serif;
            color: #E8F5D9;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(124, 185, 56, 0.2);
            border-color: #7CB938;
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            color: #4A7528;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 15px rgba(124, 185, 56, 0.3);
        }

        .author-info h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            color: #2D5016;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .author-info p {
            font-size: 14px;
            color: #7CB938;
        }

        /* CTA Section */
        .cta {
            width: 100%;
            padding: 120px 0;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '🌿';
            position: absolute;
            font-size: 300px;
            opacity: 0.1;
            top: -50px;
            right: -50px;
            animation: float 15s infinite ease-in-out;
        }

        .cta::after {
            content: '🥗';
            position: absolute;
            font-size: 250px;
            opacity: 0.1;
            bottom: -60px;
            left: -40px;
            animation: float 18s infinite ease-in-out reverse;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 52px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .cta p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
        }

        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .cta-input {
            flex: 1;
            min-width: 280px;
            padding: 18px 28px;
            border-radius: 28px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.95);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .cta-input:focus {
            outline: none;
            border-color: white;
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .cta-button {
            padding: 18px 40px;
            border-radius: 28px;
            border: 2px solid white;
            background: white;
            color: #5FA82F;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: transparent;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        /* Footer */
        .footer {
            width: 100%;
            background: linear-gradient(135deg, #2D5016 0%, #1F3A0F 100%);
            padding: 80px 0 30px;
            color: white;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            margin-bottom: 20px;
            color: #A8D867;
        }

        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: #A8D867;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-logo::before {
            content: "🌱";
            font-size: 36px;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            margin-bottom: 24px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #A8D867;
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 16px;
            margin-top: 20px;
        }

        .social-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            background: #A8D867;
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(168, 216, 103, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        /* Login Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(45, 80, 22, 0.8);
            backdrop-filter: blur(8px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .login-modal {
            background: white;
            padding: 50px 45px;
            border-radius: 28px;
            width: 90%;
            max-width: 450px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
            position: relative;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #4A7528;
            transition: all 0.3s ease;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .modal-close:hover {
            background: #F0F9E8;
            transform: rotate(90deg);
        }

        .login-modal h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 32px;
            color: #2D5016;
            text-align: center;
            margin-bottom: 12px;
        }

        .login-modal p {
            text-align: center;
            color: #4A7528;
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            color: #2D5016;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 15px;
        }

        .form-group input {
            width: 100%;
            padding: 14px 20px;
            border: 2px solid #E8F5D9;
            border-radius: 20px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #F9FCF7;
        }

        .form-group input:focus {
            outline: none;
            border-color: #7CB938;
            background: white;
            box-shadow: 0 0 0 4px rgba(124, 185, 56, 0.1);
        }

        .login-button {
            width: 100%;
            padding: 16px;
            border-radius: 24px;
            border: none;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            color: white;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(124, 185, 56, 0.3);
            margin-top: 8px;
        }

        .login-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 185, 56, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 48px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-image-wrapper {
                order: -1;
            }

            .value-cards {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 38px;
            }

            .cta h2 {
                font-size: 38px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
            }

            .products-grid, .recipes-grid, .blog-grid {
                grid-template-columns: 1fr;
            }

            .cta-form {
                flex-direction: column;
            }

            .cta-input {
                min-width: 100%;
            }

            .login-modal {
                padding: 40px 30px;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 8px 30px rgba(124, 185, 56, 0.2);
            z-index: 999;
            padding: 20px 24px;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 16px 0;
            color: #2D5016;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            border-bottom: 1px solid #F0F9E8;
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
            color: #7CB938;
            padding-left: 10px;
        }

        .mobile-menu .auth-button {
            width: 100%;
            margin-top: 16px;
            display: block;
            text-align: center;
        }

        /* Success Message */
        .success-message {
            display: none;
            position: fixed;
            top: 100px;
            right: 24px;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            color: white;
            padding: 16px 28px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(124, 185, 56, 0.4);
            z-index: 3000;
            animation: slideInRight 0.4s ease;
            font-weight: 600;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .success-message.show {
            display: block;
        }

        /* User Info Display */
        .user-info {
            display: none;
            align-items: center;
            gap: 12px;
        }

        .user-info.active {
            display: flex;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .user-name {
            font-weight: 600;
            color: #2D5016;
        }

        /* Cart Styles */
        .cart-icon {
            position: relative;
            cursor: pointer;
            font-size: 28px;
            transition: transform 0.3s ease;
        }

        .cart-icon:hover {
            transform: scale(1.1);
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
            color: white;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
        }

        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100%;
            background: white;
            box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
            z-index: 2500;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(45, 80, 22, 0.6);
            backdrop-filter: blur(4px);
            z-index: 2400;
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .cart-overlay.active {
            display: block;
        }

        .cart-header {
            padding: 24px;
            border-bottom: 2px solid #E8F5D9;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            color: #2D5016;
            margin: 0;
        }

        .cart-close {
            background: none;
            border: none;
            font-size: 32px;
            cursor: pointer;
            color: #4A7528;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .cart-close:hover {
            background: #F0F9E8;
            transform: rotate(90deg);
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-item {
            display: flex;
            gap: 16px;
            padding: 16px;
            background: #F9FCF7;
            border-radius: 16px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .cart-item:hover {
            background: #F0F9E8;
            transform: translateX(-4px);
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            object-fit: cover;
            background: linear-gradient(135deg, #E8F5D9 0%, #D5EFC1 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #2D5016;
            margin-bottom: 8px;
        }

        .cart-item-price {
            font-size: 18px;
            font-weight: 700;
            color: #7CB938;
            margin-bottom: 8px;
        }

        .cart-item-controls {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .quantity-btn {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            border: 2px solid #7CB938;
            background: white;
            color: #7CB938;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quantity-btn:hover {
            background: #7CB938;
            color: white;
        }

        .quantity-display {
            font-weight: 600;
            color: #2D5016;
            min-width: 30px;
            text-align: center;
        }

        .remove-btn {
            margin-left: auto;
            background: none;
            border: none;
            color: #ff4757;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 4px;
        }

        .remove-btn:hover {
            transform: scale(1.2);
        }

        .cart-empty {
            text-align: center;
            padding: 60px 20px;
            color: #4A7528;
        }

        .cart-empty-icon {
            font-size: 80px;
            margin-bottom: 16px;
        }

        .cart-footer {
            padding: 24px;
            border-top: 2px solid #E8F5D9;
            background: #F9FCF7;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .cart-total-label {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: #2D5016;
        }

        .cart-total-amount {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: #7CB938;
        }

        .checkout-btn {
            width: 100%;
            padding: 18px;
            border-radius: 24px;
            border: none;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            color: white;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(124, 185, 56, 0.3);
        }

        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 185, 56, 0.4);
        }

        /* Add to Cart Button */
        .add-to-cart-btn {
            width: 100%;
            padding: 12px 24px;
            border-radius: 20px;
            border: none;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 12px;
            font-size: 15px;
        }

        .add-to-cart-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(124, 185, 56, 0.4);
        }

        /* Info Modal */
        .info-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(45, 80, 22, 0.85);
            backdrop-filter: blur(8px);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
            padding: 20px;
        }

        .info-modal.active {
            display: flex;
        }

        .info-modal-content {
            background: white;
            padding: 50px 45px;
            border-radius: 28px;
            width: 90%;
            max-width: 650px;
            max-height: 85%;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
            position: relative;
        }

        .info-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 32px;
            cursor: pointer;
            color: #4A7528;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .info-modal-close:hover {
            background: #F0F9E8;
            transform: rotate(90deg);
        }

        .info-modal h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 32px;
            color: #2D5016;
            margin-bottom: 20px;
        }

        .info-modal h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            color: #2D5016;
            margin-top: 28px;
            margin-bottom: 12px;
        }

        .info-modal p {
            color: #4A7528;
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 16px;
        }

        .info-modal ul {
            color: #4A7528;
            line-height: 1.8;
            margin-bottom: 16px;
            padding-left: 24px;
        }

        .info-modal li {
            margin-bottom: 8px;
        }

        .info-icon {
            font-size: 64px;
            text-align: center;
            margin-bottom: 20px;
        }

        /* Recipe Detail Styles */
        .recipe-ingredients {
            background: #F9FCF7;
            padding: 24px;
            border-radius: 20px;
            margin: 20px 0;
        }

        .recipe-ingredients h3 {
            margin-top: 0;
        }

        .recipe-steps {
            margin: 20px 0;
        }

        .recipe-step {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
            align-items: flex-start;
        }

        .step-number {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7CB938 0%, #5FA82F 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-text {
            flex: 1;
            color: #4A7528;
            line-height: 1.7;
        }

        @media (max-width: 640px) {
            .cart-sidebar {
                width: 100%;
                right: -100%;
            }

            .info-modal-content {
                padding: 40px 28px;
            }
        }
    