﻿        /* Reset styles only for header and footer components */
        .header *,
        .footer *,
        .mega-menu *,
        .mobile-menu * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body padding for header spacing only */
        body {
            padding-top: 80px; /* Account for fixed header height on desktop */
        }

        /* HEADER AND FOOTER ONLY CSS - Does not affect content areas */
        
        /* HEADER AND FOOTER CSS ONLY - Content CSS injected via JavaScript */
        
        /* Fix mega menu title colors - ONLY target header elements */
        .header .mega-menu-item-link .mega-menu-title {
            color: #ab2930 !important;
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
            text-decoration: none !important;
            font-weight: 600 !important;
        }
        
        .header .mega-menu-item-link:hover .mega-menu-title {
            color: #ed1c24 !important;
        }
        
        /* Fix mobile mega menu title colors - ONLY target header elements */
        .header .mobile-shop-title,
        .header .mobile-patio-title,
        .header .mobile-wineclub-title,
        .header .mobile-locations-title,
        .header .mobile-about-title {
            color: #ab2930 !important;
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
            text-decoration: none !important;
            font-weight: 450 !important;
        }
        
        .header .mobile-shop-link:hover .mobile-shop-title,
        .header .mobile-patio-link:hover .mobile-patio-title,
        .header .mobile-wineclub-link:hover .mobile-wineclub-title,
        .header .mobile-locations-link:hover .mobile-locations-title,
        .header .mobile-about-link:hover .mobile-about-title {
            color: #ed1c24 !important;
        }
        

        /* Mobile header height adjustment */
        @media (max-width: 1130px) {
            body {
                padding-top: 60px; /* Account for mobile header height */
            }
        }

        .header {
            background: #f0e6d2;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 5px;
        }

        .header-container {
            max-width: 1430px;
            margin: 0 auto;
            padding: 0 5px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            position: relative;
        }

        .logo {
            flex-shrink: 0;
            margin-right: 40px;
        }

        .logo img {
            height: 44.27px;
            width: auto;
            margin: 4px 0 0 1px;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 17px;
            flex: 1;
            justify-content: center;
            margin-top: -3px;
        }

        .nav-item {
            text-decoration: none !important;
            color: #231f20;
            font-weight: 400;
            font-size: 18px;
            transition: color 0.3s ease;
            position: relative;
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

        .nav-item:hover {
            color: #ab2930;
            text-decoration: none !important;
        }

        .nav-item:hover .dd-text-icon {
            color: #ab2930;
        }

        /* Ensure no underlines on navigation links */
        .nav a,
        .nav .nav-item,
        .nav .nav-item:hover,
        .nav .nav-item:focus,
        .nav .nav-item:active {
            text-decoration: none !important;
        }

        /* Dropdown chevron styles */
        .dropdown-chevron {
            margin-left: 8px;
            margin-top: -1px;
            font-size: 11.2px !important;
            color: #231f20;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .dropdown-chevron {
            transform: rotate(180deg);
            color: #ab2930;
        }

        /* Dropdown styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: calc(100% + 18px);
            left: 50%;
            transform: translateX(-50%);
            background: #f9f5ed;
            min-width: 220px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 0;
            padding: 12px 0;
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-top: 0;
        }

        /* Triangle bridge for regular dropdowns */
        .dropdown-content::before {
            content: '';
            position: absolute;
            top: -15px;
            left: var(--triangle-left, 20px);
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-bottom: 15px solid #f9f5ed;
            z-index: 1002;
        }

        /* Invisible hover area for regular dropdown triangles */
        .dropdown-content::after {
            content: '';
            position: absolute;
            top: -25px;
            left: var(--hover-area-left, 20px);
            width: var(--hover-area-width, 50px);
            height: 25px;
            background: transparent;
            z-index: 1001;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            visibility: visible;
        }


        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-shrink: 0;
            margin-left: 40px;
            margin-top: -3px;
        }

        .phone {
            color: #231f20;
            font-weight: 400;
            font-size: 18px;
            text-decoration: none;
            display: flex;
            align-items: center;
            padding-right: 5px;
        }

        .phone:hover {
            color: #ab2930;
        }

        .phone:hover .dd-text-icon {
            color: #ab2930;
        }

        .mobile-menu-btn {
            display: none;
            background: #ab2930;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #ffffff;
            padding: 0 18px;
            border-radius: 0;
            position: absolute;
            top: 0;
            bottom: 0;
            right: -5px;
            height: 100%;
            align-items: center;
            justify-content: center;
            min-width: 60px;
            flex-direction: column;
            gap: 5px;
        }

        .mobile-menu-btn::before,
        .mobile-menu-btn::after,
        .mobile-menu-btn .hamburger-line {
            content: '';
            display: block;
            width: 26px;
            height: 3px;
            background-color: #ffffff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger-line {
            width: 26px;
            height: 3px;
            background-color: #ffffff;
            border-radius: 2px;
        }

        /* Active state for hamburger when menu is open */
        .mobile-menu-btn.active {
            background: #ed1c24;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #f0e5d1;
            box-shadow: none;
            padding: 4px 0 0 0;
            text-align: center;
        }

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

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 0;
            padding: 0;
        }

        .mobile-nav-item {
            text-decoration: none !important;
            color: #231f20;
            font-weight: 300;
            font-size: 18px;
            padding: 17px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #e4d3b0;
            margin-bottom: 3px;
            border-radius: 0;
            transition: all 0.3s ease;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .mobile-nav-item:hover {
            color: #ab2930;
            background-color: transparent;
            border-bottom: 1px solid #eee;
            text-decoration: none !important;
        }

        .mobile-nav-item:hover .dd-text-icon {
            color: #ab2930;
        }

        /* Ensure no underlines on mobile menu links */
        .mobile-nav a,
        .mobile-nav .mobile-nav-item,
        .mobile-nav .mobile-nav-item:hover,
        .mobile-nav .mobile-nav-item:focus,
        .mobile-nav .mobile-nav-item:active,
        .mobile-dropdown-toggle,
        .mobile-dropdown-toggle:hover,
        .mobile-dropdown-toggle:focus,
        .mobile-dropdown-toggle:active {
            text-decoration: none !important;
        }

        /* Content Area and Hero Image Styles */
        .content-area {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0;
        }

        .hero-image-container {
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .hero-image {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            display: block;
        }

        .hero-image-container {
            margin-bottom: 900px;
        }

        /* Mobile dropdown styles */
        .mobile-dropdown {
            width: 100%;
        }

        .mobile-dropdown-content {
            margin-left: 0;
            margin-top: 0;
            display: none;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .mobile-dropdown-content.active {
            display: block;
        }


        .mobile-dropdown-toggle {
            background: #e4d3b0;
            border: none;
            color: #231f20;
            font-weight: 300;
            font-size: 18px;
            padding: 17px 0;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            text-align: center;
            cursor: pointer;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 3px;
            border-radius: 0;
            transition: all 0.3s ease;
            position: relative;
            gap: 10px;
        }

        .mobile-dropdown-toggle:hover {
            color: #ab2930;
            background-color: transparent;
        }

        .mobile-dropdown-toggle::after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            font-size: 11.2px;
            transition: transform 0.3s ease;
            color: #231f20;
        }

        .mobile-dropdown-toggle:hover::after {
            color: #ab2930;
        }

        .mobile-dropdown-toggle.active::after {
            transform: rotate(180deg);
        }
        
        /* Keep Shop toggle red when active */
        .mobile-dropdown-toggle[onclick*="shop"].active {
            color: #ab2930 !important;
            background-color: transparent !important;
        }
        
        /* Keep Shop toggle chevron red when active */
        .mobile-dropdown-toggle[onclick*="shop"].active::after {
            color: #ab2930 !important;
        }

        /* Keep About toggle red when active */
        .mobile-dropdown-toggle[onclick*="about"].active {
            color: #ab2930 !important;
            background-color: transparent !important;
        }
        
        /* Keep About toggle chevron red when active */
        .mobile-dropdown-toggle[onclick*="about"].active::after {
            color: #ab2930 !important;
        }

        /* Keep Patio toggle red when active */
        .mobile-dropdown-toggle[onclick*="patio"].active {
            color: #ab2930 !important;
            background-color: transparent !important;
        }
        
        /* Keep Patio toggle chevron red when active */
        .mobile-dropdown-toggle[onclick*="patio"].active::after {
            color: #ab2930 !important;
        }

        /* Keep Locations toggle red when active */
        .mobile-dropdown-toggle[onclick*="locations"].active {
            color: #ab2930 !important;
            background-color: transparent !important;
        }
        
        /* Keep Locations toggle chevron red when active */
        .mobile-dropdown-toggle[onclick*="locations"].active::after {
            color: #ab2930 !important;
        }

        /* Mobile Shop Mega Menu Styles */
        .mobile-shop-mega {
            background: #f9f5ed;
            padding: 25px 20px 20px 20px;
            border-radius: 0;
        }

        .mobile-shop-images {
            display: flex;
            flex-direction: row;
            gap: 12px;
            margin-bottom: 0px;
            padding: 10px;
            justify-content: center;
            align-items: center;
        }

        .mobile-shop-image-item {
            text-align: center;
            flex: 0 0 auto;
            width: auto;
            margin: 0 5px;
        }



        /* Two-column layout from 760px up to desktop breakpoint */
        @media (min-width: 760px) and (max-width: 1130px) {
            .mobile-shop-mega {
                display: flex;
                flex-direction: row;
                gap: 20px;
                align-items: flex-start;
            }
            
            .mobile-shop-images {
                flex-direction: row;
                gap: 15px;
                margin-bottom: 0;
                width: 60%;
            }
            
            .mobile-shop-image-item {
                width: 50%;
            }
            
            .mobile-shop-table {
                width: 50%;
                margin-top: 0;
                max-width: 300px;
            }
            
            .mobile-shop-table-cell {
                padding: 3px 4px !important;
                flex: 0 0 50% !important;
                max-width: 50% !important;
            }
            
            .mobile-shop-table-cell a {
                padding-left: 2px !important;
            }

            /* Adjust hover area for Shop cards on medium mobile - 2px smaller on each side */
            .mobile-shop-image {
                width: 204px !important; /* Reduced from 208px by 4px total (2px each side) */
            }
            
            .mobile-shop-link {
                width: 204px !important;
                margin: 0 auto;
            }
        }

        /* Two-column layout from 760px up to desktop breakpoint for Patio and Wine Club */
        @media (min-width: 760px) and (max-width: 1130px) {
            .mobile-patio-mega,
            .mobile-wineclub-mega {
                display: flex;
                flex-direction: row;
                gap: 20px;
            }
            
            .mobile-patio-images,
            .mobile-wineclub-images {
                flex-direction: row;
                gap: 8px;
                margin-bottom: 0;
                width: 100%;
                justify-content: center;
                padding: 0 20px;
            }
            
            .mobile-patio-image-item,
            .mobile-wineclub-image-item {
                width: 50%;
            }
        }

        .mobile-shop-image {
            width: 208px;
            height: 144px;
            object-fit: cover;
            border-radius: 0;
            margin-bottom: 10px;
            margin-top: -15px;
        }

        /* Responsive sizing for very small mobile screens */
        @media (max-width: 480px) {
            .mobile-shop-image,
            .mobile-patio-image,
            .mobile-wineclub-image,
            .mobile-about-image {
                width: 195px !important; /* Even less aggressive - very close to original 208px */
                height: 135px !important; /* Maintains aspect ratio */
            }
            
            .mobile-shop-link,
            .mobile-patio-link,
            .mobile-wineclub-link,
            .mobile-about-link {
                width: 195px !important;
                margin: 0 auto;
            }
            
            .mobile-shop-images,
            .mobile-patio-images,
            .mobile-wineclub-images,
            .mobile-about-images {
                gap: 12px !important;
                padding: 10px !important;
            }
            
            /* Special handling for locations to prevent alignment issues */
            .mobile-locations-images {
                padding: 0 10px !important; /* Reduce padding to prevent right shift */
            }
            
            .mobile-locations-image {
                width: 100% !important; /* Let grid handle the sizing */
                height: auto !important;
                aspect-ratio: 208/144 !important;
            }
            
            .mobile-locations-link {
                width: 100% !important; /* Let grid handle the sizing */
            }
        }

        /* Even smaller screens */
        @media (max-width: 360px) {
            .mobile-shop-image,
            .mobile-patio-image,
            .mobile-wineclub-image,
            .mobile-about-image {
                width: 175px !important; /* Even less aggressive */
                height: 121px !important; /* Maintains aspect ratio */
            }
            
            .mobile-shop-link,
            .mobile-patio-link,
            .mobile-wineclub-link,
            .mobile-about-link {
                width: 175px !important;
                margin: 0 auto;
            }
            
            .mobile-shop-images,
            .mobile-patio-images,
            .mobile-wineclub-images,
            .mobile-about-images {
                gap: 10px !important;
                padding: 8px !important;
            }
            
            /* Special handling for locations on very small screens */
            .mobile-locations-images {
                padding: 0 5px !important; /* Further reduce padding */
            }
        }

        .mobile-shop-title {
            color: #ab2930;
            font-size: 17px;
            font-weight: 450;
            margin: -10px 0 -20px 0;
        }

        .mobile-shop-link {
            text-decoration: none;
            display: block;
            border: 1px solid transparent;
            padding-bottom: 25px;
        }

        .mobile-shop-link:hover {
            background-color: #ffffff;
            border: 1px solid #e5c799;
        }

        .mobile-shop-link:hover .mobile-shop-title {
            color: #ed1c24;
        }




        /* Mobile Patio Mega Menu Styles */
        .mobile-patio-mega {
            background: #f9f5ed;
            padding: 32px 25px 10px 25px;
            border-radius: 0;
            width: 100%;
        }

        .mobile-patio-images {
            display: flex;
            flex-direction: row;
            gap: 12px;
            margin: 0;
            padding: 0 0 3px 0;
            justify-content: center;
            align-items: center;
        }

        .mobile-patio-image-item {
            text-align: center;
            flex: 0 0 auto;
            width: auto;
            margin: 0 5px;
        }

        .mobile-patio-image {
            width: 208px;
            height: 144px;
            object-fit: cover;
            border-radius: 0;
            margin-bottom: 10px;
            margin-top: -15px;
        }

        .mobile-patio-title {
            color: #ab2930;
            font-size: 17px;
            font-weight: 450;
            margin: -10px 0 -20px 0;
        }

        .mobile-patio-link {
            text-decoration: none;
            display: block;
            border: 1px solid transparent;
            padding-bottom: 25px;
            transition: all 0.3s ease;
        }

        .mobile-patio-link:hover {
            background-color: #ffffff;
            border: 1px solid #e5c799;
        }

        .mobile-patio-link:hover .mobile-patio-title {
            color: #ed1c24;
        }

        /* Mobile Wine Club Mega Menu Styles */
        .mobile-wineclub-mega {
            background: #f9f5ed;
            padding: 32px 25px 10px 25px;
            border-radius: 0;
            width: 100%;
        }

        .mobile-wineclub-images {
            display: flex;
            flex-direction: row;
            gap: 12px;
            margin: 0;
            padding: 0 0 3px 0;
            justify-content: center;
            align-items: center;
        }

        .mobile-wineclub-image-item {
            text-align: center;
            flex: 0 0 auto;
            width: auto;
            margin: 0 5px;
        }

        .mobile-wineclub-image {
            width: 208px;
            height: 144px;
            object-fit: cover;
            border-radius: 0;
            margin-bottom: 10px;
            margin-top: -15px;
        }

        .mobile-wineclub-title {
            color: #ab2930;
            font-size: 17px;
            font-weight: 450;
            margin: -10px 0 -20px 0;
        }

        .mobile-wineclub-link {
            text-decoration: none;
            display: block;
            border: 1px solid transparent;
            padding-bottom: 25px;
            transition: all 0.3s ease;
        }

        .mobile-wineclub-link:hover {
            background-color: #ffffff;
            border: 1px solid #e5c799;
        }

        .mobile-wineclub-link:hover .mobile-wineclub-title {
            color: #ed1c24;
        }

        /* Mobile Locations Mega Menu Styles */
        .mobile-locations-mega {
            background: #f9f5ed;
            padding: 32px 25px 10px 25px;
            border-radius: 0;
            width: 100%;
        }

        .mobile-locations-images {
            display: flex;
            flex-direction: row;
            gap: 12px;
            margin: 0;
            padding: 0 20px 3px 20px;
            justify-content: center;
            align-items: center;
        }

        .mobile-locations-image-item {
            text-align: center;
            flex: 0 0 auto;
            width: auto;
            margin: 0 5px;
        }

        .mobile-locations-image {
            width: 208px;
            height: 144px;
            object-fit: cover;
            border-radius: 0;
            margin-bottom: 10px;
            margin-top: -15px;
        }

        .mobile-locations-title {
            color: #ab2930;
            font-size: 17px;
            font-weight: 450;
            margin: -10px 0 -20px 0;
        }

        .mobile-locations-link {
            text-decoration: none;
            display: block;
            border: 1px solid transparent;
            padding-bottom: 25px;
            transition: all 0.3s ease;
        }

        .mobile-locations-link:hover {
            background-color: #ffffff;
            border: 1px solid #e5c799;
        }

        .mobile-locations-link:hover .mobile-locations-title {
            color: #ed1c24;
        }

        /* Simple responsive styles for locations only */
        @media (max-width: 1130px) {
            .mobile-locations-images {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 8px !important;
                row-gap: 20px !important;
                padding: 0 20px !important;
                max-width: 580px !important;
                margin: 0 auto !important;
                flex-direction: unset !important;
                justify-content: unset !important;
                align-items: unset !important;
            }
            
            .mobile-locations-image-item {
                width: 100% !important;
                max-width: 100% !important;
                flex: unset !important;
                margin: 0 !important;
            }
            
            .mobile-locations-image {
                width: 100% !important;
                height: auto !important;
                aspect-ratio: 208/144;
                margin-bottom: 10px !important;
                margin-top: -15px !important;
            }
            
            .mobile-locations-title {
                margin: -10px 0 -20px 0 !important;
            }
        }









        /* Mobile About Mega Menu Styles */
        .mobile-about-mega {
            background: #f9f5ed;
            padding: 25px 20px 20px 20px;
            border-radius: 0;
        }

        .mobile-about-images {
            display: flex;
            flex-direction: row;
            gap: 12px;
            margin-bottom: 0px;
            padding: 10px;
            justify-content: center;
            align-items: center;
        }

        .mobile-about-image-item {
            text-align: center;
            flex: 0 0 auto;
            width: auto;
            margin: 0 5px;
        }

        .mobile-about-image {
            width: 208px;
            height: 144px;
            object-fit: cover;
            border-radius: 0;
            margin-bottom: 10px;
            margin-top: -15px;
        }

        .mobile-about-title {
            color: #ab2930;
            font-size: 17px;
            font-weight: 450;
            margin: -10px 0 -20px 0;
        }

        .mobile-about-link {
            text-decoration: none;
            display: block;
            border: 1px solid transparent;
            padding-bottom: 25px;
        }

        .mobile-about-link:hover {
            background-color: #ffffff;
            border: 1px solid #e5c799;
        }

        .mobile-about-link:hover .mobile-about-title {
            color: #ed1c24;
        }

        /* Two-column layout from 760px up to desktop breakpoint for About */
        @media (min-width: 760px) and (max-width: 1130px) {
            .mobile-about-mega {
                display: flex;
                flex-direction: row;
                gap: 20px;
                align-items: flex-start;
            }
            
            .mobile-about-images {
                flex-direction: row;
                gap: 15px;
                margin-bottom: 0;
                width: 60%;
            }
            
            .mobile-about-image-item {
                width: 50%;
            }
            
            .mobile-about-table {
                width: 50%;
                margin-top: 0;
                max-width: 300px;
            }
            
            .mobile-about-table-cell {
                padding: 3px 4px !important;
                flex: 0 0 50% !important;
                max-width: 50% !important;
            }
            
            .mobile-about-table-cell a {
                padding-left: 2px !important;
            }

            /* Make hover area match image width perfectly on medium mobile - horizontal only */
            .mobile-about-link {
                width: 208px !important;
                margin: 0 auto;
            }
            
            .mobile-about-image {
                width: 208px !important;
            }
        }

        .mobile-about-table {
            border: 1px solid #e5c799;
            border-radius: 0;
            margin-bottom: 15px;
            width: 95%;
            margin-left: auto;
            margin-right: auto;
            table-layout: fixed;
            height: fit-content;
        }

        .mobile-about-table-row {
            display: flex;
            border-bottom: 1px solid #e5c799;
            width: 100%;
            align-items: stretch;
        }

        .mobile-about-table-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .mobile-about-table-cell {
            flex: 0 0 auto;
            border-right: 1px solid #e5c799;
            padding: 12px 15px;
            min-width: 0;
            word-wrap: break-word;
            width: 50%;
            height: fit-content;
            display: flex;
            align-items: center;
        }

        .mobile-about-table-cell:last-child {
            border-right: none;
        }

        .mobile-about-table-cell a {
            color: #666666;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            display: block;
            transition: color 0.2s ease;
        }
        
        /* Mobile-specific table styling for small screens */
        @media (max-width: 759px) {
            .mobile-about-table-cell {
                padding: 6px 8px !important;
                text-align: left;
                flex: 1;
                min-width: 0;
            }
            
            .mobile-about-table-cell a {
                text-align: left;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
        }

        .mobile-about-table-cell a:hover {
            color: #ab2930;
        }
        


        .mobile-shop-table {
            border: 1px solid #e5c799;
            border-radius: 0;
            table-layout: fixed;
            width: 100%;
            height: fit-content;
        }

        .mobile-shop-table-row {
            display: flex;
            border-bottom: 1px solid #e5c799;
            width: 100%;
            align-items: stretch;
        }

        .mobile-shop-table-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .mobile-shop-table-cell {
            flex: 0 0 auto;
            border-right: 1px solid #e5c799;
            padding: 12px 15px;
            min-width: 0;
            word-wrap: break-word;
            width: 50%;
            height: fit-content;
            display: flex;
            align-items: center;
        }


        .mobile-shop-table-cell:last-child {
            border-right: none;
        }

        .mobile-shop-table-cell a {
            color: #666666;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            display: block;
            transition: color 0.2s ease;
        }
        
        /* Mobile-specific table styling for small screens */
        @media (max-width: 759px) {
            .mobile-shop-table-cell {
                padding: 6px 8px !important;
                text-align: left;
                flex: 1;
                min-width: 0;
            }
            
            .mobile-shop-table-cell a {
                text-align: left;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
        }

        .mobile-shop-table-cell a:hover {
            color: #ab2930;
        }

        /* Mega menu styles */
        .mega-menu {
            display: none;
            position: absolute;
            top: calc(100% + 16px);
            left: 0;
            transform: none;
            background: #f9f5ed;
            min-width: auto;
            width: fit-content;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 0;
            padding: 10px;
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-top: 0;
        }

        /* Triangle bridge for mega menus */
        .mega-menu::before {
            content: '';
            position: absolute;
            top: -15px;
            left: var(--triangle-left, 20px);
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-bottom: 15px solid #f9f5ed;
            z-index: 1002;
        }

        /* Invisible hover area for mega menu triangles */
        .mega-menu::after {
            content: '';
            position: absolute;
            top: -25px;
            left: var(--hover-area-left, 20px);
            width: var(--hover-area-width, 50px);
            height: 25px;
            background: transparent;
            z-index: 1001;
        }

        .mega-menu-content {
            display: grid;
            gap: 30px;
            align-items: start;
        }

        /* Shop mega menu - 3 columns with wider text column */
        .mega-menu.shop .mega-menu-content {
            grid-template-columns: 1fr 1fr 2fr;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .mega-menu.shop {
            left: -255px;
        }

        /* About mega menu - 2 columns with wider text column */
        .mega-menu.about .mega-menu-content {
            grid-template-columns: 2fr 1fr;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .mega-menu.about {
            left: -170px;
        }

        /* Patio, Wine Club mega menus - single row */
        .mega-menu.patio .mega-menu-content,
        .mega-menu.wineclub .mega-menu-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        /* Patio and Wine Club section alignment */
        .mega-menu.patio .mega-menu-section,
        .mega-menu.wineclub .mega-menu-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .mega-menu.patio .mega-menu-image,
        .mega-menu.wineclub .mega-menu-image {
            margin: 0 auto 5px auto;
        }

        /* Locations mega menu - 4 columns horizontal */
        .mega-menu.locations .mega-menu-content {
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .mega-menu.locations {
            left: -665px;
        }

        .mega-menu-section {
            text-align: center;
        }

        .mega-menu-image {
            width: 262px;
            height: 175px;
            background-size: cover;
            background-position: center;
            border-radius: 0;
            margin-bottom: 5px;
            position: relative;
        }

        .mega-menu-image.pistachios {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-Shop-Pistachios.jpg');
        }

        .mega-menu-image.wines {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-Shop-Wines.jpg');
        }

        .mega-menu-image.happy-hour {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-Patio-Happy-Hour.jpg');
        }

        .mega-menu-image.private-events {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-Patio-Private-Events.jpg');
        }

        .mega-menu-image.about-heart {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-About-HOD.jpg');
        }

        .mega-menu-image.farm-tour {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-About-Farm-Tour.jpg');
        }

        .mega-menu-image.wine-club-join {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-Wine-Club-Join.jpg');
        }

        .mega-menu-image.wine-tasting {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-Wine-Club-Wine-Tasting.jpg');
        }

        .mega-menu-image.location-alamogordo {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-Location-Alamogordo.jpg');
        }

        .mega-menu-image.location-las-cruces {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-Location-Las-Cruces.jpg');
        }

        .mega-menu-image.location-mesilla {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-Location-Mesilla.jpg');
        }

        .mega-menu-image.store-locator {
            background-image: url('/uci_includes/hod-megamenu/assets/nav-images/Nav-Img-Find-Our-Products.jpg');
        }

        .mega-menu-title {
            color: #ab2930;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        /* Mega menu item link styles */
        .mega-menu-item-link {
            text-decoration: none;
            display: block;
            position: relative;
            padding: 0;
            border-radius: 0;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .mega-menu-item-link:hover {
            background-color: #ffffff;
            border: 1px solid #e5c799;
            box-shadow: none;
        }

        .mega-menu-item-link:hover .mega-menu-title {
            color: #ed1c24;
        }

        /* Category lists for Shop section */
        .mega-menu-categories {
            display: flex;
            gap: 0;
        }

        .mega-menu-category-list {
            list-style: none;
            padding: 0;
            margin: 0;
            flex: 1;
        }

         .mega-menu-category-list li {
             margin-bottom: 8px;
         }

         .mega-menu-category-list a {
             color: #231f20;
             text-decoration: none !important;
             font-size: 14px;
             font-weight: 400;
             transition: color 0.2s ease;
             display: block;
             padding: 4px 0;
         }

         .mega-menu-category-list a:hover {
             color: #ab2930;
         }

        /* Shop section category lists with borders */
        .mega-menu.shop .mega-menu-category-list {
            width: 262px;
            border: 1px solid #e5c799;
            border-radius: 0;
        }

         .mega-menu.shop .mega-menu-category-list li {
            margin-bottom: 0;
            border-bottom: 1px solid #e5c799;
        }

        .mega-menu.shop .mega-menu-category-list li:last-child {
            border-bottom: none;
        }

        .mega-menu.shop .mega-menu-category-list a {
            font-size: 16px;
            font-weight: 500;
            padding: 6px 7px;
            color: #666666;
            white-space: nowrap;
            text-align: left;
            text-decoration: none !important;
        }

        .mega-menu.shop .mega-menu-category-list a:hover {
            color: #ab2930;
        }

        /* Ensure no underlines on mega menu links */
        .mega-menu a,
        .mega-menu a:hover,
        .mega-menu a:focus,
        .mega-menu a:active,
        .mega-menu-category-list a,
        .mega-menu-category-list a:hover,
        .mega-menu-category-list a:focus,
        .mega-menu-category-list a:active {
            text-decoration: none !important;
        }





        /* About section - images on right side (desktop only) */
        .mega-menu.about .about-images {
            display: flex;
            flex-direction: row;
            gap: 15px;
            flex-wrap: nowrap;
        }

        .mega-menu.about .about-image-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* About section text links */
        .mega-menu.about .mega-menu-section:first-child {
            text-align: left;
            padding: 0;
        }

        .mega-menu.about .mega-menu-category-list {
            margin-top: 0;
            list-style: none;
            padding: 0;
            width: 262px;
            border: 1px solid #e5c799;
            border-radius: 0;
        }

        .mega-menu.about .mega-menu-category-list li {
            margin-bottom: 0;
            border-bottom: 1px solid #e5c799;
        }

        .mega-menu.about .mega-menu-category-list li:last-child {
            border-bottom: none;
        }

        .mega-menu.about .mega-menu-category-list a {
            font-size: 16px;
            font-weight: 500;
            padding: 6px 7px;
            color: #666666;
            text-decoration: none;
            transition: color 0.2s ease;
            white-space: nowrap;
            display: block;
        }

        .mega-menu.about .mega-menu-category-list a:hover {
            color: #ab2930;
        }

        .dropdown:hover .mega-menu {
            display: block;
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 1130px) {
            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .header-container {
                height: 60px;
                padding: 0;
            }

            .logo {
                margin-right: 0;
            }

            .logo img {
                height: 50px;
                margin: 7px 0 0 7px;
            }

            /* Hide Cart, Account, and Phone in mobile header */
            .nav-right .nav-item,
            .nav-right .phone {
                display: none;
            }

            /* Mobile cart and account icons in menu - stack and uppercase */
            .mobile-nav-item[href*="basket.asp"],
            .mobile-nav-item[href*="statuslogin.asp"] {
                flex-direction: column;
                text-transform: uppercase !important;
                font-size: 13.5px;
                font-weight: 400;
                padding: 13px 0;
            }

            .mobile-nav-item[href*="basket.asp"] i,
            .mobile-nav-item[href*="statuslogin.asp"] i {
                margin-right: 0;
                margin-bottom: 0px;
                font-size: 14px;
            }

            /* Keep phone number horizontal */
            .mobile-nav-item[href^="tel:"] {
                flex-direction: row;
                padding: 10px 0;
                margin-bottom: 0;
            }

            .mobile-nav-item[href^="tel:"] i {
                margin-right: 8px;
                margin-bottom: 0;
                font-size: 15.8px;
            }
        }

        /* Content to test header */
        .content {
            margin-top: 100px;
            padding: 40px 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .content h1 {
            color: #333;
            margin-bottom: 20px;
        }

        .content p {
            color: #666;
            margin-bottom: 15px;
        }

        /* ===== FOOTER STYLES ===== */
        .footer {
            background: #f9f5ed url('/uci_includes/hod-megamenu/assets/Beige-Heart-HOD.svg') no-repeat;
            background-position: right -53px top 140px;
            background-size: 30% auto;
            color: #231f20;
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }

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

        /* Red Bar */
        .footer-red-bar {
            background: #ab2930;
            height: 3px;
            width: 100%;
        }

        /* Main Footer Content */
        .footer-main {
            padding: 20px 0 40px 0;
        }

        /* Footer Top Row */
        .footer-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e5c799;
        }

        .footer-logo img {
            height: 55px;
            width: auto;
        }

        .footer-contact-social {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding-right: 10px;
        }

        .footer-contact a {
            color: #666666;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-contact a:hover {
            color: #ab2930;
        }

        .footer-contact i {
            font-size: 16px;
            color: #ab2930;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: #ab2930;
            color: #ffffff;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 6px;
        }

        .footer-social a:hover {
            background: #ed1c24;
            transform: translateY(-2px);
        }

        .footer-social i {
            font-size: 18px;
        }

        /* TripAdvisor Icon */
        .tripadvisor-icon {
            display: flex !important;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: #ab2930;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 6px;
        }

        .tripadvisor-icon:hover {
            background: #ed1c24;
            transform: translateY(-2px);
        }

        .tripadvisor-svg {
            width: 24px;
            height: 24px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .footer-hours a {
            color: #666666;
            font-size: 18px;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-hours a:hover {
            color: #ab2930;
        }

        .footer-hours i {
            font-size: 16px;
            color: #ab2930;
        }

        .footer-hours {
            display: flex;
            align-items: center;
            height: 100%;
            padding-left: 10px;
        }

        /* Footer Links */
        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 100px;
        }

        .footer-column h6 {
            color: #ab2930;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column li {
            margin-bottom: 8px;
        }

        .footer-column a {
            color: #666666;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: #ab2930;
        }

        /* Mobile Footer Styles */
        @media (max-width: 900px) {
            .footer-top {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                align-items: center;
            }

            .footer-contact-social {
                align-items: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

        @media (max-width: 800px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .footer-column a {
                font-size: 17px; /* Increased by 1px from 16px */
            }
        }

        @media (max-width: 380px) {
            .footer-links {
                grid-template-columns: 1fr !important;
                gap: 25px;
            }

            .footer-column h6 {
                font-size: 16px; /* Restored to original size */
                margin-bottom: 15px;
            }

            .footer-column a {
                font-size: 14px; /* Increased by 1px from 13px */
            }
        }

        .icon-text-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1px;
        }

        .icon-text {
            font-size: 12px;
            font-weight: 400;
            text-transform: uppercase;
        }

        .nav-item i {
            margin-right: 8px;
            width: 10px;
            text-align: center;
            color: #000;
            font-size: 14.8px;
            margin-top: 5px;
        }

        .phone i {
            margin-right: 8px;
            width: 14px;
            text-align: center;
            color: #000;
            font-size: 15.8px;
        }

        .mobile-nav-item i {
            margin-right: 12px;
            width: 18px;
            text-align: center;
            color: #000;
            font-size: 24.7px;
        }

        /* Mobile phone number font weight */
        .mobile-nav-item[href^="tel:"] {
            font-weight: 380;
        }

        /* Override existing mobile footer blue background */
        #footer.footerbgcolor {
            background-color: transparent !important;
        }

        /* Mini cart bar styles */
        .hod-mini-cart-bar {
            display: none;
            background: #f0e5d1;
            border-top: 1px solid #e5c799;
            border-bottom: 1px solid #e5c799;
        }
        .hod-mini-cart-inner {
            max-width: 1430px;
            margin: 0 auto;
            padding: 8px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .hod-mini-cart-left {
            flex: 1;
        }
        .hod-mini-cart-right {
            flex: 0 0 auto;
        }
        .hod-mini-cart-heading {
            margin: 0;
            color: #231f20;
            font-size: 16px;
            font-weight: 600;
        }
        .hod-mini-cart-btn {
            background: transparent;
            color: #ab2930;
            text-decoration: none;
            padding: 6px 16px;
            border: 2px solid #ab2930;
            border-radius: 3px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            transition: all 0.3s ease;
        }
        .hod-mini-cart-btn:hover {
            background: #ab2930;
            color: #fff;
            text-decoration: none;
            border-color: #ab2930;
        }
        .hod-mini-cart-btn:hover .hod-mini-cart-badge {
            background: #333333;
        }
        .hod-mini-cart-badge {
            background: #ed1c24;
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            min-width: 18px;
            height: 18px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
        }
        @media (max-width: 1130px) {
            .hod-mini-cart-bar {
                display: block;
            }
        }