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

        :root {
            --toledo-green: #008b44;
            --toledo-green-dark: #006d35;
            --toledo-gold: #F7C951;
            --dark: #0a1612;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-700: #374151;
            --gray-900: #111827;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

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

        /* Header/nav/search/cart/phone styles are in /css/header.css */

        /* Shop dropdown, search, cart, and all nav component styles are in /css/header.css */

        /* ===== VIDEO HERO ===== */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10,22,18,0.7), rgba(71,158,82,0.35));
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding: 80px 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--toledo-gold);
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 24px;
            animation: fadeInDown 0.8s ease;
        }

        .hero-badge svg {
            width: 18px;
            height: 18px;
        }

        .hero h1 {
            font-size: clamp(42px, 7vw, 72px);
            font-weight: 900;
            margin-bottom: 24px;
            line-height: 1.1;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-subtitle {
            font-size: clamp(18px, 3vw, 22px);
            margin-bottom: 40px;
            opacity: 0.95;
            font-weight: 400;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .hero-ctas {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .btn-hero {
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--toledo-green), var(--toledo-green-dark));
            color: white;
            box-shadow: 0 8px 24px rgba(71, 158, 82, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(71, 158, 82, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--toledo-green);
            transform: translateY(-4px);
        }

        .btn-secondary {
            background: white;
            color: var(--toledo-green);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .btn-secondary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.2);
        }

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

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== ATHENA SHOWCASE (30% smaller) ===== */
        .athena-showcase {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            color: white;
            padding: 56px 0;
            overflow: hidden;
        }

        .athena-inner {
            display: flex;
            align-items: center;
            gap: 48px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .athena-image-col {
            flex: 0 0 400px;
        }

        .athena-image-col img {
            width: 100%;
            height: auto;
            border-radius: 12px;
        }

        .athena-text-col {
            flex: 1;
        }

        .athena-badge {
            display: inline-block;
            background: var(--toledo-gold);
            color: var(--dark);
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 12px;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

        .athena-logo-text {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 8px;
            letter-spacing: 4px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

        .athena-subtitle {
            font-size: 18px;
            color: var(--toledo-gold);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .athena-description {
            font-size: 15px;
            margin-bottom: 28px;
            opacity: 0.9;
            line-height: 1.7;
        }

        .athena-products-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .athena-chip {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 8px;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--toledo-gold);
            transition: all 0.3s ease;
        }

        .athena-chip:hover {
            background: rgba(255,255,255,0.15);
            border-color: var(--toledo-gold);
        }

        /* ===== SALES CAROUSEL ===== */
        .sales-section {
            padding: 80px 0;
            background: var(--gray-50);
        }

        .sales-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .sales-header h2 {
            font-size: clamp(28px, 4vw, 40px);
            color: var(--dark);
            margin-bottom: 8px;
        }

        .sales-header p {
            color: var(--gray-700);
            font-size: 16px;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }

        .carousel-track {
            display: flex;
            gap: 24px;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .carousel-card {
            flex: 0 0 220px;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--dark);
            display: block;
            cursor: pointer;
        }

        .carousel-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
        }

        .carousel-card-image {
            width: 100%;
            height: 180px;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .carousel-card-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            padding: 10px;
            background: #fff;
        }

        .carousel-card-info {
            padding: 16px;
        }

        .carousel-card-name {
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .carousel-card-brand {
            font-size: 12px;
            color: var(--gray-700);
            margin-bottom: 8px;
        }

        .carousel-card-price {
            font-weight: 800;
            font-size: 18px;
            color: var(--toledo-green);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--gray-200);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: var(--toledo-green);
            border-color: var(--toledo-green);
            color: white;
        }

        .carousel-btn svg {
            width: 20px;
            height: 20px;
        }

        .carousel-btn-left { left: 0; }
        .carousel-btn-right { right: 0; }

        /* ===== SECTION STYLES ===== */
        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--toledo-gold);
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: clamp(32px, 5vw, 48px);
            margin-bottom: 16px;
            color: var(--dark);
        }

        .section-header p {
            font-size: 18px;
            color: var(--gray-700);
        }

        /* ===== CATEGORY GRID ===== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .category-card {
            position: relative;
            height: 300px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            text-decoration: none;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .category-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.4s ease;
        }

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

        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.75));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
            color: white;
            transition: background 0.4s ease;
        }

        .category-card:hover .category-overlay {
            background: linear-gradient(to bottom, rgba(71, 158, 82, 0.3), rgba(71, 158, 82, 0.85));
        }

        .category-icon {
            width: 36px;
            height: 36px;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .category-name {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .category-desc {
            font-size: 13px;
            opacity: 0.85;
        }

        /* ===== BRANDS SECTION ===== */
        .brands-section {
            background: var(--gray-50);
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            align-items: center;
            justify-items: center;
            padding: 20px 0;
        }

        .brand-logo-img {
            max-width: 200px;
            max-height: 80px;
            object-fit: contain;
            opacity: 1;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .brand-logo-img:hover {
            transform: scale(1.08);
        }

        .brand-logo-link {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        /* ===== WHY CHOOSE US ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .feature-card {
            text-align: center;
            padding: 40px 28px;
            background: white;
            border-radius: 16px;
            border: 2px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.1);
            border-color: var(--toledo-green);
        }

        .feature-icon-svg {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            color: var(--toledo-green);
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--gray-700);
            font-size: 14px;
            line-height: 1.7;
        }

        .feature-quote {
            font-style: italic;
            color: var(--toledo-green);
            font-size: 13px;
            margin-top: 12px;
            font-weight: 600;
        }

        .growers-banner {
            text-align: center;
            margin-top: 48px;
            padding: 24px;
            background: var(--toledo-green);
            border-radius: 12px;
            color: white;
        }

        .growers-banner h3 {
            font-size: 24px;
            font-weight: 900;
            letter-spacing: 2px;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-section {
            background: var(--gray-50);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.1);
        }

        .testimonial-stars {
            color: var(--toledo-gold);
            font-size: 20px;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray-700);
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 700;
            font-size: 14px;
            color: var(--dark);
        }

        .testimonial-source {
            font-size: 12px;
            color: var(--gray-700);
            margin-top: 2px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            line-height: 1.7;
            margin-top: 16px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--toledo-gold);
        }

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

        .footer-col li {
            margin-bottom: 10px;
        }

        .footer-col a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--toledo-gold);
        }

        .footer-col .footer-info {
            color: rgba(255,255,255,0.75);
            font-size: 14px;
        }

        .footer-hours {
            margin-top: 8px;
        }

        .footer-hours li {
            color: rgba(255,255,255,0.75);
            font-size: 14px;
            margin-bottom: 4px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .shop-mega {
                width: 580px;
            }
            .mega-categories { width: 220px; min-width: 220px; }
            .subcat-panel ul { columns: 1; }
            .category-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 1024px) {
            /* nav/search handled by header.css */
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .brands-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 768px) {
            /* nav/header-right/mobile-menu-btn handled by header.css */

            .hero { min-height: 70vh; }
            .hero-ctas { flex-direction: column; }
            .btn-hero { width: 100%; text-align: center; }

            .athena-inner { flex-direction: column; }
            .athena-image-col { flex: none; width: 100%; }

            .category-grid { grid-template-columns: repeat(2, 1fr); }
            .category-card { height: 240px; }

            .features-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .brands-grid { grid-template-columns: repeat(2, 1fr); }

            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

            .carousel-wrapper { padding: 0 48px; }
            .carousel-card { flex: 0 0 180px; }

            /* Mobile menu */
            .mobile-nav {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 20px;
                box-shadow: 0 8px 24px rgba(0,0,0,0.1);
                z-index: 999;
            }

            .mobile-nav a {
                padding: 12px 0;
                color: var(--dark);
                text-decoration: none;
                font-weight: 600;
                font-size: 16px;
                border-bottom: 1px solid var(--gray-200);
            }
        }

        @media (max-width: 480px) {
            .category-grid { grid-template-columns: 1fr; }
            .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .footer-grid { grid-template-columns: 1fr; }
        }
    