:root {
            --cucumber-green: #4ade80;
            --cucumber-dark: #166534;
            --bg-light: #f0fdf4;
            --bg-white: #ffffff;
            --text-dark: #14532d;
            --accent: #fbbf24;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        nav {
            background: var(--cucumber-dark);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-family: 'Bangers', cursive;
            font-size: 2rem;
            color: var(--cucumber-green);
            text-shadow: 2px 2px 0 #052e16;
            text-decoration: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            margin-left: 2rem;
            font-weight: 600;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--cucumber-green);
        }

        .hero {
            background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '🥒';
            position: absolute;
            font-size: 15rem;
            opacity: 0.1;
            top: -2rem;
            left: -3rem;
            transform: rotate(-15deg);
        }

        .hero::after {
            content: '🥒';
            position: absolute;
            font-size: 12rem;
            opacity: 0.1;
            bottom: -2rem;
            right: -2rem;
            transform: rotate(25deg);
        }

        .hero h1 {
            font-family: 'Bangers', cursive;
            font-size: 4.5rem;
            color: white;
            text-shadow: 4px 4px 0 var(--cucumber-dark);
            margin-bottom: 0.75rem;
            letter-spacing: 0.05em;
            position: relative;
            z-index: 1;
        }

        .hero-tagline {
            font-family: 'Bangers', cursive;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 2px 2px 0 var(--cucumber-dark);
            margin-bottom: 1rem;
            letter-spacing: 0.04em;
            position: relative;
            z-index: 1;
        }

        .hero-tagline a {
            color: inherit;
            text-decoration: none;
        }

        .hero-tagline a:hover {
            text-decoration: underline;
            text-decoration-thickness: 3px;
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 640px;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 1;
            line-height: 1.5;
        }

        .cta-btn {
            display: inline-block;
            background: var(--accent);
            color: var(--text-dark);
            padding: 1rem 3rem;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
            z-index: 1;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .products {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Bangers', cursive;
            font-size: 3rem;
            text-align: center;
            color: var(--cucumber-dark);
            margin-bottom: 1rem;
        }

        .section-intro {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 3rem;
            color: #166534;
            line-height: 1.6;
        }

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

        .product-card {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            height: 280px;
            background: linear-gradient(135deg, #bbf7d0 0%, #86efac 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

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

        .product-info {
            padding: 1.5rem;
        }

        .product-name {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .product-price {
            color: var(--cucumber-dark);
            font-weight: 700;
            font-size: 1.4rem;
        }

        .in-stock {
            margin-top: 0.5rem;
            color: #22c55e;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .buy-btn {
            display: inline-block;
            background: var(--cucumber-dark);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 1rem;
            transition: background 0.2s;
        }

        .product-card:hover .buy-btn {
            background: #22c55e;
        }

        .view-all {
            text-align: center;
            margin-top: 3rem;
        }

        .view-all a {
            display: inline-block;
            background: var(--cucumber-dark);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .view-all a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(22, 101, 52, 0.4);
        }

        footer {
            background: var(--cucumber-dark);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        footer p {
            opacity: 0.7;
            margin-top: 1rem;
            font-size: 0.9rem;
        }

        footer .footer-links {
            margin-top: 1.25rem;
        }

        footer .footer-links a {
            color: var(--cucumber-green);
            text-decoration: none;
            margin: 0 0.75rem;
            font-weight: 600;
        }

        footer .footer-links a:hover {
            text-decoration: underline;
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero-tagline {
                font-size: 1.4rem;
            }

            .nav-links a {
                margin-left: 1rem;
                font-size: 0.9rem;
            }
        }
