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

        :root {
            --primary-green: #2D5016;
            --primary-light: #4A7C2C;
            --accent-orange: #FF6B35;
            --accent-yellow: #FFB627;
            --bg-cream: #FAF8F3;
            --bg-light-green: #F0F4EC;
            --text-dark: #1F1F1F;
            --text-gray: #6B7280;
            --border-color: #E5E7EB;
            --white: #FFFFFF;
            --success: #10B981;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.4;
            -webkit-font-smoothing: antialiased;
            font-size: 14px;
        }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

        /* Compact Header */
        .lp-header {
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
            padding: 0.625rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .lp-header .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }
        .logo-img { height: 36px; width: auto; }

        /* Search Box */
        .header-search {
            flex: 0 1 400px;
            max-width: 400px;
            min-width: 300px;
            position: relative;
        }
        .search-input {
            width: 100%;
            padding: 0.5rem 2.5rem 0.5rem 0.875rem;
            border: 1.5px solid var(--border-color);
            border-radius: 20px;
            font-size: 0.8125rem;
            font-family: inherit;
            outline: none;
            transition: all 0.3s;
        }
        .search-input:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
        }
        .search-input::placeholder {
            color: var(--text-gray);
        }
        .search-icon {
            position: absolute;
            right: 0.875rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-gray);
            font-size: 1rem;
            pointer-events: none;
        }
        .clear-search {
            position: absolute;
            right: 2.25rem;
            top: 50%;
            transform: translateY(-50%);
            background: var(--text-gray);
            color: var(--white);
            border: none;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            font-size: 0.625rem;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 0;
            line-height: 1;
        }
        .clear-search.visible {
            display: flex;
        }
        .search-results-count {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 0.25rem;
            font-size: 0.6875rem;
            color: var(--text-gray);
            display: none;
        }
        .search-results-count.visible {
            display: block;
        }

        .header-cta {
            background: var(--accent-orange);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.8125rem;
            transition: all 0.3s;
            white-space: nowrap;
        }
        .header-cta:hover { background: #E55A28; }

        @media (max-width: 768px) {
            /* Hide header on mobile - use bottom nav instead */
            .lp-header {
                display: none;
            }

            /* Adjust hero section to start from top on mobile */
            .hero {
                min-height: 100vh;
                padding-top: 0 !important;
            }
        }

        /* Mobile Bottom Navigation Bar */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: calc(60px + env(safe-area-inset-bottom, 0px));
            background: white;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            display: none;
            justify-content: space-around;
            align-items: center;
            padding: 0 10px;
            padding-bottom: env(safe-area-inset-bottom, 0px);
            border-top: 1px solid #e5e5e5;
        }

        @media (max-width: 768px) {
            .mobile-bottom-nav {
                display: flex;
            }

            /* Add padding to body to prevent content from being hidden behind bottom nav */
            body {
                padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
            }
        }

        .mobile-bottom-nav .nav-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            position: relative;
            text-decoration: none;
            color: #666;
            transition: all 0.3s ease;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-bottom-nav .nav-item.active {
            color: #18A558;
        }

        .mobile-bottom-nav .nav-item i {
            font-size: 20px;
            margin-bottom: 2px;
        }

        .mobile-bottom-nav .nav-item span {
            font-size: 10px;
            font-weight: 500;
        }

        /* Home button with elevated logo */
        .mobile-bottom-nav .nav-item.home-btn {
            margin-top: -20px;
        }

        .mobile-bottom-nav .nav-item.home-btn .logo-circle {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border: 2px solid #f0f0f0;
            overflow: hidden;
        }

        .mobile-bottom-nav .nav-item.home-btn .logo-circle img {
            width: 52px;
            height: 52px;
            object-fit: contain;
            transform: scale(1.5);
        }

        /* Cart badge */
        .mobile-bottom-nav .cart-badge {
            position: absolute;
            top: 8px;
            right: calc(50% - 15px);
            background: #ff4444;
            color: white;
            border-radius: 10px;
            font-size: 10px;
            font-weight: 600;
            min-width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
        }

        /* Gluten-Free LP Badge */
        .lp-badge-mobile {
            position: fixed;
            bottom: calc(60px + env(safe-area-inset-bottom, 0px) + 8px);
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #2d5016, #3d6b1f);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
            z-index: 999;
            display: none;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .lp-badge-mobile {
                display: flex;
            }
        }

        .lp-badge-mobile .badge-icon {
            font-size: 14px;
            animation: pulse-icon 2s infinite;
        }

        @keyframes pulse-icon {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }

        /* Mobile Menu Overlay and Panel */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        .mobile-menu-panel {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100%;
            background: white;
            z-index: 9999;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-menu-panel.active {
            left: 0;
        }

        .mobile-menu-content {
            padding: 0;
            height: 100%;
            overflow-y: auto;
        }

        /* Layered Mobile Menu Styles */
        .layered-mobile-menu {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .menu-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
        }

        .menu-layer.active {
            transform: translateX(0);
        }

        .layer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            border-bottom: 1px solid #e5e5e5;
            background: #f8f9fa;
            min-height: 60px;
        }

        .back-button {
            background: none;
            border: none;
            font-size: 24px;
            color: #666;
            padding: 5px;
            cursor: pointer;
        }

        .back-button:hover {
            color: #333;
        }

        .layer-header h3 {
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            flex: 1;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 32px;
            color: #333;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .layer-content {
            flex: 1;
            overflow-y: auto;
        }

        .menu-item {
            border-bottom: 1px solid #e8e9ea;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-link {
            display: flex;
            align-items: center;
            padding: 14px 20px;
            color: #333;
            text-decoration: none;
            transition: background-color 0.2s ease;
            font-size: 14px;
        }

        .menu-link:hover {
            background-color: #f8f9fa;
            color: #333;
            text-decoration: none;
        }

        .menu-item.has-arrow .menu-link {
            justify-content: space-between;
        }

        /* Align product counts to the right for all menu items */
        .menu-link:has(.menu-link-right) {
            justify-content: space-between;
        }

        .menu-link i {
            margin-right: 12px;
            font-size: 16px;
            width: 24px;
            text-align: center;
            color: #666;
        }

        .menu-link-right {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .arrow-right,
        .arrow-left {
            font-size: 18px;
            color: #999;
            font-weight: bold;
        }

        .product-count {
            font-size: 11px;
            color: #999;
            font-weight: 400;
        }

        .menu-item.category-main {
            background-color: #f0f7ff;
            border-bottom: 2px solid #e3f2fd;
        }

        .menu-item.category-main .menu-link {
            font-weight: 600;
            color: #1976d2;
            justify-content: space-between;
        }

        .menu-item.category-main .menu-link:hover {
            background-color: #e3f2fd;
        }

        /* Contact info footer styling */
        .rt-header-contact-info {
            margin-top: auto;
            padding: 15px 20px;
            border-top: 1px solid #e5e5e5;
            background: #f8f9fa;
        }

        .rt-phone {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            text-align: center;
        }

        .rt-phone .phone-icon {
            font-size: 18px;
            color: var(--primary-green);
            margin-bottom: 4px;
        }

        .rt-phone .phone-number {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            letter-spacing: 0.5px;
        }

        .rt-phone .phone-label {
            font-size: 11px;
            color: #666;
            font-weight: 400;
        }

        /* Hide mobile menu on desktop */
        @media (min-width: 768px) {
            .mobile-menu-overlay,
            .mobile-menu-panel {
                display: none !important;
            }
        }

        /* Stunning Hero Section */
        .hero {
            position: relative;
            min-height: calc(100vh - 70px);
            background: radial-gradient(ellipse at top right, #E8F5E9 0%, #F0F4EC 30%, var(--bg-cream) 60%, #FAF8F3 100%);
            overflow: hidden;
            padding: 3rem 1rem;
        }

        /* Background decoration */
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(45, 80, 22, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
            justify-content: center;
            max-width: 1400px;
            min-height: calc(100vh - 140px);
        }

        /* Hero Content (Right side on desktop) */
        .hero-content {
            text-align: center;
            animation: fadeInUp 0.8s ease-out;
            order: 1; /* Show first on mobile */
        }

        .hero-eyebrow {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-green);
            margin-bottom: 1rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.5;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-benefits {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            text-align: left;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

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

        .benefit-icon {
            font-size: 2rem;
            flex-shrink: 0;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .benefit-text {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, var(--accent-orange), #FF8555);
            color: white;
            padding: 1.125rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.125rem;
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .hero-cta:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
            color: white;
        }

        /* Product Showcase (Left side on desktop) */
        .hero-products {
            position: relative;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding: 1rem;
            animation: fadeIn 1s ease-out;
            order: 2; /* Show second on mobile */
        }

        .hero-product-card {
            position: relative;
            background: white;
            border-radius: 16px;
            padding: 1.25rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: floatProduct 6s ease-in-out infinite;
        }

        .hero-product-card:nth-child(1) {
            animation-delay: 0s;
        }

        .hero-product-card:nth-child(2) {
            animation-delay: 0.3s;
        }

        .hero-product-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .hero-product-card:nth-child(4) {
            animation-delay: 0.9s;
        }

        .hero-product-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            z-index: 10;
        }

        .hero-product-card img {
            width: 100%;
            height: 140px;
            object-fit: contain;
            margin-bottom: 0.75rem;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.05));
        }

        .hero-product-name {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.375rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.3;
        }

        .hero-product-badge {
            display: inline-block;
            background: linear-gradient(135deg, #D4F4DD, #E8F5E9);
            color: var(--primary-green);
            padding: 0.25rem 0.625rem;
            border-radius: 6px;
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        /* Hero Instagram Card - 2x2 Grid of Videos */
        .hero-instagram-card {
            position: relative;
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: floatProduct 6s ease-in-out infinite;
            animation-delay: 0.9s;
            padding: 0;
            /* Position at bottom-left instead of bottom-right */
            order: -1;
        }

        .hero-instagram-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            z-index: 10;
        }

        .instagram-grid-2x2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 2px;
            width: 100%;
            height: 100%;
            min-height: 240px;
        }

        .instagram-video-item {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #000;
        }

        .instagram-video-item video {
            width: 100%;
            height: 100%;
            min-height: 120px;
            object-fit: cover;
            display: block;
            background: #000;
        }

        /* Trust Badges Bar - Infinite Carousel */
        .trust-badges-bar {
            background: var(--white);
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
        }

        .partners-carousel-wrapper {
            width: 100%;
            height: 80px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
        }

        /* Fade edges for seamless effect */
        .partners-carousel-wrapper::before,
        .partners-carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .partners-carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--white), transparent);
        }

        .partners-carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--white), transparent);
        }

        .partners-carousel {
            display: flex;
            width: fit-content;
            animation: scrollRightToLeft 30s linear infinite;
        }

        .partners-carousel:hover {
            animation-play-state: paused;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 3rem;
            padding: 0 1.5rem;
        }

        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            min-width: 100px;
            flex-shrink: 0;
        }

        .partner-logo img {
            max-height: 60px;
            max-width: 140px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.7);
            transition: all 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        /* Keyframe for infinite scroll right to left */
        @keyframes scrollRightToLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .partners-carousel-wrapper {
                height: 60px;
            }

            .partner-logo {
                height: 60px;
                min-width: 80px;
            }

            .partner-logo img {
                max-height: 45px;
                max-width: 110px;
            }

            .partners-track {
                gap: 2rem;
                padding: 0 1rem;
            }

            .partners-carousel-wrapper::before,
            .partners-carousel-wrapper::after {
                width: 50px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes floatProduct {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes floatBadge {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
            }
            50% {
                box-shadow: 0 8px 32px rgba(255, 107, 53, 0.5);
            }
        }

        /* Desktop Layout */
        @media (min-width: 1024px) {
            .hero .container {
                flex-direction: row;
                gap: 4rem;
                align-items: center;
            }

            .hero-content {
                text-align: left;
                order: 1;
                flex: 1;
            }

            .hero-products {
                order: 2;
                flex: 1;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .hero-subtitle {
                font-size: 1.375rem;
                margin-left: 0;
                margin-right: 0;
            }

            .hero-benefits {
                margin-left: 0;
                margin-right: 0;
            }

            .hero-product-card img {
                height: 180px;
            }

            .instagram-grid-2x2 {
                min-height: 320px;
            }

            .instagram-video-item video {
                min-height: 160px;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .hero-title {
                font-size: 3rem;
            }

            .hero-products {
                grid-template-columns: repeat(4, 1fr);
                max-width: 700px;
                margin: 0 auto;
            }

            .instagram-grid-2x2 {
                min-height: 160px;
            }

            .instagram-video-item video {
                min-height: 80px;
            }
        }


        /* Hierarchical Navigation Layout */
        .navigation-wrapper {
            background: var(--bg-light-green);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
        }
        .navigation-wrapper .container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            align-items: start;
        }
        @media (min-width: 768px) {
            .navigation-wrapper .container {
                grid-template-columns: 220px 1fr;
                gap: 1.5rem;
            }
        }
        @media (min-width: 1280px) {
            .navigation-wrapper .container {
                grid-template-columns: 260px 1fr;
                gap: 2rem;
            }
        }

        /* Category Sidebar */
        .category-sidebar {
            background: var(--white);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: sticky;
            top: 80px;
        }
        .sidebar-title {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--text-gray) !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.75rem;
        }
        .sidebar-categories {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .sidebar-category {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            padding: 0.625rem 0.75rem;
            background: var(--bg-cream);
            border: 1.5px solid transparent;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.8125rem;
            text-align: left;
            width: 100%;
            color: var(--text-dark) !important;
        }
        .sidebar-category:hover {
            background: var(--bg-light-green);
            border-color: var(--primary-green);
        }
        .sidebar-category.active {
            background: var(--primary-green);
            color: var(--white) !important;
            border-color: var(--primary-green);
        }
        .sidebar-category .category-icon {
            font-size: 1.125rem;
            flex-shrink: 0;
        }
        .sidebar-category .category-info {
            display: flex;
            flex-direction: column;
            flex: 1;
            gap: 0.125rem;
        }
        .sidebar-category .category-name {
            font-weight: 600;
            font-size: 0.8125rem;
            line-height: 1.2;
            color: inherit !important;
        }
        .sidebar-category .category-count {
            font-size: 0.6875rem;
            opacity: 0.8;
            color: inherit !important;
        }
        .sidebar-category .category-arrow {
            margin-left: auto;
            opacity: 0.5;
            font-size: 0.875rem;
            color: inherit !important;
        }
        .sidebar-category.active .category-arrow {
            opacity: 1;
        }

        /* Main Content Area */
        .main-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
        }

        /* Breadcrumb Navigation */
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            padding: 0.75rem 1rem;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        }
        .breadcrumb-item {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-gray) !important;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            transition: all 0.3s;
            white-space: nowrap;
        }
        .breadcrumb-item:hover {
            background: var(--bg-light-green);
            color: var(--primary-green) !important;
        }
        .breadcrumb-item.active {
            color: var(--primary-green) !important;
            font-weight: 600;
        }
        .breadcrumb-item:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            opacity: 0.5;
        }

        /* Subcategory Navigation */
        .subcategory-nav {
            padding: 1rem;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        }
        .subcategory-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }
        @media (min-width: 640px) {
            .subcategory-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .subcategory-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .subcategory-card {
            padding: 0.75rem;
            background: var(--bg-cream);
            border: 1.5px solid transparent;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            color: var(--text-dark) !important;
        }
        .subcategory-card:hover {
            background: var(--bg-light-green);
            border-color: var(--primary-green);
            transform: translateY(-2px);
        }
        .subcategory-card.active {
            background: var(--primary-light);
            border-color: var(--primary-green);
            color: var(--white) !important;
        }
        .subcategory-name {
            font-size: 0.8125rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: inherit !important;
        }
        .subcategory-count {
            font-size: 0.6875rem;
            opacity: 0.8;
            color: inherit !important;
        }

        /* Category Header Main */
        .category-header-main {
            padding: 1rem;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
            text-align: center;
        }
        .current-category-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .title-icon {
            font-size: 1.75rem;
        }
        .current-category-count {
            font-size: 0.875rem;
            color: var(--text-gray);
        }

        /* Mobile Responsive */
        @media (max-width: 767px) {
            .category-sidebar {
                position: static;
                max-height: 300px;
                overflow-y: auto;
            }
        }

        /* Product Grid - Mobile First */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
            margin-top: 1rem;
        }
        @media (min-width: 640px) {
            .product-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (min-width: 1024px) {
            .product-grid { grid-template-columns: repeat(4, 1fr); }
        }

        .product-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;

            /* Performance boost: Only render visible products (7x faster initial load) */
            content-visibility: auto;
            contain-intrinsic-size: auto 420px;
        }
        .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-color: var(--primary-green);
        }
        .product-image {
            position: relative;
            padding-top: 100%;
            background: var(--bg-cream);
            overflow: hidden;
        }
        .product-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .product-badge {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            background: var(--success);
            color: var(--white);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.5625rem;
            font-weight: 700;
            text-transform: uppercase;
        }
        .product-badge.sale { background: var(--accent-orange); }
        .product-content { padding: 0.625rem; }
        .product-title {
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.375rem;
            line-height: 1.2;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2.4em;
        }
        .product-rating {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
            font-size: 0.625rem;
        }
        .stars { color: var(--accent-yellow); }
        .review-count { color: var(--text-gray); }
        .product-price {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            margin-bottom: 0.5rem;
        }
        .price-current {
            font-size: 1rem;
            font-weight: 800;
            color: var(--primary-green);
        }
        .price-old {
            font-size: 0.75rem;
            color: var(--text-gray);
            text-decoration: line-through;
        }
        .product-actions {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            width: 100%;
        }
        .product-cta {
            width: 100%;
            padding: 0.625rem;
            background: var(--primary-green);
            color: var(--white);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.8125rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: block;
            text-align: center;
        }
        .product-cta:hover { background: var(--primary-light); }
        .product-cta.loading {
            background: var(--text-gray);
            cursor: wait;
            opacity: 0.7;
        }
        .product-cta.added {
            background: #2ecc71;
        }
        .product-cta.error {
            background: #e74c3c;
            cursor: pointer;
        }
        .product-cta.out-of-stock { background: var(--text-gray); cursor: not-allowed; opacity: 0.6; }
        .product-details-link {
            width: 100%;
            padding: 0.5rem;
            background: transparent;
            color: var(--primary-green);
            border: 1.5px solid var(--primary-green);
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: block;
            text-align: center;
        }
        .product-details-link:hover {
            background: var(--bg-light-green);
        }

        /* Reviews Section */
        .reviews-section {
            grid-column: 1 / -1;
            background: var(--bg-light-green);
            padding: 1.5rem 1rem;
            border-radius: 12px;
            margin: 1rem 0;

            /* Performance boost: Only render visible reviews */
            content-visibility: auto;
            contain-intrinsic-size: auto 200px;
        }

        /* Mobile: Horizontal Slider (2 reviews at a time) */
        .reviews-grid {
            display: flex;
            gap: 0.75rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 0.5rem;
        }
        .reviews-grid::-webkit-scrollbar {
            display: none;
        }

        .review-card {
            background: var(--white);
            padding: 0.875rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.06);
            flex: 0 0 calc(50% - 0.375rem);
            scroll-snap-align: start;
            scroll-snap-stop: always;
        }

        /* Desktop: 4-column grid */
        @media (min-width: 768px) {
            .reviews-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                overflow-x: visible;
                scroll-snap-type: none;
            }
            .review-card {
                flex: none;
            }
        }
        .review-rating {
            color: var(--accent-yellow);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }
        .review-text {
            font-size: 0.75rem;
            line-height: 1.4;
            color: var(--text-dark);
            margin-bottom: 0.625rem;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .review-author {
            font-size: 0.6875rem;
            color: var(--text-gray);
            font-weight: 600;
        }
        .review-product {
            font-size: 0.625rem;
            color: var(--text-gray);
            font-style: italic;
            margin-top: 0.25rem;
        }

        /* Scroll Indicator Dots */
        .scroll-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .scroll-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary-green);
            opacity: 0.3;
            transition: opacity 0.3s, width 0.3s;
        }
        .scroll-dot.active {
            opacity: 1;
            width: 20px;
            border-radius: 3px;
        }
        @media (min-width: 768px) {
            .scroll-indicators {
                display: none;
            }
        }

        /* Product Details Modal */
        .product-details-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
        }
        .product-details-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(5px);
        }
        .product-modal-content {
            position: relative;
            background: white;
            border-radius: 16px;
            width: 95%;
            max-width: 800px;
            max-height: 90vh;
            overflow: hidden;
            animation: modalSlideIn 0.3s ease;
            z-index: 10001;
        }
        .product-modal-close {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0,0,0,0.8);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            z-index: 10002;
            transition: background 0.3s ease;
            line-height: 1;
        }
        .product-modal-close:hover {
            background: rgba(0,0,0,0.9);
        }
        .product-modal-body {
            display: flex;
            flex-direction: column;
            max-height: 90vh;
            overflow-y: auto;
        }
        .product-modal-image {
            width: 100%;
            background: #f5f5f5;
            padding: 2rem;
        }
        .product-modal-image img {
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: contain;
        }
        .product-modal-info {
            padding: 2rem;
        }
        .product-modal-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 1rem 0;
        }
        .product-modal-price {
            margin-bottom: 1.5rem;
        }
        .modal-price-amount {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-green);
        }
        .product-modal-description {
            font-size: 0.9375rem;
            line-height: 1.6;
            color: var(--text-dark);
            margin-bottom: 2rem;
        }
        .product-modal-actions {
            display: flex;
            gap: 1rem;
        }
        .product-modal-button {
            flex: 1;
            padding: 0.875rem 1.5rem;
            background: var(--primary-green);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9375rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            text-align: center;
            display: inline-block;
        }
        .product-modal-button:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            color: white;
            text-decoration: none;
        }

        @media (min-width: 768px) {
            .product-modal-body {
                flex-direction: row;
            }
            .product-modal-image {
                width: 40%;
                flex-shrink: 0;
            }
            .product-modal-info {
                flex: 1;
                overflow-y: auto;
            }
        }

        /* SEO Footer Styles */
        .seo-footer {
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
            padding: 3rem 1rem 2rem;
            border-top: 2px solid var(--border-color);
            margin-top: 4rem;
        }

        .seo-footer .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .seo-footer-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            text-align: center;
            margin: 0 0 2rem 0;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--primary-green);
            display: inline-block;
            width: 100%;
        }

        .seo-links-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 640px) {
            .seo-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.875rem;
            }
        }

        @media (min-width: 1024px) {
            .seo-links-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }
        }

        @media (min-width: 1280px) {
            .seo-links-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .seo-link {
            display: block;
            padding: 0.5rem 0.75rem;
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 0.75rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .seo-link:hover {
            background: var(--bg-light-green);
            border-color: var(--primary-green);
            color: var(--primary-green);
            transform: translateX(4px);
            box-shadow: 0 2px 8px rgba(45, 80, 22, 0.15);
        }

        .seo-footer-meta {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .seo-footer-meta p {
            font-size: 0.875rem;
            color: var(--text-gray);
            margin: 0;
            line-height: 1.6;
        }

