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

        :root {
            --primary-color: #1a1a1a;
            --secondary-color: #444444;
            --dark-bg: #1a1a1a;
            --light-text: #f5f5f5;
            --body-text: #1a1a1a;
            --accent: #8B4513;
            --header-bg: #ffffff;
            --header-text: #1a1a1a;
            --header-shadow: rgba(0, 0, 0, 0.08);
            --max-width: 1200px;
            --light-bg: #fafafa;
            --white: #ffffff;
            --border-light: #d0d0d0;
            --text-muted: #444444;
            --text-light: #333333;
            --error-color: #d32f2f;
            --success-color: #2e7d32;
            --focus-color: #005fcc;
        }

        html {
            scroll-behavior: smooth;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Skip to main content link */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--primary-color);
            color: white;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border-radius: 0 0 5px 0;
            z-index: 2000;
            transition: top 0.3s ease;
            font-weight: 600;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Header & Navigation - Updated for white background */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--header-bg);
            z-index: 1000;
            box-shadow: 0 2px 10px var(--header-shadow);
            border-bottom: 1px solid #f0f0f0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
            max-width: 200px;
            padding: 1rem 0;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo img {
            max-width: 200px;
            height: auto;
            display: block;
        }

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

        .nav-links a {
            color: var(--header-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .nav-links i {
            font-size: 1rem;
            opacity: 0.7;
            color: var(--accent);
        }

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

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

        .nav-links a:hover i {
            opacity: 1;
        }

        .nav-links a:hover::after,
        .nav-links a:focus::after {
            width: 100%;
        }

        .nav-links a:focus {
            outline: 2px solid var(--accent);
            outline-offset: 4px;
            border-radius: 4px;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 2px solid transparent;
            color: var(--header-text);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            background: rgba(34, 34, 34, 0.05);
            color: var(--primary-color);
        }

        .mobile-menu-toggle:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

 /* Page Header Section */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
            padding: 240px 0 80px; /* Much more top padding to clear the fixed header */
            text-align: center;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Page Header Background Images - Add custom classes here */
        .page-header.products-bg {
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/headers/our-bacon.webp');
        }

        .page-header.vendors-bg {
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/headers/vendors.webp');
        }

        .page-header.about-bg {
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/headers/about.webp');
        }

        .page-header.contact-bg {
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/headers/contact.webp');
        }

        /* Example: Add more background images by copying this pattern:
        .page-header.about-bg {
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('your-image-url-here');
        }
        .page-header.contact-bg {
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('your-image-url-here');
        }
        */

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle, transparent 20%, rgba(139, 69, 19, 0.05) 20.1%, rgba(139, 69, 19, 0.05) 40%, transparent 40.1%);
            background-size: 50px 50px;
            animation: grain 8s steps(10) infinite;
            pointer-events: none;
        }

        @keyframes grain {
            0%, 100% { transform: translate(0, 0) }
            25% { transform: translate(-10px, -10px) }
            50% { transform: translate(10px, 10px) }
            75% { transform: translate(-10px, 10px) }
        }

        .page-header h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            color: #ffffff;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .breadcrumb {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            color: #ffffff;
            font-size: 1.1rem;
        }

        .breadcrumb a {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }

        .breadcrumb a:hover {
            color: #FFD700;
            text-decoration: underline;
        }

        .breadcrumb span:last-child {
            font-weight: 600;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }

        .breadcrumb span:not(:last-child) {
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }

        /* Content Sections */
        .content-section {
            padding: 5rem 0;
            background: var(--light-bg);
            min-height: 60vh;
        }

        .content-section.white-bg {
            background: var(--white);
        }

        .content-section.gray-bg {
            background: var(--light-bg);
        }

        .two-column-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        /* Left Content Column */
        .content-column {
            background: var(--white);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-light);
        }

        .content-column h2,
        .content-column h3 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent);
        }

        .content-column h4 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 2rem 0 1rem;
        }

        .content-column h5 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin: 1.5rem 0 1rem;
        }

        .content-column p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .content-column ul {
            margin: 1.5rem 0;
            padding-left: 0;
            list-style: none;
        }

        .content-column ul li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.05rem;
            color: var(--text-light);
        }

        .content-column ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent);
            font-size: 1.1rem;
        }

        /* Right Sidebar Column */
        .sidebar-column {
            position: sticky;
            top: 240px;
        }

        .sidebar-widget {
            background: var(--white);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            border: 1px solid var(--border-light);
        }

        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--accent);
        }

        .sidebar-widget p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .sidebar-widget ul {
            list-style: none;
            padding: 0;
        }

        .sidebar-widget ul li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .sidebar-widget ul li:last-child {
            border-bottom: none;
        }

        .sidebar-widget ul li a {
            color: var(--body-text);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 4px;
            min-height: 44px;
        }

        .sidebar-widget ul li a:hover {
            color: var(--accent);
            background: rgba(139, 69, 19, 0.05);
        }

        .sidebar-widget ul li a:focus {
            outline: 3px solid var(--focus-color);
            outline-offset: 2px;
            background: rgba(0, 95, 204, 0.1);
        }

        .sidebar-widget ul li i {
            color: var(--accent);
            width: 20px;
            flex-shrink: 0;
        }

        /* Product Card in Sidebar */
        .product-card {
            border: 2px solid var(--border-light);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
        }

        .product-card .product-image {
            width: 100%;
            height: 150px;
            border-radius: 8px;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #8B2500, #D2691E);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1rem;
        }

        .product-card h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .product-card .price {
            font-size: 1.5rem;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Full Width Content Column */
        .content-column.full-width {
            max-width: 100%;
            background: var(--white);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-light);
        }

        /* Form Styles - Enhanced for WCAG compliance */
        .form-group {
            margin-bottom: 1.5rem;
        }

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

        .required-indicator {
            color: var(--error-color);
            margin-left: 0.25rem;
            font-weight: bold;
        }

        .required-text {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        .form-group input.form-control,
        .form-group textarea.form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-light);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
            background: var(--white);
            min-height: 44px;
        }

        .form-group input.form-control:focus,
        .form-group textarea.form-control:focus {
            outline: 3px solid var(--focus-color);
            outline-offset: 2px;
            border-color: var(--focus-color);
            box-shadow: 0 0 0 3px rgba(0, 95, 204, 0.1);
        }

        .form-group textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        /* Error and success states for form */
        .form-group.error input.form-control,
        .form-group.error textarea.form-control {
            border-color: var(--error-color);
        }

        .form-group .error-message {
            color: var(--error-color);
            font-size: 0.9rem;
            margin-top: 0.25rem;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            min-height: 44px;
            min-width: 44px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #0d0d0d, #333333);
        }

        .submit-btn:focus {
            outline: 3px solid var(--focus-color);
            outline-offset: 2px;
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* CTA Button */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            width: 100%;
            justify-content: center;
            min-height: 44px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
            background: #A0522D;
        }

        .cta-button:focus {
            outline: 3px solid var(--focus-color);
            outline-offset: 2px;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: var(--light-text);
            padding: 2rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: var(--light-text);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            padding: 0.75rem;
            border-radius: 4px;
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-links a:hover {
            color: var(--accent);
            transform: translateY(-3px);
            background: rgba(139, 69, 19, 0.1);
        }

        .social-links a:focus {
            outline: 3px solid var(--light-text);
            outline-offset: 2px;
        }

        /* Form validation and feedback */
        .form-feedback {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            display: none;
        }

        .form-feedback.success {
            background: rgba(46, 125, 50, 0.1);
            color: var(--success-color);
            border: 1px solid var(--success-color);
            display: block;
        }

        .form-feedback.error {
            background: rgba(211, 47, 47, 0.1);
            color: var(--error-color);
            border: 1px solid var(--error-color);
            display: block;
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --border-light: #666666;
                --text-muted: #000000;
            }
            
            .content-column,
            .sidebar-widget {
                border: 2px solid var(--border-light);
            }
        }

        /* Responsive Design */
        
        /* Small devices (0-640px) */
        @media screen and (max-width: 640px) {
            nav {
                padding: 1.5rem 0;
            }

            .logo {
                max-width: 150px;
                padding: 0.75rem 0;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: center;
                align-items: stretch;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                padding: 2rem;
            }

            .nav-links a {
                justify-content: center;
                padding: 1rem;
                margin: 0.5rem 0;
            }

            .nav-links.active {
                right: 0;
            }

            .mobile-menu-toggle {
                display: block;
                z-index: 1001;
            }

            .page-header {
                padding: 180px 0 60px;
            }

            .two-column-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .sidebar-column {
                position: static;
            }

            .content-column {
                padding: 1.5rem;
            }

            .content-column h2,
            .content-column h3 {
                font-size: 2rem;
            }
        }

        /* Medium devices (641px-1024px) */
        @media screen and (min-width: 641px) and (max-width: 1024px) {
            .two-column-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .sidebar-column {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        /* Large devices (1025px+) */
        @media screen and (min-width: 1025px) {
            .container {
                padding: 0 2rem;
            }
        }

        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Enhanced focus styles */
        a:focus,
        button:focus {
            outline: 3px solid var(--focus-color);
            outline-offset: 2px;
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }