        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Header Styles */
        .site-header {
            background: #14283C;
            border-bottom: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            height: 50px;
        }
        
        .header-content {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 0 30px;
            position: relative;
        }
        
        .header-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .header-logo-icon {
            height: 36px;
            width: auto;
        }
        
        .header-nav {
            display: flex;
            align-items: center;
            gap: 50px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .header-nav-link {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.3px;
            transition: color 0.2s ease;
        }
        
        .header-nav-link:hover {
            color: #ffffff;
        }
        
        .header-nav-link.active {
            color: #ffffff;
            font-weight: 500;
        }
        
        .header-logo-text {
            font-size: 20px;
            font-weight: 300;
            color: #ffffff;
            text-decoration: none;
            flex-shrink: 0;
        }
        
        .header-logo-text a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.2s ease;
            font-weight: 300;
        }
        
        .header-logo-text a:hover {
            color: #6FD17A;
        }
        
        .header-tagline {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.3px;
            margin: 0 20px;
        }
        
        .header-tagline span {
            display: inline-block;
            max-width: 100%;
        }
        
        .header-title {
            display: flex;
            align-items: center;
            gap: 10px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .header-icon {
            flex-shrink: 0;
        }
        
        .header-title-text {
            font-size: 20px;
            font-weight: 700;
            color: #6FD17A;
            letter-spacing: -0.3px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            position: relative;
            z-index: 2;
        }
        
        .logo-icon {
            width: 45px;
            height: 45px;
            position: relative;
        }
        
        .logo-pin {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .logo-pin-outer {
            fill: #14283C;
        }
        
        .logo-pin-inner {
            fill: #f0f0f0;
        }
        
        .logo-green {
            fill: #6FD17A;
        }
        
        .logo-flag {
            fill: #E74C3C;
        }
        
        .logo-pole {
            fill: #333;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
        
        .logo-main {
            font-size: 22px;
            font-weight: 700;
            color: #14283C;
            letter-spacing: -0.5px;
        }
        
        .logo-sub {
            font-size: 10px;
            font-weight: 600;
            color: #14283C;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 2px;
        }
        
        .main-nav {
            display: flex;
            gap: 30px;
            align-items: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .nav-link {
            color: #14283C;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s ease;
            position: relative;
            padding: 18px 0;
        }
        
        .nav-link:hover {
            color: #14283C;
        }
        
        .nav-link.active {
            color: #14283C;
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #14283C;
        }
        
        /* Remove all button underlines globally */
        button {
            text-decoration: none !important;
            border-bottom: none !important;
        }
        
        button:hover,
        button:focus,
        button:active {
            text-decoration: none !important;
            border-bottom: none !important;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(to bottom, #e8ebe8 0%, #c4cdc4 50%, #8a9a8a 100%);
            min-height: 100vh;
            padding-top: 50px;
        }
        
        .wrapper {
            display: flex;
            gap: 0;
            width: calc(100% - 40px);
            max-width: 1800px;
            height: calc(100vh - 90px);
            min-height: 650px;
            position: relative;
            margin: 20px 20px;
        }
        
        /* Resizable divider - hidden since using fixed layout */
        .resizer {
            width: 0px;
            background: transparent;
            cursor: default;
            flex-shrink: 0;
            position: relative;
            display: none;
        }
        
        .resizer:hover {
            background: linear-gradient(90deg, #6FD17A 0%, #7FE18A 50%, #6FD17A 100%);
        }
        
        .resizer::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 50px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            pointer-events: none;
            transition: background 0.2s ease;
        }
        
        .resizer:hover::after {
            background: rgba(0, 0, 0, 0.7);
        }
        
        .resizer::before {
            content: '⋮';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 18px;
            pointer-events: none;
            z-index: 1;
        }

        .map-container {
            flex: 1 1 auto;
            min-width: 350px;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        /* Category Panel Footer with Control Buttons */
        .category-panel-footer {
            display: none; /* Hidden - buttons moved to map */
        }
        
        .filter-control-btn {
            flex: 1;
            background: white;
            border: 1.5px solid #14283C;
            color: #14283C;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        
        .filter-control-btn:hover {
            background: #14283C;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(45, 80, 22, 0.3);
        }
        
        /* Category Panel - Left side */
        .category-panel {
            flex: 0 0 260px;
            min-width: 260px;
            max-width: 260px;
            height: 100%;
            background: white;
            border-radius: 16px 0 0 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            z-index: 100;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .category-panel-header {
            padding: 12px;
            border-bottom: none;
            background: #14283C;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .category-panel-header h3 {
            margin: 0;
            font-size: 15px;
            font-weight: 700;
            color: #6FD17A;
            display: none;
        }
        
        .mobile-panel-title {
            display: none;
        }
        
        /* Course Type Toggles */
        .course-type-toggles {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        
        .toggle-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2px 0;
        }
        
        .toggle-text {
            font-size: 10px;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.3px;
        }
        
        /* Toggle category separators */
        .toggle-section-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            margin: 6px 0;
        }
        
        /* Category-specific toggle slider colors when checked */
        /* Golf courses use default green */
        
        .toggle-row.restaurants .toggle-switch input:checked + .toggle-slider {
            background-color: #8BA5B5;
        }
        
        .toggle-row.golf-houses .toggle-switch input:checked + .toggle-slider {
            background-color: #D45A5A;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 28px;
            height: 16px;
            flex-shrink: 0;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .3s;
            border-radius: 16px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 10px;
            width: 10px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .3s;
            border-radius: 50%;
        }
        
        .toggle-switch input:checked + .toggle-slider {
            background-color: #6FD17A;
        }
        
        .toggle-switch input:checked + .toggle-slider:before {
            transform: translateX(12px);
        }
        
        .category-accordion {
            overflow-y: auto;
            flex: 1;
        }
        
        /* Accordion Item */
        .accordion-item {
            border-bottom: 1px solid #e0e0e0;
        }
        
        .accordion-item:last-child {
            border-bottom: none;
        }
        
        .accordion-header {
            width: 100%;
            padding: 10px 12px;
            background: white;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: left;
        }
        
        .accordion-header:hover {
            background: #f8f8f8;
        }
        
        .accordion-header.active {
            background: #f0f4f0;
        }
        
        /* Round bottom corners of last accordion when closed */
        .accordion-item:last-child .accordion-header:not(.active) {
            border-radius: 0 0 12px 12px;
        }
        
        /* When last accordion is open, round the bottom of its content */
        .accordion-item:last-child .accordion-content {
            border-radius: 0 0 12px 12px;
            overflow: hidden;
        }
        
        .accordion-item:last-child .course-item:last-child {
            border-radius: 0 0 12px 12px;
        }
        
        .accordion-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #0d1f2d;
        }
        
        .accordion-icon {
            font-size: 17px;
        }
        
        .accordion-toggle {
            font-size: 22px;
            font-weight: 300;
            color: #666;
            transition: transform 0.2s ease;
        }
        
        .accordion-header.active .accordion-toggle {
            transform: rotate(45deg);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #fafafa;
        }
        
        .accordion-content.open {
            max-height: none;
            max-height: calc(100vh - 200px);
            overflow-y: auto;
        }
        
        /* Accordion Controls (Select All / Remove All) */
        .accordion-controls {
            display: flex;
            gap: 6px;
            padding: 5px 10px;
            background: #f0f0f0;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .select-all-btn,
        .remove-all-btn {
            flex: 1;
            padding: 3px 6px;
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
        }
        
        .select-all-btn {
            background: #14283C;
            color: white;
        }
        
        .select-all-btn:hover {
            background: #1d3a52;
            transform: translateY(-1px);
        }
        
        .remove-all-btn {
            background: white;
            color: #666;
            border: 1px solid #d0d0d0;
        }
        
        .remove-all-btn:hover {
            background: #f5f5f5;
            border-color: #14283C;
            color: #14283C;
            transform: translateY(-1px);
        }
        
        .course-item {
            width: 100%;
            padding: 6px 12px 6px 10px;
            background: transparent;
            border: none;
            text-align: left;
            font-size: 12px;
            color: #0d1f2d;
            cursor: pointer;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
            display: flex;
            align-items: center;
            gap: 9px;
        }
        
        .course-item:hover {
            background: white;
            color: #14283C;
            border-left-color: #6FD17A;
        }
        
        .course-item input[type="checkbox"] {
            width: 15px;
            height: 15px;
            cursor: pointer;
            accent-color: #6FD17A;
            flex-shrink: 0;
            border-radius: 3px;
        }
        
        .course-item-label {
            flex: 1;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .category-panel {
                flex: 0 0 240px;
                min-width: 240px;
            }
        }
        
        @media (max-width: 1000px) {
            html, body {
                overflow-x: hidden;
                max-width: 100%;
            }
            
            .wrapper {
                width: 100% !important;
                margin: 0 !important;
                padding: 0 15px 20px 15px !important;
                box-sizing: border-box !important;
            }
            
            .category-panel {
                min-width: 0 !important;
                max-width: none !important;
            }
            
            .map-container {
                min-width: 0 !important;
                max-width: none !important;
            }
            
            .info-widget {
                min-width: 0 !important;
                max-width: none !important;
            }
        }
        
        @media (max-width: 900px) {
            html, body {
                overflow-x: hidden;
                max-width: 100%;
            }
            
            .wrapper {
                flex-direction: column;
                height: calc(100vh - 70px);
                width: 100% !important;
                margin: 0 !important;
                padding: 0 15px 20px 15px !important;
                box-sizing: border-box !important;
                overflow-x: hidden !important;
            }
            
            .category-panel {
                order: 1;
                flex: 0 0 auto;
                min-width: 0 !important;
                max-width: none !important;
                max-height: 200px;
                border-radius: 12px !important;
                overflow-y: auto;
            }
            
            .category-panel-header {
                position: sticky;
                top: 0;
                background: #f8f8f8;
                z-index: 10;
            }
            
            .map-container {
                order: 2;
                border-radius: 12px !important;
                flex: 1;
                min-width: 0 !important;
                min-height: 300px;
            }
            
            .info-widget {
                order: 3;
                border-radius: 12px !important;
                flex: 0 0 auto;
                min-width: 0 !important;
                max-width: none !important;
                max-height: 250px;
                min-height: 0;
            }
            
            .resizer {
                display: none;
            }
        }
        
        #map {
            flex: 1;
            width: 100%;
            height: 100%;
        }

        .controls {
            background: rgba(255, 255, 255, 0.98);
            padding: 8px 16px;
            display: flex;
            gap: 10px;
            justify-content: center;
            align-items: center;
            border-bottom: 1px solid #e0e0e0;
            flex-wrap: wrap;
        }
        
        /* Distant courses banner */
        .distant-courses-banner {
            display: flex;
            gap: 6px;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .distant-course-btn {
            background: rgba(45, 80, 22, 0.9);
            color: white;
            border: 2px solid #6FD17A;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            text-decoration: none !important;
            border-bottom: none !important;
            position: relative;
            animation: pulse 2s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(74, 124, 44, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(74, 124, 44, 0);
            }
        }
        
        @keyframes pulseGray {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(100, 100, 100, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(100, 100, 100, 0);
            }
        }
        
        @keyframes pulseBlack {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(30, 30, 30, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(30, 30, 30, 0);
            }
        }
        
        @keyframes pulseNavy {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(20, 40, 60, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(20, 40, 60, 0);
            }
        }
        
        .distant-course-btn:hover,
        .distant-course-btn:focus,
        .distant-course-btn:active {
            text-decoration: none !important;
            border-bottom: none !important;
            background: rgba(74, 124, 44, 1);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 80, 22, 0.4);
            animation: none;
        }
        
        /* Add arrow only to zoom buttons (Legacy, Tobacco Road, Tot Hill) */
        #legacy::before,
        #tobacco-road::before,
        #tot-hill::before {
            content: '→';
            margin-right: 4px;
            font-weight: bold;
        }

        .filter-btn {
            padding: 4px 10px;
            border: 1px solid #666;
            background: rgba(100, 100, 100, 0.9);
            color: white;
            font-size: 12px;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-decoration: none !important;
            border-bottom: 1px solid #666 !important;
            position: relative;
            animation: pulseGray 2s ease-in-out infinite;
        }
        
        .filter-btn:hover {
            animation: none;
        }

        .filter-btn:hover,
        .filter-btn:focus,
        .filter-btn:active {
            text-decoration: none !important;
        }

        .filter-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
            animation: none;
        }

        .filter-btn.active {
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
            animation: none;
        }
        
        /* Best Public Play - green (matching distant course buttons) */
        button[data-filter="public"] {
            background: rgba(45, 80, 22, 0.9);
            border-color: #6FD17A;
            animation: pulse 2s ease-in-out infinite;
        }
        
        button[data-filter="public"]:hover,
        button[data-filter="public"].active {
            background: rgba(74, 124, 44, 1);
            animation: none;
        }
        
        /* Private - black */
        button[data-filter="private"] {
            background: rgba(30, 30, 30, 0.9);
            border-color: #333;
            animation: pulseBlack 2s ease-in-out infinite;
        }
        
        button[data-filter="private"]:hover,
        button[data-filter="private"].active {
            background: rgba(20, 20, 20, 1);
            animation: none;
        }
        
        /* Par 3 / Short Games - same green as public and distant buttons */
        button[data-filter="par3"] {
            background: rgba(45, 80, 22, 0.9);
            border-color: #6FD17A;
            animation: pulse 2s ease-in-out infinite;
        }
        
        button[data-filter="par3"]:hover,
        button[data-filter="par3"].active {
            background: rgba(74, 124, 44, 1);
            animation: none;
        }
        
        /* Local Food & Drinks - navy blue from logo */
        button[data-filter="restaurants"] {
            background: rgba(20, 40, 60, 0.9);
            border-color: #0d1f2d;
            animation: pulseNavy 2s ease-in-out infinite;
        }
        
        button[data-filter="restaurants"]:hover,
        button[data-filter="restaurants"].active {
            background: rgba(25, 50, 75, 1);
            animation: none;
        }

        /* Custom marker styles - all markers match home style */
        .custom-marker {
            background: rgba(45, 80, 22, 1);
            color: white;
            border: 1px solid #6FD17A;
            border-radius: 10px;
            padding: 2px 6px;
            font-size: 9px;
            font-weight: 700;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            display: inline-block;
            width: fit-content;
            position: relative;
        }
        
        .marker-label {
            white-space: nowrap;
            width: fit-content;
        }
        
        /* Remove underlines from all text in markers */
        .custom-marker strong,
        .custom-marker div,
        .marker-label,
        .marker-label strong {
            text-decoration: none !important;
            border-bottom: none !important;
        }

        .custom-marker:hover {
            background: rgba(45, 80, 22, 0.3);
            border-color: #14283C;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .custom-marker.home {
            background: #D45A5A;
            color: #ffffff;
            border-color: #D45A5A;
            font-size: 9px;
            font-weight: 700;
        }

        .custom-marker.home:hover {
            background: #E06B6B;
            border-color: #E06B6B;
        }
        
        /* Home Preview Tooltip */
        .home-preview-tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-bottom: 6px;
            background: white;
            border-radius: 6px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
            width: 96px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease, visibility 0.2s ease;
            z-index: 1000;
            pointer-events: none;
        }
        
        .custom-marker.home:hover .home-preview-tooltip {
            opacity: 1;
            visibility: visible;
        }
        
        .home-preview-image {
            width: 100%;
            height: 54px;
            object-fit: cover;
        }
        
        .home-preview-content {
            padding: 4px 5px;
        }
        
        .home-preview-title {
            font-size: 8px;
            font-weight: 700;
            color: #14283C;
            margin: 0 0 1px 0;
        }
        
        .home-preview-desc {
            display: none;
        }
        
        .home-preview-details {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            font-size: 7px;
            color: #333;
        }
        
        .home-preview-rating {
            display: flex;
            align-items: center;
            gap: 1px;
            font-weight: 600;
        }
        
        .home-preview-rating::before {
            content: '★';
            color: #FF5A5F;
            font-size: 7px;
        }
        
        .home-preview-link {
            display: none;
        }
        
        /* Restaurant markers */
        .custom-marker.restaurant {
            background: rgba(22, 50, 84, 0.85);
            border-color: rgba(15, 35, 64, 0.85);
        }
        
        .custom-marker.restaurant:hover {
            background: rgba(29, 64, 112, 0.9);
            border-color: rgba(22, 50, 84, 0.9);
        }
        
        /* Par 3 / Short course markers */
        .custom-marker.par3 {
            background: #353535;
            border-color: #454545;
        }
        
        .custom-marker.par3:hover {
            background: #454545;
            border-color: #555555;
        }

        .leaflet-div-icon {
            background: transparent;
            border: none;
        }
        
        /* Map control buttons - Desktop (bottom left, horizontal, with text) */
        .map-controls {
            position: absolute;
            bottom: 10px;
            left: 10px;
            display: flex;
            flex-direction: row;
            gap: 6px;
            z-index: 400;
        }
        
        .map-controls button {
            padding: 6px 10px;
            font-size: 10px;
            font-weight: 600;
            background: white;
            border: 2px solid rgba(0,0,0,0.2);
            border-radius: 4px;
            cursor: pointer;
            color: #333;
            transition: all 0.1s;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        
        .map-controls button:hover {
            background: #f4f4f4;
        }
        
        .map-controls button:active {
            background: #e0e0e0;
        }

        /* Awaiting Inputs Overlay - Instruction panel */
        .awaiting-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 400;
            transition: opacity 0.4s ease;
            text-align: center;
            cursor: pointer;
        }
        
        .awaiting-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .awaiting-overlay-arrow {
            font-size: 32px;
            color: white;
            order: 3;
            margin-top: 15px;
            animation: pointLeft 1.5s ease-in-out infinite;
        }
        
        @keyframes pointLeft {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-10px); }
        }
        
        @keyframes pointUp {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .awaiting-overlay-text {
            color: white;
            font-size: 22px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 10px;
            order: 1;
        }
        
        .awaiting-overlay-subtext {
            color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 1px;
            order: 2;
        }
        
        @media (max-width: 768px) {
            .awaiting-overlay-arrow {
                order: 0;
                margin-top: 0;
                margin-bottom: 15px;
                animation: pointUp 1.5s ease-in-out infinite;
            }
            
            .awaiting-overlay-arrow::after {
                content: '↑';
            }
            
            .awaiting-overlay-arrow::before {
                content: none;
            }
        }
        
        @media (min-width: 769px) {
            .awaiting-overlay-arrow::after {
                content: '←';
            }
        }

        @media (max-width: 768px) {
            /* Prevent horizontal scrolling at root level */
            html, body {
                overflow-x: hidden;
                max-width: 100%;
            }
            
            /* Map controls - top right on mobile, smaller buttons */
            .map-controls {
                top: 8px;
                bottom: auto;
                right: 8px;
                left: auto;
            }
            
            .map-controls button {
                padding: 5px 8px;
                font-size: 9px;
            }
            
            /* Mobile body - smooth natural scrolling, no horizontal scroll */
            body {
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior-y: none;
                padding-top: 44px;
            }
            
            /* Mobile header - fixed and compact */
            .site-header {
                height: 44px;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1000;
            }
            
            .header-content {
                padding: 0 12px;
            }
            
            .header-logo-icon {
                height: 28px;
            }
            
            .header-logo-text {
                font-size: 16px;
                flex-shrink: 0;
            }
            
            .header-logo-text a {
                font-size: 16px;
            }
            
            .header-tagline {
                font-size: 11px;
                margin: 0 10px;
                font-weight: 500;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .header-nav {
                gap: 24px;
            }
            
            .header-nav-link {
                font-size: 12px;
            }
            
            .logo-icon {
                width: 28px;
                height: 28px;
            }
            
            .logo-main {
                font-size: 14px;
            }
            
            .logo-sub {
                font-size: 7px;
            }
            
            /* Hide navigation on mobile */
            .main-nav {
                display: none;
            }
            
            /* Mobile wrapper - full height for map */
            .wrapper {
                flex-direction: column;
                height: calc(100vh - 44px) !important;
                min-height: auto !important;
                margin: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                gap: 0 !important;
                padding: 0 !important;
                background: transparent;
                overflow: hidden !important;
                box-sizing: border-box !important;
                position: relative;
            }
            
            /* Category panel - OVERLAY on top of map */
            .category-panel {
                position: fixed !important;
                top: 52px;
                left: 8px;
                right: 8px;
                z-index: 100;
                height: auto;
                max-height: calc(100vh - 120px);
                min-width: 0 !important;
                max-width: none !important;
                border-radius: 8px !important;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
                margin: 0 !important;
                padding: 0 !important;
                overflow: hidden;
                background: white;
            }
            
            .category-panel-header {
                padding: 8px 10px;
                background: #14283C;
                border-bottom: none;
                border-radius: 8px 8px 0 0;
                display: flex !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                justify-content: flex-start !important;
                gap: 6px !important;
                cursor: pointer;
            }
            
            .category-panel-header h3 {
                font-size: 13px;
                font-weight: 600;
                color: #6FD17A;
                margin: 0;
                flex-shrink: 0;
                display: none;
            }
            
            .mobile-panel-title {
                display: block;
                font-size: 10px;
                font-weight: 700;
                color: #6FD17A;
                margin: 0;
                padding: 4px 10px;
                border-bottom: 1px solid rgba(111, 209, 122, 0.3);
                width: 100%;
                box-sizing: border-box;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                text-align: left;
            }
            
            /* Collapse indicator */
            .category-panel-header::after {
                content: '☰';
                font-size: 14px;
                color: #6FD17A;
                position: absolute;
                right: 8px;
                top: 9px;
                transition: transform 0.2s ease;
            }
            
            .category-panel.collapsed .category-panel-header::after {
                content: '☰';
            }
            
            .category-panel.collapsed .category-accordion {
                display: none;
            }
            
            .category-panel.collapsed {
                border-radius: 8px !important;
            }
            
            .category-panel.collapsed .category-panel-header {
                border-radius: 8px !important;
            }
            
            /* Course type toggles - row below title */
            .course-type-toggles {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                gap: 8px 16px !important;
                width: 100%;
                padding-right: 50px !important;
            }
            
            .toggle-section-divider {
                display: none;
            }
            
            .toggle-row.golf-public {
                order: 1;
            }
            
            .toggle-row.restaurants {
                order: 2;
            }
            
            .toggle-row.golf-private {
                order: 4;
            }
            
            .toggle-row.golf-houses {
                order: 5;
            }
            
            .toggle-row {
                padding: 0 !important;
                gap: 12px !important;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .toggle-text {
                font-size: 10px !important;
                white-space: nowrap;
                color: #ffffff !important;
            }
            
            .toggle-switch {
                width: 28px !important;
                height: 16px !important;
                margin-left: 4px !important;
            }
            
            .toggle-slider {
                border-radius: 16px !important;
            }
            
            .toggle-slider:before {
                height: 10px !important;
                width: 10px !important;
                left: 3px !important;
                bottom: 3px !important;
            }
            
            .toggle-switch input:checked + .toggle-slider:before {
                transform: translateX(12px) !important;
            }
            
            .category-accordion {
                max-height: calc(100vh - 200px);
                overflow-y: auto;
            }
            
            .accordion-header {
                padding: 5px 10px;
                background: white;
                border-bottom: 1px solid #f0f0f0;
            }
            
            /* Round bottom corners of last accordion when closed */
            .accordion-item:last-child .accordion-header:not(.active) {
                border-radius: 0 0 8px 8px;
            }
            
            /* When last accordion is open, round the bottom of its content */
            .accordion-item:last-child .accordion-content {
                border-radius: 0 0 8px 8px;
            }
            
            /* Limit accordion content height to ~8 items with scroll */
            .accordion-content.open {
                max-height: 220px;
                overflow-y: auto;
            }
            
            .accordion-title {
                font-size: 10px;
                font-weight: 600;
            }
            
            .accordion-icon {
                font-size: 14px;
            }
            
            .accordion-toggle {
                font-size: 14px;
            }
            
            .course-item {
                padding: 4px 10px;
                font-size: 10px;
                background: white;
                border-bottom: 1px solid #f5f5f5;
            }
            
            /* Last item in last accordion gets rounded bottom */
            .accordion-item:last-child .course-item:last-child {
                border-radius: 0 0 8px 8px;
                border-bottom: none;
            }
            
            .course-item input[type="checkbox"] {
                width: 14px;
                height: 14px;
                margin-right: 8px;
            }
            
            .accordion-controls {
                padding: 5px 10px;
                background: #f8f8f8;
            }
            
            .select-all-btn,
            .remove-all-btn {
                padding: 4px 10px;
                font-size: 9px;
            }
            
            /* Round bottom corners of category panel */
            .category-panel .controls {
                border-radius: 0 0 8px 8px;
                overflow: hidden;
            }
            
            .category-panel .controls button {
                border-radius: 8px;
            }
            
            /* Footer buttons need bottom rounding */
            .category-panel-footer {
                display: none; /* Hide on mobile - buttons moving to map */
            }
            
            /* Map - FULL SCREEN behind overlay */
            .map-container {
                position: absolute !important;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                height: 100% !important;
                width: 100% !important;
                min-height: 0 !important;
                min-width: 0 !important;
                max-width: none !important;
                border-radius: 0 !important;
                box-shadow: none;
                margin: 0 !important;
                padding: 0 !important;
                touch-action: pan-x pan-y;
                z-index: 1;
            }
            
            
            /* Info widget - BOTTOM SHEET style */
            .info-widget {
                position: fixed !important;
                bottom: 0;
                left: 20px;
                right: 20px;
                top: auto !important;
                width: calc(100% - 40px) !important;
                max-width: calc(100% - 40px) !important;
                min-width: 0 !important;
                height: auto;
                max-height: 70vh;
                border-radius: 16px !important;
                overflow: hidden;
                box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
                margin: 0 !important;
                padding: 0 !important;
                background: white;
                z-index: 1000;
                transform: translateY(100%);
                transition: transform 0.3s ease;
            }
            
            .info-widget.active {
                transform: translateY(0);
            }
            
            .info-widget-header {
                padding: 12px 16px;
                background: #14283C;
                border-bottom: none;
                width: 100%;
                position: relative;
            }
            
            /* Drag handle indicator */
            .info-widget-header::before {
                content: '';
                position: absolute;
                top: 6px;
                left: 50%;
                transform: translateX(-50%);
                width: 36px;
                height: 4px;
                background: rgba(255,255,255,0.3);
                border-radius: 2px;
            }
            
            .info-widget-header h3 {
                margin: 0;
                font-size: 14px;
                font-weight: 600;
                color: #6FD17A;
                padding-top: 4px;
            }
            
            .info-widget-title-btn {
                font-size: 14px;
                font-weight: 600;
                padding: 0;
                background: none;
                border: none;
                color: #ffffff;
                display: block;
                width: 100%;
                text-align: left;
                padding-top: 4px;
            }
            
            .info-widget-content {
                padding: 0;
                width: 100%;
                box-sizing: border-box;
                overflow-y: auto;
                max-height: calc(70vh - 50px);
            }
            
            /* Unified Container - Mobile */
            .info-unified-container {
                background: white;
                border: 1px solid #e0e0e0;
                border-radius: 12px;
                padding: 20px;
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 16px;
            }
            
            /* MOBILE - Clean Black and White Design */
            .info-clean-container {
                padding: 8px 20px 16px 20px;
            }
            
            .info-clean-title {
                font-size: 16px;
            }
            
            .info-clean-address {
                font-size: 12px;
            }
            
            .info-pill-button {
                font-size: 12px;
                padding: 7px 14px;
            }
            
            .info-icon-item {
                width: 50%;
            }
            
            .info-icon {
                font-size: 14px;
            }
            
            .info-icon-label {
                font-size: 13px;
            }
            
            .info-icon-value {
                font-size: 13px;
            }
            
            .info-bullet-list li {
                font-size: 13px;
            }
            
            /* Title (Course Name) */
            .info-title {
                font-size: 24px;
                font-weight: 700;
                color: #1a1a1a;
                margin: 0;
                line-height: 1.2;
            }
            
            /* Address */
            .info-address {
                font-size: 16px;
                color: #333;
                margin: 0;
                line-height: 1.5;
            }
            
            /* Website Button */
            .info-website-btn {
                display: inline-block;
                padding: 10px 20px;
                background: white;
                border: 2px solid #e0e0e0;
                border-radius: 24px;
                color: #333;
                font-size: 14px;
                font-weight: 500;
                text-decoration: none;
                text-align: center;
                transition: all 0.2s;
                align-self: flex-start;
            }
            
            .info-website-btn:hover {
                border-color: #14283C;
                color: #14283C;
            }
            
            /* Section Title */
            .info-section-title {
                font-size: 20px;
                font-weight: 700;
                color: #1a1a1a;
                margin: 8px 0 16px 0;
            }
            
            /* Quick Facts Grid */
            .info-facts-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px 12px;
                margin-bottom: 20px;
                padding-bottom: 20px;
                border-bottom: 1px solid #e8e8e8;
            }
            
            .info-fact-item {
                display: flex;
                align-items: center;
                gap: 6px;
            }
            
            .info-fact-icon {
                font-size: 18px;
                opacity: 0.7;
                flex-shrink: 0;
            }
            
            .info-fact-label {
                font-size: 14px;
                color: #666;
                font-weight: 500;
            }
            
            .info-fact-value {
                font-size: 14px;
                color: #1a1a1a;
                font-weight: 600;
                margin-left: auto;
            }
            
            /* Details List (bullets) */
            .info-details-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            .info-details-list li {
                padding: 8px 0;
                padding-left: 20px;
                font-size: 14px;
                color: #333;
                line-height: 1.5;
                position: relative;
            }
            
            .info-details-list li::before {
                content: "•";
                position: absolute;
                left: 0;
                color: #999;
                font-weight: bold;
            }
            
            .info-details-list li strong {
                font-weight: 600;
                color: #1a1a1a;
            }
            
            /* Restaurant simple info */
            .info-phone,
            .info-rating,
            .info-hours {
                font-size: 14px;
                color: #333;
                margin: 0;
                line-height: 1.6;
            }
            
            /* Course Name Button - Mobile (compact) */
            .info-name-btn {
                width: 100%;
                padding: 10px;
                background: #14283C;
                color: white;
                border: none;
                border-radius: 6px;
                font-size: 12px;
                font-weight: 700;
                text-align: center;
                letter-spacing: 0.5px;
            }
            
            /* Website Button - Mobile (compact, matches map controls) */
            .info-website-link-btn {
                display: block;
                width: 100%;
                padding: 12px;
                background: white;
                color: #14283C;
                border: 1.5px solid #14283C;
                border-radius: 5px;
                font-size: 11px;
                font-weight: 600;
                text-align: center;
                text-decoration: none;
            }
            
            /* Details Section - Mobile */
            .info-details-section {
                display: flex;
                flex-direction: column;
                gap: 0;
            }
            
            /* About Section - Mobile */
            .info-about-section {
                padding-top: 16px;
                border-top: 1px solid #e8e8e8;
                margin-top: 8px;
            }
            
            .info-about-section h4 {
                font-size: 16px;
                font-weight: 700;
                color: #222;
                margin: 0 0 12px 0;
                text-transform: none;
                letter-spacing: 0;
            }
            
            .info-about-section p {
                font-size: 14px;
                line-height: 1.6;
                color: #333;
                margin: 0;
            }
            
            /* Info sections - MINIMALIST clean style */
            .info-section {
                padding: 0;
                border-bottom: none;
            }
            
            .info-section h3 {
                display: none; /* Remove section headers for minimalist look */
            }
            
            .info-details-section {
                padding: 12px 0;
            }
            
            .info-item {
                padding: 0;
                margin-bottom: 12px;
                display: flex;
                align-items: flex-start;
                gap: 6px;
                background: transparent;
            }
            
            .info-item:last-child {
                margin-bottom: 0;
            }
            
            .info-item-icon {
                font-size: 16px;
                flex-shrink: 0;
                margin-top: 1px;
                opacity: 0.7;
            }
            
            .info-item-text {
                font-size: 14px;
                line-height: 1.5;
                flex: 1;
                color: #333;
            }
            
            .info-item-text strong {
                font-weight: 600;
                color: #222;
                margin-right: 4px;
            }
            
            .phone-link {
                color: #14283C;
                text-decoration: none;
                font-weight: 600;
                display: inline-block;
                padding: 4px 0;
            }
            
            .info-website-btn {
                display: block;
                width: calc(100% - 30px);
                margin: 15px 15px;
                padding: 12px;
                background: #14283C;
                color: white;
                text-align: center;
                border-radius: 8px;
                font-size: 13px;
                font-weight: 600;
                text-decoration: none;
            }
            
            .info-widget-placeholder {
                padding: 40px 15px;
                text-align: center;
                color: #666;
            }
            
            .course-details {
                padding: 0;
                width: 100%;
            }
            
            .course-meta {
                gap: 6px;
                margin: 0;
                padding: 15px;
                flex-wrap: wrap;
                border-bottom: 1px solid #e8e8e8;
            }
            
            .course-meta-item {
                font-size: 11px;
                padding: 5px 10px;
            }
            
            .course-description {
                font-size: 13px;
                line-height: 1.7;
                padding: 15px;
                border-bottom: 1px solid #e8e8e8;
                background: white;
            }
            
            .controls {
                padding: 12px 15px;
                gap: 10px;
                background: #f8f8f8;
                border-bottom: 1px solid #e0e0e0;
            }
            
            .control-btn {
                padding: 10px 14px;
                font-size: 11px;
            }
            
            /* Footer buttons - larger, easier to tap */
            .category-panel-footer {
                display: none !important; /* Hidden - buttons moved to map */
            }
            
            .filter-control-btn {
                flex: 1;
                padding: 6px 8px;
                font-size: 10px;
                font-weight: 600;
                border-radius: 6px;
                letter-spacing: 0.3px;
            }
            
            /* Photo carousel (if needed) */
            .photo-carousel {
                margin: 0;
                width: 100%;
            }
            
            .carousel-photo {
                height: 200px;
                width: 100%;
            }
            
            /* Hide resizer on mobile */
            .resizer {
                display: none !important;
            }
        }
        
        /* Extra small phones */
        @media (max-width: 390px) {
            .logo-main {
                font-size: 14px;
            }
            
            .logo-sub {
                font-size: 7px;
            }
            
            .category-panel-header h3 {
                font-size: 15px;
            }
            
            .accordion-title {
                font-size: 12px;
            }
            
            .course-item {
                font-size: 11px;
                padding: 9px 12px;
            }
            
            .map-container {
                height: 400px;
                min-height: 400px;
                flex: 0 0 400px;
            }
            
            .info-widget-title-btn {
                font-size: 13px;
            }
            
            .info-item-text {
                font-size: 12px;
            }
        }
        
        /* Info Widget - Right side panel */
        .info-widget {
            position: absolute;
            top: 20px;
            right: 20px;
            bottom: 20px;
            width: 380px;
            max-height: calc(100% - 40px);
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            z-index: 1000;
            opacity: 0;
            transform: translateX(100px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }
        
        .info-widget.expanded,
        .info-widget.active {
            opacity: 1;
            transform: translateX(0) scale(1);
            pointer-events: auto;
        }
        
        /* Close button */
        .widget-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #333;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            transition: all 0.2s;
        }
        
        .widget-close:hover {
            background: white;
            transform: scale(1.1);
        }
        
        /* Photo Hero Section */
        .widget-photo {
            width: 100%;
            height: 220px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            flex-shrink: 0;
            position: relative;
        }
        
        /* Content Section */
        .widget-content {
            flex: 1;
            overflow-y: auto;
            background: white;
            padding: 0;
        }
        
        /* Course Title Section */
        .course-title-section {
            padding: 12px 24px;
            background: white;
            border-bottom: 1px solid #e8e8e8;
        }
        
        .course-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0 0 6px 0;
            line-height: 1.3;
        }
        
        .course-address {
            font-size: 13px;
            color: #666;
            margin: 0 0 8px 0;
            line-height: 1.5;
        }
        
        .course-contact-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .course-contact {
            font-size: 13px;
            color: #1a1a1a;
            line-height: 1.5;
        }
        
        .course-contact a {
            color: #6FD17A;
            text-decoration: none;
            font-weight: 500;
        }
        
        .course-contact a:hover {
            text-decoration: underline;
        }
        
        /* Stats Grid - Hero bar + details */
        .stats-grid {
            padding: 0;
            background: white;
        }
        
        /* Hero stat bar */
        .stat-hero-bar {
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 16px 20px;
            background: #f8f9fa;
            border-bottom: 1px solid #e8e8e8;
        }
        
        .stat-hero-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        
        .stat-hero-value {
            font-size: 18px;
            font-weight: 700;
            color: #0d1f2d;
            line-height: 1;
        }
        
        .stat-hero-label {
            font-size: 10px;
            font-weight: 400;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .stat-divider {
            width: 1px;
            height: 32px;
            background: #d0d0d0;
        }
        
        /* Details section */
        .stat-details-section {
            padding: 16px 24px;
        }
        
        .stat-detail-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .stat-detail-item {
            font-size: 12px;
            line-height: 1.5;
        }
        
        .detail-label {
            font-weight: 700;
            color: #0d1f2d;
        }
        
        .detail-value {
            font-weight: 400;
            color: #666;
        }
        
        /* Hide old styles */
        .stat-detail-block, .stat-detail-subitem, .stat-detail-sublabel, .stat-detail-subvalue,
        .stat-detail-row, .stat-detail-col, .stat-detail-label, .stat-detail-value {
            display: none;
        }
        
        /* Hide old styles */
        .stat-inline-row, .stat-list, .stat-inline-item, .stat-label, .stat-value,
        .stat-facts-grid, .stat-fact-row, .stat-fact-label, .stat-fact-value, .stat-icon,
        .stat-detail-group {
            display: none;
        }
        
        /* Hide old styles */
        .course-meta, .stat-item, .stat-label, .stat-value, .contact-section {
            display: none;
        }
        
        .contact-link {
            color: #6FD17A;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
        }
        
        .contact-link:hover {
            text-decoration: underline;
        }
        
        .info-widget-header {
            background: #14283C;
            padding: 12px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            border-bottom: none;
        }
        
        .info-widget-header h3 {
            margin: 0;
            font-size: 15px;
            font-weight: 700;
            color: #6FD17A;
        }
        
        .info-widget-title-btn {
            width: 100%;
            padding: 4px 10px;
            background: #14283C;
            color: white;
            border: 1px solid #6FD17A;
            border-radius: 8px;
            font-weight: 700;
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none !important;
            display: block;
            text-align: center;
        }
        
        .info-widget-title-btn.restaurant {
            background: rgba(20, 40, 60, 1);
            border-color: #0d1f2d;
        }
        
        .info-widget-content {
            padding: 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        /* Unified Container - All content in one box */
        .info-unified-container {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        /* NEW CLEAN BLACK AND WHITE DESIGN */
        .info-clean-container {
            padding: 2px 4px 8px 4px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .info-clean-title {
            font-size: 14px;
            font-weight: 700;
            color: #0d1f2d;
            margin: 0;
            line-height: 1.3;
        }
        
        .info-clean-address {
            font-size: 12px;
            color: #0d1f2d;
            margin: 0;
            line-height: 1.5;
        }
        
        .info-clean-phone-top {
            font-size: 12px;
            color: #0d1f2d;
            margin: 0;
            line-height: 1.5;
        }
        
        .info-clean-phone-top .phone-link {
            color: #0d1f2d;
            text-decoration: none;
        }
        
        .info-clean-phone-top .phone-link:hover {
            color: #14283C;
            text-decoration: underline;
        }
        
        .info-clean-website {
            font-size: 12px;
            margin: 0;
            line-height: 1.5;
        }
        
        .info-clean-website a {
            color: #14283C;
            text-decoration: underline;
            font-weight: 600;
        }
        
        .info-clean-website a:hover {
            color: #6FD17A;
        }
        
        .info-tee-time-access {
            padding: 8px 0;
            border-top: 1px solid #e8e8e8;
            border-bottom: 1px solid #e8e8e8;
        }
        
        .info-tee-time-access p {
            font-size: 12px;
            color: #333;
            margin: 0;
            line-height: 1.6;
        }
        
        .info-tee-time-access strong {
            font-weight: 600;
            color: #000;
        }
        
        .info-clean-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 10px 0;
            border-top: 1px solid #e8e8e8;
            border-bottom: 1px solid #e8e8e8;
        }
        
        .info-clean-item {
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        
        .info-clean-item-full {
            width: 100%;
        }
        
        .info-clean-label {
            font-size: 12px;
            color: #666;
            font-weight: 400;
        }
        
        .info-clean-value {
            font-size: 12px;
            color: #0d1f2d;
            font-weight: 600;
        }
        
        .info-clean-details {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .info-clean-details p {
            font-size: 12px;
            color: #0d1f2d;
            margin: 0;
            line-height: 1.6;
            font-weight: 600;
        }
        
        .info-clean-details strong {
            font-weight: 400;
            color: #0d1f2d;
        }
        
        .info-clean-description {
            padding-top: 10px;
            border-top: 1px solid #e8e8e8;
        }
        
        .info-clean-description p {
            font-size: 12px;
            color: #0d1f2d;
            margin: 0;
            line-height: 1.6;
        }
        
        .info-clean-description strong {
            font-weight: 600;
            color: #0d1f2d;
        }
        
        .info-clean-button {
            display: block;
            width: 100%;
            padding: 6px;
            background: #14283C;
            color: #fff;
            text-align: center;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            border-radius: 6px;
            transition: background 0.2s;
            margin-top: 8px;
        }
        
        .info-clean-button:hover {
            background: #1f3810;
        }
        
        /* Restaurant simple styles */
        .info-clean-phone,
        .info-clean-rating,
        .info-clean-hours {
            font-size: 14px;
            color: #333;
            margin: 0;
            line-height: 1.6;
        }
        
        /* Course Name Button - Compact and proportionate */
        .info-name-btn {
            width: 100%;
            padding: 8px 12px;
            background: #14283C;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
            cursor: default;
            letter-spacing: 0.5px;
        }
        
        /* Website Button - Compact, matches map control style */
        .info-website-link-btn {
            display: block;
            width: 100%;
            padding: 7px 12px;
            background: white;
            color: #14283C;
            border: 1.5px solid #14283C;
            border-radius: 5px;
            font-size: 11px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .info-website-link-btn:hover {
            background: #f8f8f8;
        }
        
        /* Details Section */
        .info-details-section {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        
        /* About Section */
        .info-about-section {
            padding-top: 10px;
            border-top: 1px solid #e8e8e8;
        }
        
        .info-about-section h4 {
            font-size: 13px;
            font-weight: 700;
            color: #14283C;
            margin: 0 0 10px 0;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        
        .info-about-section p {
            font-size: 13px;
            line-height: 1.6;
            color: #333;
            margin: 0;
        }
        
        .info-widget-placeholder {
            text-align: center;
            color: #999;
            font-size: 14px;
            padding: 40px 20px;
            line-height: 1.6;
        }
        
        .info-widget-placeholder-icon {
            font-size: 48px;
            margin-bottom: 15px;
            opacity: 0.5;
        }
        
        .info-section {
            background: #ffffff;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
        }
        
        .info-section h3 {
            font-size: 13px;
            font-weight: 700;
            color: #14283C;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 13px;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .info-item:last-child {
            margin-bottom: 0;
        }
        
        .info-item-icon {
            flex-shrink: 0;
            width: 20px;
            font-size: 18px;
        }
        
        .info-item-text {
            flex: 1;
        }
        
        .phone-link {
            color: #14283C;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
        }
        
        .phone-link:hover {
            text-decoration: underline;
            color: #6FD17A;
        }
        
        .info-website-btn {
            display: inline-block;
            padding: 4px 10px;
            background: rgba(45, 80, 22, 1);
            color: white;
            border: 1px solid #6FD17A;
            text-align: center;
            text-decoration: none !important;
            border-radius: 8px;
            font-weight: 700;
            font-size: 9px;
            transition: all 0.3s ease;
            margin-top: 10px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .info-website-btn:hover {
            background: rgba(45, 80, 22, 0.3);
            border-color: #14283C;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        
        .info-description {
            line-height: 1.6;
            color: #555;
            font-size: 13px;
        }
        
        .info-photos {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            position: relative;
        }
        
        .info-photo {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid #e0e0e0;
        }
        
        /* Photo Carousel Styles */
        .photo-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 0;
            border: none;
            margin: 0;
            padding: 0;
        }
        
        .carousel-container {
            display: flex;
            transition: transform 0.4s ease-in-out;
            will-change: transform;
        }

        .carousel-slide {
            min-width: 100%;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f6f6f6;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            user-select: none;
            -webkit-user-drag: none;
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(20, 40, 60, 0.65);
            color: white;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            font-size: 18px;
            border-radius: 6px;
            transition: background 0.18s ease, transform 0.12s ease;
            z-index: 20;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-btn:hover,
        .carousel-btn:focus {
            background: rgba(20, 40, 60, 0.85);
            transform: translateY(-50%) scale(1.03);
            outline: none;
        }
        
        .carousel-btn.prev {
            left: 10px;
        }
        
        .carousel-btn.next {
            right: 10px;
        }
        
        .carousel-dots {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 25;
        }
        
        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: transform 0.15s ease, background 0.15s ease;
            border: none;
        }

        .carousel-dot.active {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.15);
        }

        .carousel-dot:focus {
            outline: 2px solid rgba(109, 209, 122, 0.9);
            outline-offset: 2px;
        }
        
        .carousel-counter {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            z-index: 22;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .carousel-slide { height: 180px; }
            .carousel-btn { padding: 6px 10px; font-size: 16px; }
            .carousel-counter { font-size: 11px; }
        }
        
        .info-website-preview {
            width: 100%;
            height: 400px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            background: white;
            position: relative;
        }
        
        .info-website-preview iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 6px;
        }
        
        .info-website-fallback {
            display: none;
            width: 100%;
            height: 100%;
            background: rgba(248, 250, 248, 0.95);
            border-radius: 6px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
        }
        
        .info-website-fallback.show {
            display: flex;
        }
        
        .info-website-fallback-icon {
            font-size: 48px;
            margin-bottom: 15px;
            opacity: 0.5;
        }
        
        .info-website-fallback-text {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            max-width: 300px;
        }
        
        /* Restaurant Info Card Styles */
        .info-rating-section {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        
        .info-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 18px;
            font-weight: 700;
            color: #14283C;
        }
        
        .info-stars {
            color: #f5a623;
            font-size: 16px;
        }
        
        .info-reviews {
            font-size: 13px;
            color: #666;
        }
        
        .info-type-badge {
            display: inline-block;
            padding: 3px 8px;
            background: rgba(20, 40, 60, 0.1);
            color: #14283C;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        
        .info-price-range {
            color: #6FD17A;
            font-weight: 700;
            font-size: 14px;
        }
        
        .info-hours {
            font-size: 13px;
            color: #555;
            line-height: 1.5;
        }
