        /* ===============================
           Base Reset
        ================================= */
        html, body { height: 100%; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
        .hidden { display: none !important; }

        /* ===============================
           Map
        ================================= */
        #globeMap { height: 100%; width: 100%; }
        /* Hide Google Maps default UI */
        .gm-fullscreen-control, .gm-svpc, .gmnoprint[title="Toggle fullscreen view"] {
            display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none;
        }

        /* ===============================
           Detail Panel (slide-in from right)
        ================================= */
        #auctionModal {
            position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 90vw;
            background: #fff; padding: 0; box-shadow: -4px 0 20px rgba(0,0,0,0.15);
            z-index: 2001; overflow-y: auto; transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        #auctionModal.open { transform: translateX(0); }
        #auctionModal .panel-header {
            position: sticky; top: 0; background: #fff; padding: 14px 20px; border-bottom: 1px solid #eee;
            display: flex; justify-content: space-between; align-items: center; z-index: 1;
        }
        #auctionModal .panel-header h4 { margin: 0; font-size: 14px; color: #888; font-weight: 500; }
        #auctionModal .panel-close {
            background: none; border: none; font-size: 22px; cursor: pointer; color: #999;
            width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
            border-radius: 6px; transition: background 0.15s;
        }
        #auctionModal .panel-close:hover { background: #f1f4f9; color: #333; }
        #modalContent { padding: 20px; }
        #modalContent div { margin-bottom: 15px; }
        #modalNav { display: flex; justify-content: space-between; padding: 0 20px 20px; gap: 10px; }
        #modalNav button { flex: 1; padding: 10px; border: 1px solid #ddd; background: #f8f9fa; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; transition: background 0.15s; }
        #modalNav button:hover:not(:disabled) { background: #e8f2ff; border-color: #247ecd; }
        #modalNav button:disabled { opacity: 0.4; cursor: default; }
        #modalOverlay {
            display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.2); z-index: 2000;
            transition: opacity 0.3s;
        }
        .modal-socials { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 8px 0 12px; }
        .modal-socials a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #f1f4f9; color: #64748b; transition: all .2s; }
        .modal-socials a svg { width: 16px; height: 16px; }
        .modal-socials a.twitter:hover { background: #000; color: #fff; }
        .modal-socials a.facebook:hover { background: #1877F2; color: #fff; }
        .modal-socials a.instagram:hover { background: #E4405F; color: #fff; }
        .modal-socials a.linkedin:hover { background: #0a66c2; color: #fff; }
        .modal-socials a.youtube:hover { background: #FF0000; color: #fff; }
        .modal-socials a.website:hover { background: #64748b; color: #fff; }
        .sidebar-socials { display: inline-flex; gap: 5px; margin-left: 6px; vertical-align: middle; }
        .sidebar-socials a { display: inline-flex; color: #94a3b8; transition: color .2s; }
        .sidebar-socials a svg { width: 14px; height: 14px; }
        .sidebar-socials a.twitter:hover { color: #000; }
        .sidebar-socials a.facebook:hover { color: #1877F2; }
        .sidebar-socials a.instagram:hover { color: #E4405F; }
        .sidebar-socials a.linkedin:hover { color: #0a66c2; }
        .sidebar-socials a.youtube:hover { color: #FF0000; }

        /* ===============================
           UI Controls (Buttons, Drawers)
        ================================= */
        #infoDrawerToggle {
            position: absolute; bottom: 55px; left: 20px; z-index: 1001;
            background: #fff; border-radius: 50%; width: 44px; height: 44px; padding: 4px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center;
            cursor: pointer; user-select: none; animation: pulse 2s infinite;
        }
        #infoDrawerToggle img { width: 28px; height: 28px; display: block; }

        #soonButton {
            position: absolute; bottom: 125px; left: 20px; z-index: 1001;
            background: #fff; border-radius: 50%; width: 44px; height: 44px; padding: 4px; 
            box-shadow: 0 2px 6px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center;
            cursor: pointer; text-decoration: none; transition: transform 0.2s;
        }
        #soonButton:hover { transform: scale(1.1); }

/* Find this section in your CSS */
#infoDrawer {
    position: absolute; 
    bottom: 190px; 
    left: 20px; 
    background: #fff; 
    padding: 12px 16px;
    border-radius: 8px; 
    box-shadow: 0 0 10px rgba(0,0,0,0.2); 
    display: none;
    flex-direction: column; 
    gap: 10px; 
    
    /* --- NEW / MODIFIED LINES BELOW --- */
    
    /* 1. Ensure it sits ABOVE the search bar (which is z-index 1001) */
    z-index: 1002; 
    
    /* 2. Limit height so it stops before hitting the top of the screen */
    /* 100vh is total screen height. We subtract 210px to account for the 
       190px bottom offset + some breathing room at the top */
    max-height: calc(100vh - 220px);
    
    /* 3. Add a scrollbar if the menu content is taller than the max-height */
    overflow-y: auto;
}
        #infoDrawer a { font-size: 14px; color: #333; text-decoration: none; font-weight: 500; display: block; padding: 4px 0; }
        #infoDrawer a:hover { text-decoration: underline; }

        /* --- SPECIAL CTA HIGHLIGHT FOR 'GET LISTED' --- */
        #infoDrawer a[href="/get-listed"] {
            background-color: #247ecd;
            color: #fff !important;
            padding: 10px 14px;
            border-radius: 6px;
            text-align: center;
            font-weight: 700;
            margin: 6px 0;
            box-shadow: 0 4px 10px rgba(36, 126, 205, 0.3);
            transition: all 0.2s ease-in-out;
            text-decoration: none !important;
        }
        #infoDrawer a[href="/get-listed"]:hover {
            background-color: #1a66aa;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 14px rgba(36, 126, 205, 0.4);
        }

        /* ===============================
           Ads
        ================================= */
        #getListedAd {
            position: absolute; bottom: 80px; left: 20px; width: 260px;
            background: #fff; border-radius: 10px; padding: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15); z-index: 1000; font-size: 14px; color: #333;
        }
        #mobileGetListedAd {
            display: none; position: fixed; bottom: 70px; left: 10px; right: 10px;
            background: #eef6ff; border-radius: 10px; padding: 14px; font-size: 14px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 1002;
        }
        #mobileGetListedAd h4 { margin: 0 0 8px; font-size: 16px; font-weight: bold; color: #247ecd; }
        #mobileGetListedAd p { margin: 0 0 10px; font-size: 13px; color: #333; }
        #mobileGetListedAd a {
            display: inline-block; padding: 10px 14px; font-weight: 600; background-color: #247ecd;
            color: #fff; border-radius: 6px; text-decoration: none; font-size: 14px; text-align: center;
            width: 100%; box-sizing: border-box; transition: background 0.2s ease-in-out;
        }
        #mobileGetListedAd a:hover { background-color: #1a66aa; }
        #closeMobileAd {
            position: absolute; top: 6px; right: 10px; font-size: 20px; background: none;
            border: none; color: #444; font-weight: bold; cursor: pointer; z-index: 10; line-height: 1;
        }

        /* ===============================
           Top Banner & Search
        ================================= */
        .btn-auth {
            padding: 8px 14px; background: #fff; border: 1px solid #ccc; border-radius: 8px;
            font-size: 14px; color: #333; text-decoration: none; box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            transition: all 0.2s ease-in-out; font-weight: 500; display: inline-flex;
            align-items: center; justify-content: center; height: 36px;
        }
        .btn-auth:hover { background-color: #f0f0f0; }
        .btn-auth.btn-primary {
            background-color: #247ecd; color: #fff; border: none; font-weight: 600;
            font-size: 15px; padding: 10px 18px; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .btn-auth.btn-primary:hover { background-color: #1a66aa; transform: scale(1.02); }

        #keywordFilter {
            position: absolute; top: 20px; left: 20px; z-index: 1001;
            background: #fff; border-radius: 28px; padding: 6px 6px 6px 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.12); display: flex; align-items: center;
            width: 360px; max-width: calc(100% - 40px); transition: box-shadow 0.2s;
        }
        #keywordFilter:focus-within { box-shadow: 0 2px 16px rgba(36,126,205,0.25); }

        .search-close {
            position: absolute; top: -6px; right: -6px; width: 22px; height: 22px;
            border: none; border-radius: 50%; background: #e0e0e0; color: #555; font-size: 14px;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: background 0.15s; line-height: 1;
        }
        .search-close:hover { background: #ccc; }

        #keywordInputWrapper { width: 100%; display: flex; align-items: center; }
        #keywordInputWrapper .search-icon { width: 18px; height: 18px; color: #999; flex-shrink: 0; margin-right: 8px; }
        #keywordInput {
            flex: 1; min-width: 0; box-sizing: border-box; padding: 8px 0; border: none;
            font-size: 15px; background: transparent; outline: none;
        }
        #resultsBadge {
            display: none; font-size: 11px; font-weight: 700; color: #247ecd; background: #e8f2ff;
            padding: 2px 7px; border-radius: 10px; white-space: nowrap; flex-shrink: 0; margin: 0 4px;
        }
        #clearKeywordBtn {
            flex-shrink: 0; border: none; background: transparent; font-size: 18px; color: #888;
            cursor: pointer; display: none; padding: 0 8px; line-height: 1;
        }
        #clearKeywordBtn:hover { color: #333; }

        #activityPulse {
            position: absolute; top: 20px; right: 20px; z-index: 1001;
            background: #fff; color: #333; padding: 6px 14px; border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.12); font-size: 13px; font-weight: 600;
            display: flex; align-items: center; gap: 6px;
        }
        #activityPulse::before {
            content: ''; width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
            animation: pulseDot 2s ease infinite;
        }
        @keyframes pulseDot {
            0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
            50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
        }
        @media (max-width: 600px) { #activityPulse { top: auto; bottom: 130px; right: 10px; font-size: 12px; } }
        #newSinceBadge {
            display: none; position: absolute; top: 52px; right: 20px; z-index: 1001;
            background: #fffbeb; color: #92400e; padding: 6px 14px; border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1); font-size: 13px; font-weight: 600;
            border: 1px solid #fde68a; cursor: pointer; transition: background 0.15s;
        }
        #newSinceBadge:hover { background: #fef3c7; }
        @media (max-width: 600px) { #newSinceBadge { top: auto; bottom: 95px; right: 10px; font-size: 12px; } }

        #geoNudge {
            position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
            background: #fff; color: #333; padding: 10px 20px; border-radius: 24px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15); font-size: 14px; font-weight: 600;
            cursor: pointer; z-index: 1001; white-space: nowrap; transition: all 0.2s;
            display: flex; align-items: center;
        }
        #geoNudge:hover { background: #247ecd; color: #fff; box-shadow: 0 4px 16px rgba(36,126,205,0.3); }
        #geoNudge:hover svg { stroke: #fff; }

/* ===============================
   Featured Auctions Box - FIXED
================================= */
#featuredAuctionsBox {
    position: absolute; 
    bottom: 170px; 
    right: 20px; 
    width: 290px; 
    background: #fff; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.25); 
    z-index: 1001;
    font-family: 'Inter', sans-serif;
    display: none; 
    flex-direction: column; 
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
#featuredAuctionsBox.is-visible { display: flex !important; }

/* 1. Header */
#featuredAuctionsBox::before {
    content: "\1F525 Featured Auction"; 
    display: block; 
    background: #fff8e1; 
    color: #b71c1c; 
    font-weight: 800; 
    padding: 10px 16px; 
    border-bottom: 1px solid #f0f0f0; 
    font-size: 13px;
    text-transform: uppercase;
}
#closeFeaturedBox {
    position: absolute; top: 8px; right: 10px; width: 24px; height: 24px; 
    border: none; border-radius: 50%; background: rgba(255,255,255,0.8); 
    color: #555; font-size: 18px; line-height: 24px; cursor: pointer; 
    z-index: 10; padding: 0; display: flex; align-items: center; justify-content: center;
}
#closeFeaturedBox:hover { background: #fff; color: #000; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

/* 2. Viewport - CRITICAL: Must match JS scroll amount (280px) */
#featuredAuctionsBox .featured-viewport { 
    position: relative; 
    height: 280px !important; /* Forces match with your JS */
    width: 100%; 
    overflow: hidden; 
    background: #fff; 
}

#featuredAuctionsBox .featured-track { 
    display: flex; 
    flex-direction: column; 
    will-change: transform; 
}

/* 3. The Card - Matches Viewport Height */
#featuredAuctionsBox .featured-card {
    height: 280px !important; /* Forces match with your JS */
    width: 100%; 
    box-sizing: border-box; 
    background: #fff; 
    margin: 0; 
    padding: 0;
    display: flex; 
    flex-direction: column;
    flex-shrink: 0; /* Prevents squashing */
}

/* Image Wrapper (Keep this as is) */
#featuredAuctionsBox .featured-card .img-wrapper {
    height: 135px; 
    width: 100%; 
    flex-shrink: 0; 
    overflow: hidden;
    background: #ffffff; /* I changed this to white so transparent images look better! */
    display: flex; 
    align-items: center; 
    justify-content: center;
}

/* NEW: Force the link to fill the wrapper and center the image */
#featuredAuctionsBox .featured-card .img-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* REPLACED: Bulletproof the image to ensure it contains */
#featuredAuctionsBox .featured-card img { 
    width: 100% !important; 
    height: 100% !important; 
    max-height: 135px !important;
    object-fit: contain !important; 
    display: block !important; 
}

/* Text Content */
#featuredAuctionsBox .featured-card .text-content { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    padding: 10px 14px; 
    overflow: hidden;
}

#featuredAuctionsBox .featured-card h4 {
    font-size: 15px; 
    margin: 0 0 4px; 
    font-weight: 700; 
    color: #222; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

#featuredAuctionsBox .featured-card p {
    margin: 0 0 8px; 
    font-size: 12px; 
    color: #666; 
    line-height: 1.35;
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
    overflow: hidden;
}

/* Button - Compact styling */
#featuredAuctionsBox .featured-card a.view-btn {
    margin-top: auto;
    display: block; 
    width: 100%; 
    text-align: center; 
    padding: 8px 0;
    background-color: #f0f7ff; 
    color: #247ecd; 
    border-radius: 6px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 13px; 
    border: 1px solid rgba(36, 126, 205, 0.1);
}
#featuredAuctionsBox .featured-card a.view-btn:hover { background-color: #e0efff; }

/* 4. Sticky Ad Bottom */
#featuredAuctionsBox .sticky-ad {
    background: linear-gradient(135deg, #eef6ff 0%, #f0f4ff 100%);
    border-top: 2px solid #247ecd;
    padding: 12px 16px;
    text-align: center;
    flex-shrink: 0;
    z-index: 5;
    cursor: pointer;
    transition: background 0.2s;
}
#featuredAuctionsBox .sticky-ad:hover { background: linear-gradient(135deg, #e0efff 0%, #e8eeff 100%); }
#featuredAuctionsBox .sticky-ad h4 { margin: 0 0 3px; font-size: 14px; color: #247ecd; font-weight: 700; }
#featuredAuctionsBox .sticky-ad p { margin: 0 0 8px; font-size: 12px; color: #555; }
#featuredAuctionsBox .sticky-ad a {
    display: block; background: #247ecd; color: #fff; text-decoration: none; padding: 8px;
    border-radius: 6px; font-weight: 600; font-size: 13px; transition: background 0.2s;
}
#featuredAuctionsBox .sticky-ad a:hover { background: #1a66aa; }

/* Mobile Hide */
@media (max-width: 600px) {
    #featuredAuctionsBox, #featuredAuctionsBox.is-visible { display: none !important; }
}
        /* ===============================
           Cookie Wall
        ================================= */
        #cookie-wall {
            position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); max-width: 720px; width: calc(100% - 32px);
            background-color: #ffffff; color: #333; padding: 8px 16px; z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); border-radius: 10px;
            display: flex; align-items: center; justify-content: space-between; gap: 14px;
            font-size: 12px; line-height: 1.3; box-sizing: border-box;
        }
        @media (min-width: 576px) { #cookie-wall { width: auto; } }
        #cookie-wall button { padding: 6px 10px; border: none; cursor: pointer; font-size: 12px; border-radius: 4px; white-space: nowrap; }
        #cookie-wall .accept-button { background-color: #007bff; color: #ffffff; }
        #cookie-wall .decline-button { background-color: #f1f1f1; color: #333; border: 1px solid #ddd; }

        /* ===============================
           Ticker
        ================================= */
        #tagCloudTicker {
            position: fixed; bottom: 0; left: 0; width: 100%; overflow: hidden; background: #fff;
            border-top: 1px solid #ddd; z-index: 1003; font-size: 14px; white-space: nowrap; padding: 6px 0;
        }
        #tagCloudTicker .tag-strip { display: inline-block; white-space: nowrap; animation: scrollLeft 540s linear infinite; will-change: transform; }
        #tagCloudTicker a {
            display: inline-block; margin: 0 10px; color: #247ecd; text-decoration: none;
            font-weight: 500; background: #eef6ff; padding: 4px 8px; border-radius: 6px; transition: background 0.3s;
        }
        #tagCloudTicker a:hover { background: #d9ecff; }
        #tagCloudTicker:hover .tag-strip { animation-play-state: paused; }

        /* ===============================
           Search Results Panel
        ================================= */
        #searchResultsPanel.collapsed { height: 42px; overflow: hidden; padding-bottom: 6px; }
        #searchResultsPanel.collapsed #searchNotice,
        #searchResultsPanel.collapsed #searchResultsList { display: none; }
        .digest-match strong { background: #fffc55; padding: 0 2px; border-radius: 3px; }
        .summary-block strong { font-weight: 700 !important; color: #000; background: #fffc55; padding: 0 3px; border-radius: 3px; }
        
        .result-section-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #888; margin: 8px 0 4px; font-weight: 700; border-bottom: 1px solid #eee; padding-bottom: 2px; }
        .result-item { padding: 8px; border-radius: 6px; margin-bottom: 6px !important; transition: background 0.15s, border-color 0.15s; border-left: 3px solid transparent; }
        .result-item:hover { background: #f0f7ff; border-left-color: #247ecd; }
        .result-item.highlighted { background: #e8f2ff; border-left-color: #247ecd; }
        .urgency-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-left: 6px; vertical-align: middle; white-space: nowrap; }
        .urgency-badge.score-1 { background: #dcfce7; color: #16a34a; }
        .urgency-badge.score-1::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #16a34a; animation: pulseDot 1.5s ease infinite; }
        .urgency-badge.score-2 { background: #fef3c7; color: #d97706; }
        .urgency-badge-panel { display: block; text-align: center; padding: 8px; margin-bottom: 12px; border-radius: 6px; font-size: 13px; font-weight: 600; }
        .urgency-badge-panel.score-1 { background: #dcfce7; color: #16a34a; }
        .urgency-badge-panel.score-2 { background: #fef3c7; color: #d97706; }
        @keyframes shimmer { 0% { background-position: -200px 0; } 100% { background-position: 200px 0; } }
        .shimmer-line { height: 14px; border-radius: 4px; margin-bottom: 10px; background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 400px 100%; animation: shimmer 1.2s ease infinite; }
        .shimmer-block { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
        .shimmer-block .shimmer-title { width: 70%; height: 16px; margin-bottom: 8px; }
        .shimmer-block .shimmer-text { width: 90%; }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
        .result-item { opacity: 0; animation: fadeInUp 0.3s ease forwards; }

        /* ===============================
           Animations & Responsive
        ================================= */
        @keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-100%); } }
        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(36,126,205,0.4); }
            70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(36,126,205,0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(36,126,205,0); }
        }
        @media (max-width: 600px) {
            #featuredAuctionsBox { display: none !important; }
            #mobileGetListedAd { display: block; }
        }
        @media (max-width: 500px) {
            #keywordFilter { left: 10px; right: 10px; top: 10px; width: auto; max-width: none; }
            #keywordInput { font-size: 16px; }
            #auctionModal { width: 100%; max-width: 100%; }
        }
/* --- AUCTIFY CTA --- */
        .auctify-mega-btn {
            background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%) !important;
            color: #fff !important;
            border: none !important;
            font-weight: 700 !important;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 8px rgba(255, 65, 108, 0.25) !important;
        }

        .auctify-mega-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(255, 65, 108, 0.4) !important;
            background: linear-gradient(135deg, #e6395e 0%, #e64326 100%) !important;
        }

        /* Quick Filters */
        #quickFilters {
            position: absolute; top: 72px; left: 20px; display: flex; gap: 6px; z-index: 1001;
        }
        .qf-chip {
            padding: 6px 14px; border-radius: 18px; border: 1px solid #e0e0e0; background: #fff;
            font-size: 12px; font-weight: 600; color: #555; cursor: pointer; white-space: nowrap;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1); transition: all 0.15s;
        }
        .qf-chip:hover { background: #247ecd; color: #fff; border-color: #247ecd; }
        .qf-chip.active { background: #247ecd; color: #fff; border-color: #247ecd; }
        @media (max-width: 500px) { #quickFilters { top: 56px; left: 10px; } }

        /* Add to Calendar */
        .cal-btn {
            display: inline-flex; align-items: center; gap: 5px; padding: 6px 14px; border-radius: 18px;
            border: 1px solid #e0e0e0; background: #fff; color: #555; font-size: 12px; font-weight: 600;
            cursor: pointer; transition: all 0.15s; margin-right: 6px;
        }
        .cal-btn:hover { background: #f0f7ff; border-color: #247ecd; color: #247ecd; }
        .cal-btn svg { width: 14px; height: 14px; }

        /* Exploration Progress */
        #explorationBar {
            padding: 8px 0; font-size: 12px; color: #888;
        }
        #explorationBar .exp-track { height: 4px; background: #e5e7eb; border-radius: 2px; margin-top: 4px; overflow: hidden; }
        #explorationBar .exp-fill { height: 100%; background: #247ecd; border-radius: 2px; transition: width 0.4s ease; }

        /* Most Viewed Leaderboard */
        #topViewedWidget {
            display: none; position: absolute; bottom: 620px; right: 20px; z-index: 1001;
            background: #fff; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.12);
            padding: 12px 14px; width: 220px; font-size: 13px;
        }
        #topViewedWidget .tv-title { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: #999; font-weight: 700; margin-bottom: 8px; }
        #topViewedWidget .tv-item {
            display: flex; justify-content: space-between; align-items: center; padding: 5px 0;
            border-bottom: 1px solid #f3f3f3; cursor: pointer; transition: color 0.15s;
        }
        #topViewedWidget .tv-item:last-child { border-bottom: none; }
        #topViewedWidget .tv-item:hover { color: #247ecd; }
        #topViewedWidget .tv-rank { color: #999; font-weight: 700; margin-right: 8px; font-size: 12px; }
        #topViewedWidget .tv-name { flex: 1; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        #topViewedWidget .tv-views { font-size: 11px; color: #999; white-space: nowrap; margin-left: 8px; }
        #topViewedWidget .tv-close { position: absolute; top: 6px; right: 10px; background: none; border: none; font-size: 16px; color: #999; cursor: pointer; }
        @media (max-width: 600px) { #topViewedWidget { display: none !important; } }

        /* Nearby Suggestions */
        .nearby-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #999; font-weight: 700; margin-bottom: 6px; }
        .nearby-item {
            display: flex; align-items: center; gap: 8px; padding: 8px; margin-bottom: 4px;
            background: #f8f9fa; border-radius: 6px; cursor: pointer; transition: background 0.15s;
        }
        .nearby-item:hover { background: #e8f2ff; }
        .nearby-item .ni-name { font-size: 13px; font-weight: 600; color: #333; }
        .nearby-item .ni-dist { font-size: 11px; color: #999; }

        /* Share Button */
        .share-btn {
            display: inline-flex; align-items: center; gap: 5px; padding: 6px 14px; border-radius: 18px;
            border: 1px solid #e0e0e0; background: #fff; color: #555; font-size: 12px; font-weight: 600;
            cursor: pointer; transition: all 0.15s;
        }
        .share-btn:hover { background: #f0f7ff; border-color: #247ecd; color: #247ecd; }
        .share-btn svg { width: 14px; height: 14px; }
        .share-btn.copied { background: #dcfce7; border-color: #86efac; color: #16a34a; }

        /* Trending Suggestions Dropdown */
        #locationSuggestion {
            display: none; position: absolute; top: 100%; left: 0; right: 0; margin-top: 6px;
            background: #fff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            padding: 10px 12px; z-index: 1003; cursor: pointer; transition: all 0.15s;
            border-left: 3px solid #247ecd;
        }
        #locationSuggestion:hover { background: #f0f7ff; }
        #locationSuggestion .loc-icon { display: inline-block; margin-right: 6px; font-size: 15px; vertical-align: middle; }
        #locationSuggestion .loc-text { font-size: 13px; color: #333; line-height: 1.4; }
        #locationSuggestion .loc-text strong { color: #247ecd; }
        #locationSuggestion .loc-dismiss {
            position: absolute; top: 6px; right: 8px; background: none; border: none;
            color: #aaa; font-size: 14px; cursor: pointer; padding: 2px 4px; line-height: 1;
        }
        #locationSuggestion .loc-dismiss:hover { color: #666; }

        #trendingSuggestions {
            display: none; position: absolute; top: 100%; left: 0; right: 0; margin-top: 46px;
            background: #fff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            padding: 10px; z-index: 1002;
        }
        #trendingSuggestions .ts-title { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: #999; font-weight: 700; margin-bottom: 6px; padding: 0 4px; }
        #trendingSuggestions .ts-item {
            display: inline-block; padding: 5px 12px; margin: 3px; border-radius: 16px;
            background: #f1f4f9; color: #333; font-size: 13px; font-weight: 500; cursor: pointer;
            transition: all 0.15s;
        }
        #trendingSuggestions .ts-item:hover { background: #247ecd; color: #fff; }


