        * {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* Restaurant card styles */
        .restaurant-name {
            font-size: 24px;
            font-weight: 600; /* Manrope SemiBold */
            color: #2C4A3E; /* Deep Forest */
            margin-bottom: 8px;
        }
        
        .location-line {
            font-size: 14px;
            font-weight: 400; /* Manrope Regular */
            color: #7A8A85; /* Secondary text - warm gray */
            margin-bottom: 12px;
        }
        
        .address-line {
            font-size: 14px;
            font-weight: 400; /* Manrope Regular */
            color: #9AA5A0; /* Tertiary text - lightest warm gray */
            margin-bottom: 16px;
        }
        
        .card-body {
            padding: 16px 24px 24px 24px; /* Reduced top padding */
        }
        
        /* Expandable notes */
        .notes-container {
            margin-bottom: 12px;
        }
        
        .notes-text {
            font-size: 14px;
            color: #5A6B66; /* Body text - warm gray-green */
            line-height: 1.5;
            margin-bottom: 4px;
        }
        
        .notes-text.collapsed {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .notes-toggle {
            font-size: 13px;
            color: #6B8F71; /* Sage Green - new primary */
            cursor: pointer;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: opacity 0.2s ease;
        }
        
        .notes-toggle:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        
        /* Main brand color */
        .brand-green {
            background-color: #6B8F71; /* Sage Green */
        }
        
        /* Filter pill styles */
        .filter-pill {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600; /* Inter SemiBold */
            font-size: 16px;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            white-space: normal;
            word-wrap: break-word;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
        
        .filter-pill-selected {
            background-color: #6B8F71; /* Sage Green */
            color: white;
        }
        
        .filter-pill-selected-subcategory {
            background-color: #E8F0EA; /* Light sage */
            color: #4A6B5E; /* Forest green */
        }
        
        .filter-pill-unselected {
            background-color: white;
            color: #5A6B66; /* Warm body text */
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08); /* Crisper shadow */
        }
        
        .filter-pill-unselected:hover {
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.10);
            color: #374151;
        }
        
        /* Three-tier tag system for restaurant cards */
        .tag-base {
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
            line-height: 16px;
        }
        
        /* Tier 1: Cuisine Category (Primary - most important) */
        .tag-cuisine-category {
            background-color: #6B8F71; /* Sage Green */
            color: white;
        }
        
        /* Tier 2: Cuisine Subcategory (Secondary - detail) */
        .tag-cuisine-subcategory {
            background-color: #E8F0EA; /* Light sage */
            color: #4A6B5E; /* Forest green */
        }
        
        /* Tier 3: Dining Style (Tertiary - context) */
        .tag-dining-style {
            background-color: #D4C4B0; /* Warm beige/sandstone */
            color: #5A4A3A; /* Warm brown */
        }
        
        /* Special Tags (Featured - gold/amber badges) */
        .tag-special {
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); /* Gold gradient */
            color: white;
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
        }
        
        .special-tags-row {
            margin-bottom: 8px;
        }
        
        /* Clickable tags */
        .tag-clickable {
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .tag-clickable:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
            opacity: 0.9;
        }
        
        .location-clickable {
            cursor: pointer;
            text-decoration: underline;
            text-decoration-style: dotted;
            text-decoration-color: currentColor;
            transition: all 0.2s ease;
        }
        
        .location-clickable:hover {
            opacity: 0.7;
            text-decoration-style: solid;
        }
        
        /* Full-width justified buttons - grid with flexible columns */
        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(max(100px, min(150px, 100%)), 1fr));
            gap: 12px;
            width: 100%;
            align-items: stretch; /* Ensures all grid items have same height */
        }
        
        .filter-pill {
            padding: 12px 16px;
            border-radius: 8px;
            font-weight: 600; /* Inter SemiBold */
            font-size: 16px;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            white-space: normal;
            word-break: break-word;
            hyphens: auto;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            overflow-wrap: break-word;
        }
        
        /* Responsive: tighter on mobile */
        @media (max-width: 640px) {
            .filter-grid {
                grid-template-columns: repeat(auto-fit, minmax(max(90px, min(140px, 100%)), 1fr));
                gap: 8px;
            }
            
            .filter-pill {
                padding: 8px 12px;
                font-size: 13px;
            }
        }
        
        /* Back button - matches filter pill sizing */
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background-color: white;
            color: #5A6B66;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
            text-decoration: none;
            line-height: 1; /* Match cuisine-badge height */
        }
        
        .back-button:hover {
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.10);
            color: #374151;
        }
        
        @media (max-width: 640px) {
            .back-button {
                padding: 8px 12px;
                font-size: 13px;
            }
        }
        
        /* Selected cuisine badge - matches filter pill sizing */
        .cuisine-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background-color: #6B8F71; /* Sage green */
            color: white;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            line-height: 1; /* Constrain line height to prevent checkmark expansion */
        }
        
        @media (max-width: 640px) {
            .cuisine-badge {
                padding: 8px 12px;
                font-size: 13px;
            }
        }
        
        /* Search bar container */
        .search-container {
            position: relative;
            margin-bottom: 2rem;
        }

        /* Wrapper for search input */
        .search-wrapper {
            position: relative;
            width: 100%;
        }

        /* Narrower search bar on desktop - centered */
        @media (min-width: 768px) {
            .search-wrapper {
                width: 50%;
                max-width: 600px;
                margin: 0 auto;
            }
        }
        
        .search-input {
            width: 100%;
            padding: 10px 20px 10px 50px;
            font-size: 16px;
            border: 1px solid #6B8F71;
            border-radius: 50px;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.2s ease;
        }

        .search-input:focus {
            outline: none;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        /* When autocomplete is open, round only top of search input and remove bottom border */
        .search-wrapper:has(.autocomplete-container) .search-input {
            border-radius: 25px 25px 0 0;
            border-bottom: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 20px;
        }
        
        .search-clear-btn {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 24px;
            color: #9ca3af;
            cursor: pointer;
            padding: 5px 10px;
            line-height: 1;
            transition: color 0.2s ease;
        }
        
        .search-clear-btn:hover {
            color: rgb(52, 124, 84);
        }
        
        /* Autocomplete */
        .autocomplete-container {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 0 0 25px 25px;
            max-height: 400px;
            overflow-y: auto;
            z-index: 1000;
            border: 1px solid #6B8F71;
            border-top: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-top: -1px;
            border-top: 1px solid #e5e7eb;
        }
        
        .autocomplete-item {
            padding: 12px 20px;
            cursor: pointer;
            transition: background-color 0.15s ease;
            border-bottom: 1px solid #f3f4f6;
        }
        
        .autocomplete-item:last-child {
            border-bottom: none;
        }
        
        .autocomplete-item:hover,
        .autocomplete-item.selected {
            background-color: #f3f4f6;
        }
        
        .autocomplete-item-title {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 2px;
        }
        
        .autocomplete-item-subtitle {
            font-size: 13px;
            color: #6b7280;
        }
        
        /* Collapsible cuisine filter button - pill shape matching search bar */
        .cuisine-filter-toggle {
            width: 100%;
            padding: 10px 24px;
            background: white;
            border: 1px solid #6B8F71;
            border-radius: 50px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            gap: 12px;
            font-size: 18px;
            font-weight: 600;
            color: #6B8F71;
            margin-top: 1rem;
        }

        /* Smaller font size on mobile */
        @media (max-width: 640px) {
            .cuisine-filter-toggle {
                font-size: 16px;
            }
        }

        /* Match search bar width on desktop - centered */
        @media (min-width: 768px) {
            .cuisine-filter-toggle {
                width: 50%;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
                margin-top: 1rem;
            }
        }

        /* When expanded, round only top corners and remove bottom border */
        .cuisine-filter-toggle.expanded {
            border-radius: 25px 25px 0 0;
            border-bottom: none;
            box-shadow: none;
        }

        .cuisine-filter-toggle:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        /* Don't show hover shadow when expanded */
        .cuisine-filter-toggle.expanded:hover {
            box-shadow: none;
        }

        /* Arrow styling */
        .cuisine-filter-toggle .arrow {
            font-size: 16px;
            color: #6B8F71;
        }

        .cuisine-filter-container {
            background: white;
            border-radius: 0 0 25px 25px;
            border: 1px solid #6B8F71;
            border-top: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-top: 0;
            transition: all 0.3s ease;
        }

        /* Match search bar width on desktop - centered */
        @media (min-width: 768px) {
            .cuisine-filter-container {
                width: 50%;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        .cuisine-filter-content {
            padding: 20px;
            border-top: 1px solid #E5E7EB;
        }
        
        /* Button styles */
        .btn-website {
            background-color: #6B8F71; /* Sage Green */
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500; /* Manrope Medium */
            font-size: 14px;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }
        
        .btn-website:hover {
            background-color: #5A7A60; /* Darker sage on hover */
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(107, 143, 113, 0.3);
        }
        
        .btn-menu {
            background-color: white;
            color: #3D5A4F; /* Medium forest for button text */
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500; /* Manrope Medium */
            font-size: 14px;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08); /* Crisper shadow */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            white-space: nowrap;
        }
        
        .btn-menu:hover {
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.10); /* Lifted but crisp */
            transform: translateY(-1px);
        }
        
        /* Button container - responsive flex layout */
        .button-container {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        /* Mobile: buttons flex to full width ONLY when 2+ buttons */
        @media (max-width: 768px) {
            .button-container.two-buttons,
            .button-container.three-buttons {
                display: flex;
                flex-wrap: nowrap;
            }
            
            .button-container.two-buttons a,
            .button-container.three-buttons a {
                flex: 1;
                min-width: 0;
                text-align: center;
                justify-content: center;
            }
            
            /* Smaller text and padding for 3 buttons to prevent wrapping */
            .button-container.three-buttons a {
                font-size: 12px;
                padding: 10px 12px;
                white-space: nowrap;
            }
        }
        
        /* Desktop: 3 buttons on same row with equal width */
        @media (min-width: 769px) {
            .button-container.three-buttons {
                display: flex;
                gap: 8px;
            }
            
            .button-container.three-buttons a {
                flex: 1;
                text-align: center;
                justify-content: center;
                white-space: nowrap;
            }
        }
        
        /* Footer (legacy) */
        .footer {
            text-align: center;
            padding: 32px 20px 40px;
            margin-top: 0;
            width: 100%;
        }

        .footer a {
            color: #7A8A85;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer a:hover {
            color: #6B8F71;
            text-decoration: underline;
        }

        /* Site Footer */
        .site-footer {
            border-top: 1px solid #d1d5db;
            margin-top: 48px;
            padding: 24px 20px;
            width: 100%;
        }

        .site-footer-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .site-footer-inner {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 16px;
            }
        }

        /* Brand */
        .site-footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .site-footer-logo {
            font-size: 1.5rem;
        }

        .site-footer-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: #374151;
        }

        .site-footer-tagline {
            font-size: 0.75rem;
            color: #9CA3AF;
        }

        /* Nav links */
        .site-footer-nav {
            display: flex;
            gap: 20px;
        }

        .site-footer-nav a {
            color: #7A8A85;
            font-size: 0.85rem;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .site-footer-nav a:hover {
            color: #6B8F71;
        }

        /* Actions */
        .site-footer-actions {
            display: flex;
            align-items: center;
        }

        .site-footer-feedback-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: transparent;
            color: #7A8A85;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .site-footer-feedback-btn:hover {
            color: #6B8F71;
            border-color: #6B8F71;
            background: rgba(107, 143, 113, 0.05);
        }
        
        /* Coffee promo card */
        .coffee-promo-card {
            background: linear-gradient(135deg, #6B8F71 0%, #4A6B5E 100%) !important; /* Sage to forest */
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex !important;
            flex-direction: column;
            cursor: pointer;
            text-decoration: none;
            color: white;
            min-height: 280px;
        }
        
        @media (min-width: 768px) {
            .coffee-promo-card {
                min-height: 400px;
            }
        }
        
        .coffee-promo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(107, 143, 113, 0.4);
        }
        
        .coffee-promo-content {
            padding: 25px;
            text-align: center;
            color: white;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 8px;
        }
        
        .coffee-promo-title {
            font-size: 1.6em;
            font-weight: 700;
            margin: 0;
            color: white;
        }
        
        .coffee-promo-button {
            display: inline-block;
            background: white;
            color: #6B8F71; /* Sage Green */
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1em;
            margin: 4px auto;
            transition: all 0.2s ease;
        }
        
        .coffee-promo-button:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .coffee-promo-text {
            margin-top: 4px;
        }
        
        .coffee-promo-text p {
            margin: 0;
            color: white;
        }
        
        .coffee-promo-text p:first-child {
            font-size: 0.95em;
            margin-bottom: 2px;
        }
        
        .coffee-promo-text p:last-child {
            font-size: 0.8em;
            opacity: 0.9;
        }
        
        /* Happy Hour promo card */
        .happyhour-promo-card {
            background: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex !important;
            flex-direction: column;
            min-height: 280px;
        }
        
        @media (min-width: 768px) {
            .happyhour-promo-card {
                min-height: 400px;
            }
        }
        
        .happyhour-promo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 154, 86, 0.4);
        }
        
        .happyhour-promo-content {
            padding: 25px;
            text-align: center;
            color: white;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 8px;
        }
        
        .happyhour-promo-emoji {
            font-size: 2.5em;
            margin: 0;
        }
        
        .happyhour-promo-title {
            font-size: 1.6em;
            font-weight: 700;
            margin: 0;
            color: white;
        }
        
        .happyhour-promo-subtitle {
            font-size: 1.1em;
            font-weight: 600;
            color: white;
            margin: 0;
        }
        
        .happyhour-promo-description {
            font-size: 0.95em;
            opacity: 0.9;
            color: white;
            margin: 0;
        }
        
        .happyhour-promo-button {
            display: inline-block;
            background: white;
            color: #ff6a88;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 600;
            margin: 8px auto 0;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .happyhour-promo-button:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        /* Event Promo Card */
        .event-promo-card {
            display: block;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            cursor: pointer;
            min-height: 280px;
        }

        @media (min-width: 768px) {
            .event-promo-card {
                min-height: 400px;
            }
        }

        .event-promo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        }

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

        /* Floating Feedback Button */
        .feedback-button {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 40;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #6B8F71; /* Sage Green */
            padding: 12px; /* Reduced padding for tighter circle */
            border-radius: 50%; /* Changed from 50px to 50% for perfect circle */
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 48px; /* Ensures perfect circle on mobile */
            min-height: 48px;
            font-size: 1em;
        }
        
        .feedback-button:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .feedback-button-emoji {
            width: 28px; /* Increased from 20px */
            height: 28px; /* Increased from 20px */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feedback-button-emoji img {
            width: 100%;
            height: 100%;
            /* Darker, bolder Sage Green filter */
            filter: brightness(0) saturate(100%) invert(54%) sepia(12%) saturate(1267%) hue-rotate(88deg) brightness(93%) contrast(88%);
        }
        
        .feedback-button-text {
            display: none;
        }
        
        @media (min-width: 768px) {
            .feedback-button {
                border-radius: 50px; /* Pill shape on desktop when text shows */
                padding: 14px 20px; /* More horizontal padding for text */
            }
            
            .feedback-button-text {
                display: inline;
            }
        }
        
        /* Feedback Modal */
        .feedback-modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }
        
        .feedback-modal-content {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            width: 100%;
            max-width: 672px;
            max-height: 90vh;
            overflow: hidden;
            position: relative;
        }
        
        .feedback-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 10;
            background: #f3f4f6;
            color: #4b5563;
            border-radius: 9999px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.25em;
            transition: background 0.2s;
        }
        
        .feedback-modal-close:hover {
            background: #e5e7eb;
        }
        
        .feedback-modal-iframe {
            width: 100%;
            min-height: 500px;
            max-height: calc(90vh - 100px);
            border: none;
        }
        
        /* Footer Contact Section */
        .footer-contact {
            text-align: center;
            padding: 32px 20px;
        }
        
        .footer-contact-text {
            color: #7A8A85; /* Warm gray */
            font-size: 1em;
            margin-bottom: 16px;
        }
        
        .footer-contact-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            border: 1px solid #6B8F71; /* Sage Green thin border */
            color: #6B8F71; /* Sage Green */
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 1em;
            text-decoration: none;
        }
        
        .footer-contact-button:hover {
            background: #f9fafb;
            border-color: #6B8F71; /* Sage Green */
            transform: scale(1.05);
        }
        
        .footer-contact-button img {
            width: 20px;
            height: 20px;
        }
        
        /* Hide floating button when modal is open */
        .modal-open .feedback-button {
            display: none !important;
        }
        
        /* Compact filter select */
        .compact-select {
            padding: 10px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 14px;
            color: #374151;
            background: white;
            cursor: pointer;
            transition: border-color 0.2s ease;
            font-weight: 500;
        }
        
        .compact-select:focus {
            outline: none;
            border-color: rgb(52, 124, 84);
        }
        
        .compact-select:hover {
            border-color: #d1d5db;
        }
        
        /* Section headers */
        .section-label {
            font-size: 14px;
            font-weight: 600; /* Inter SemiBold */
            color: #6b7280;
            margin-bottom: 12px;
            display: block;
        }
        
        /* Body text default */
        body, .location-line, .address-line, .autocomplete-item-title {
            font-weight: 400; /* Inter Regular */
        }
        
        /* Fade in animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeIn 0.3s ease-out;
        }
        
        /* Loading bar */
        .loading-bar-container {
            width: 100%;
            max-width: 400px;
            height: 4px;
            background-color: #E8F0EA;
            border-radius: 2px;
            overflow: hidden;
            margin: 16px auto 0;
        }
        
        .loading-bar {
            height: 100%;
            background: linear-gradient(90deg, #6B8F71 0%, #5A7A60 100%);
            border-radius: 2px;
            animation: loadingProgress 2s ease-in-out;
        }
        
        @keyframes loadingProgress {
            0% {
                width: 0%;
            }
            50% {
                width: 70%;
            }
            100% {
                width: 100%;
            }
        }
