    /* Cookies CSS */
    body {
        margin: 0;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        color: #343a40;
        background: #f8f9fa;
        padding-bottom: 90px; /* keep content clear of the fixed bottom nav */
    }
    .cookie-page-header {
        background: #ffffff;
        border-bottom: 1px solid #e9ecef;
        padding: 18px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .cookie-page-header a {
        color: #495057;
        font-size: 18px;
    }
    .cookie-page-header h1 {
        font-size: 18px;
        margin: 0;
    }
    .cookie-page-content {
        max-width: 720px;
        margin: 0 auto;
        padding: 24px 20px;
        line-height: 1.6;
        font-size: 14px;
    }
    .cookie-page-content h2 {
        font-size: 16px;
        color: #28a745;
        margin-top: 28px;
    }
    .cookie-page-content table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 12px;
        font-size: 13px;
    }
    .cookie-page-content th,
    .cookie-page-content td {
        text-align: left;
        padding: 8px 10px;
        border: 1px solid #e9ecef;
    }
    .cookie-page-content th {
        background: #f1f3f5;
    }
    .cookie-choice-box {
        background: #ffffff;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        padding: 16px;
        margin-top: 20px;
    }
    .cookie-btn {
        border: none;
        border-radius: 8px;
        padding: 9px 18px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        margin-right: 8px;
    }
    .cookie-btn-accept { background: #28a745; color: #ffffff; }
    .cookie-btn-decline { background: #f1f3f5; color: #495057; }
    #cookieChoiceStatus {
        margin-top: 10px;
        font-size: 13px;
        color: #6c757d;
    }

    /* --- Index CSS Design Styling Part --- */
        /* Harmonizing title sizes and colors across sections */
        .subcat-title, 
        .buyer-section-title,
        .wholesale-section-title {
            color: #333 !important;
            font-weight: 700;
            font-size: 1.25rem !important; /* Matches Buyer Requests section title size */
            margin: 0 !important;
        }

        /* --- WHOLESALE SLIDER SECTION STYLES --- */
        .wholesale-section {
            background-color: #ffffff !important; 
            padding: 15px 0px 10px 0px;
            width: 100%;
            box-sizing: border-box;
        }

        .wholesale-header {
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        /* Both Wholesale and Buyer Requests "See All" restored to orange */
        .wholesale-see-all,
        .buyer-see-all {
            color: #e15b24 !important;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none !important;
        }

        .wholesale-slider {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding: 0 15px 10px 15px; 
            gap: 12px;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            box-sizing: border-box;
            width: 100%;
        }

        .wholesale-slider::-webkit-scrollbar {
            display: none;
        }

        /* Wholesale card styled matching screenshot reference without stars/locations */
        .wholesale-card {
            flex: 0 0 135px;
            min-width: 135px;
            text-decoration: none !important;
            color: inherit;
            display: flex;
            flex-direction: column;
        }

        .wholesale-img-wrapper {
            position: relative;
            width: 100%;
            height: 125px;
            border-radius: 12px;
            overflow: hidden;
            background-color: #f5f5f5;
        }

        .wholesale-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .wholesale-card-title {
            font-size: 13px;
            font-weight: 500;
            color: #333;
            margin-top: 6px;
            margin-bottom: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .wholesale-card-price {
            font-size: 14px;
            font-weight: 700;
            color: #e15b24;
            line-height: 1.2;
        }

        .wholesale-card-old-price {
            font-size: 11px;
            color: #a0aec0;
            text-decoration: line-through;
            margin-top: 1px;
        }

        /* Outer section container wrapping background updates safely */
        .buyer-requests-section {
            background-color: #f9f9f9 !important; 
            padding: 15px 0px 5px 0px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            width: 100%;
            box-sizing: border-box;
        }

        .buyer-requests-header {
            padding: 0 15px;
            box-sizing: border-box;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Slidable window container setup */
        .buyer-requests-slider {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding: 15px; 
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            box-sizing: border-box;
            width: 100%;
        }

        .buyer-request-card {
            flex: 0 0 calc(100% - 0px); 
            min-width: calc(100% - 0px);
            box-sizing: border-box;
            scroll-snap-align: center;
            background-color: #ffffff !important; 
            border: 1px solid #e2e8f0; 
            border-radius: 12px; 
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); 
            padding: 16px; 
        }

        .buyer-requests-slider::-webkit-scrollbar {
            height: 0px;
            background: transparent;
        }

        /* View More Container Setup */
        .view-more-container {
            text-align: center;
            margin: 25px 0 15px 0;
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .view-more-btn {
            display: inline-block;
            background-color: #ffffff;
            color: #333333;
            border: 1px solid #cccccc;
            padding: 12px 30px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 25px;
            text-decoration: none !important;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.2s ease-in-out;
            width: 80%;
            max-width: 300px;
        }
        
        .view-more-btn:active, .view-more-btn:hover {
            background-color: #f5f5f5;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transform: translateY(-1px);
        }

        .create-post-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #28a745;
            color: #ffffff !important;
            border: none;
            padding: 12px 25px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none !important;
            box-shadow: 0 2px 6px rgba(40, 167, 69, 0.2);
            transition: all 0.2s ease-in-out;
            width: 50%;
            max-width: 220px;
        }

        .create-post-btn i {
            font-size: 18px;
            margin-right: 8px;
        }

        .create-post-btn:active {
            background-color: #218838;
            transform: scale(0.98);
        }

        .scroll-top-btn {
            position: fixed;
            bottom: 75px;
            right: 20px;
            background-color: #28a745;
            color: #ffffff !important;
            border: none;
            outline: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.35);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease-in-out;
            z-index: 999;
        }
        
        .scroll-top-btn.show {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top-btn:hover, 
        .scroll-top-btn:active {
            background-color: #218838;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(33, 136, 56, 0.45);
        }
    
     /* Privacy CSS */
        :root {
            --primary-green: #28a745;
            --primary-green-dark: #1e7e34;
            --primary-green-light: #d4edda;
            --bg-gradient-start: #11998e;
            --bg-gradient-end: #38ef7d;
            --gray-light: #f8f9fa;
            --text-dark: #2d3748;
        }

        body {
            background-color: var(--gray-light);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--text-dark);
            margin: 0;
            padding-bottom: 60px;
        }

        /* Fixed Navigation Bar */
        .search-header-nav {
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            padding: 16px 20px;
        }
        .search-header-nav .title-text {
            font-size: 18px;
            font-weight: 600;
            color: #212529;
        }
        .back-btn-link {
            font-size: 30px;
            line-height: 1;
            color: var(--primary-green);
            text-decoration: none !important;
        }

        /* Hero Header Section */
        .legal-hero-banner {
            background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
            padding: 40px 20px;
            color: #ffffff;
            border-bottom-left-radius: 24px;
            border-bottom-right-radius: 24px;
        }
        .legal-hero-banner h1 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .legal-hero-banner p {
            font-size: 14px;
            opacity: 0.95;
            margin-bottom: 0;
        }

        /* Layout Content Card */
        .legal-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            border: none;
            margin-top: -20px;
            margin-bottom: 24px;
            position: relative;
            z-index: 5;
        }

        /* Content Styling Typography */
        h3.section-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a202c;
            margin-top: 24px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #edf2f7;
            padding-bottom: 8px;
        }
        h3.section-title:first-of-type {
            margin-top: 0;
        }
        h3.section-title i {
            color: var(--primary-green);
            font-size: 18px;
        }
        p, li {
            font-size: 14px;
            line-height: 1.6;
            color: #4a5568;
        }
        ul {
            padding-left: 20px;
            margin-bottom: 16px;
        }
        li {
            margin-bottom: 6px;
        }
        .highlight-text {
            color: var(--primary-green-dark);
            font-weight: 600;
        }
    
        /* Terms CSS */
        :root {
            --primary-green: #28a745;
            --primary-green-dark: #1e7e34;
            --primary-green-light: #d4edda;
            --bg-gradient-start: #11998e;
            --bg-gradient-end: #38ef7d;
            --gray-light: #f8f9fa;
            --text-dark: #2d3748;
            --gold-color: #d4af37;
        }

        body {
            background-color: var(--gray-light);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--text-dark);
            margin: 0;
            padding-bottom: 60px;
        }

        /* Fixed Navigation Bar */
        .search-header-nav {
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            padding: 16px 20px;
        }
        .search-header-nav .title-text {
            font-size: 18px;
            font-weight: 600;
            color: #212529;
        }
        .back-btn-link {
            font-size: 30px;
            line-height: 1;
            color: var(--primary-green);
            text-decoration: none !important;
        }

        /* Hero Header Section */
        .legal-hero-banner {
            background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
            padding: 40px 20px;
            color: #ffffff;
            border-bottom-left-radius: 24px;
            border-bottom-right-radius: 24px;
            text-center;
        }
        .legal-hero-banner h1 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .legal-hero-banner p {
            font-size: 14px;
            opacity: 0.95;
            margin-bottom: 0;
        }

        /* Tab Navigation Bar */
        .nav-pills-custom {
            background: #ffffff;
            padding: 6px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
            margin: -25px auto 25px auto;
            max-width: 480px;
            display: flex;
            position: relative;
            z-index: 10;
        }
        .nav-pills-custom .nav-link {
            flex: 1;
            text-align: center;
            border-radius: 50px;
            color: #718096;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 15px;
            border: none;
            background: transparent;
            transition: all 0.2s ease;
        }
        .nav-pills-custom .nav-link.active {
            background-color: var(--primary-green);
            color: #ffffff !important;
        }

        /* Layout Cards */
        .legal-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            border: none;
            margin-bottom: 24px;
        }

        /* Operational Section Callouts */
        .how-we-work-box {
            background-color: #f0fff4;
            border-left: 4px solid var(--primary-green);
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 24px;
        }
        .how-we-work-box h4 {
            color: var(--primary-green-dark);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        /* Content Styling */
        h3.section-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a202c;
            margin-top: 0;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3.section-title i {
            color: var(--primary-green);
        }
        p, li {
            font-size: 14px;
            line-height: 1.6;
            color: #4a5568;
        }
        ul {
            padding-left: 20px;
            margin-bottom: 16px;
        }
        li {
            margin-bottom: 8px;
        }

        .gold-star-inline {
            color: var(--gold-color);
            font-weight: 600;
        }
        

    /* Header Base Styles */
    .custom-header {
        position: sticky;
        top: 0;
        z-index: 1030;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 70" preserveAspectRatio="none"><rect width="1000" height="70" fill="%23f5f6f7"/><path d="M0,0 L350,0 L375,70 L0,70 Z" fill="%23198754"/><path d="M350,0 L375,70" fill="none" stroke="%23ffffff" stroke-width="8"/><path d="M1000,0 L900,70 L1000,70 Z" fill="%23ff0000"/><path d="M900,70 L1000,0" fill="none" stroke="%23ffffff" stroke-width="8"/></svg>');
        background-size: 100% 100%;
        background-repeat: no-repeat;
        box-shadow: 0 2px 5px rgba(0,0,0,0.06);
    }
    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        position: relative;
    }
    .action-icon-btn {
        background: none;
        border: none;
        font-size: 18px;
        color: #198754; 
        cursor: pointer;
        padding: 5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
    }
    .header-location-badge {
        font-size: 13px;
        font-weight: 600;
        color: #198754;
        background: #e8f5e9;
        padding: 6px 14px;
        border-radius: 20px;
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .header-location-badge:hover {
        background: #198754;
        color: #fff;
    }

    /* LOCATION DROPDOWN MENU STYLING */
    .location-dropdown-card {
        display: none;
        position: absolute;
        top: 115%;
        right: 0;
        width: 380px;
        max-width: 92vw;
        max-height: 80vh;
        overflow-y: auto;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.18);
        border: 1px solid #e2e8f0;
        z-index: 1050;
        padding: 16px;
        text-align: left;
    }
    .location-dropdown-card.show {
        display: block;
    }
    
    .loc-selected-pill {
        background-color: #e3edf7;
        color: #2c3e50;
        font-weight: 600;
        padding: 8px 14px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 14px;
    }
    .loc-selected-pill .clear-loc-btn {
        color: #6c757d;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        line-height: 1;
        cursor: pointer;
    }
    .loc-selected-pill .clear-loc-btn:hover {
        color: #dc3545;
    }

    .loc-search-box {
        position: relative;
        margin-bottom: 16px;
    }
    .loc-search-box input {
        width: 100%;
        padding: 8px 12px 8px 36px;
        border-radius: 8px;
        border: 1px solid #ced4da;
        font-size: 14px;
        outline: none;
    }
    .loc-search-box input:focus {
        border-color: #198754;
    }
    .loc-search-box i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
        font-size: 14px;
    }

    .loc-section-title {
        font-size: 13px;
        font-weight: 700;
        color: #6c757d;
        margin-bottom: 8px;
        margin-top: 12px;
    }
    .loc-grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px 12px;
    }
    .loc-item-link {
        font-size: 13.5px;
        color: #198754;
        font-weight: 600;
        text-decoration: none !important;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 2px 0;
    }
    .loc-item-link:hover {
        color: #0d6efd;
    }
    .loc-item-link.all-kenya-link {
        color: #fd7e14;
        font-weight: 700;
    }

    /* COLLAPSIBLE SEARCH BAR STYLING */
    .search-collapse-wrapper {
        background-color: #fff;
        border-bottom: 1px solid #f1f3f5;
        padding: 10px 15px 15px 15px;
    }
    .header-pill-input {
        width: 100%;
        padding: 10px 42px 10px 42px !important;
        border-radius: 35px !important;
        border: 1.5px solid #198754 !important;
        background-color: #ffffff !important;
        font-size: 15px;
        outline: none !important;
        color: #333;
        box-shadow: none !important;
    }
    .header-pill-input:focus {
        border-color: #198754 !important;
        box-shadow: 0 0 5px rgba(25, 135, 84, 0.3) !important;
    }

    /* RECENT & POPULAR SEARCH STYLING */
    .recent-pill {
        font-size: 13px;
        background-color: #f8f9fa;
        color: #0d6efd;
        padding: 3px 14px;
        border-radius: 20px;
        border: 1px solid #e0e6ed;
        text-decoration: none !important;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
    }
    .recent-pill:hover {
        background-color: #eef5ff;
    }
    .popular-dropdown-card {
        background-color: #f4f5f7;
        border-radius: 16px;
        padding: 16px 20px;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #eaedf1;
    }
    .popular-dropdown-title {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: #5a6872;
        text-transform: uppercase;
        margin-bottom: 12px;
    }
    .popular-dropdown-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .popular-search-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #2c3e50;
        text-decoration: none !important;
        font-size: 15px;
        font-weight: 600;
    }
    .popular-search-item:hover {
        color: #198754;
    }
    .popular-search-item i {
        color: #7b8b9a;
        font-size: 14px;
    }

    /* MOBILE APP INSTALL BANNER STYLING */
    .mobile-app-banner {
        display: none;
        background-color: #f5f5f5; /* Smoke White */
        border-bottom: 1px solid #e0e0e0;
        padding: 8px 12px;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        position: relative;
        z-index: 1029;
        gap: 8px;
    }
    @media (max-width: 767.88px) {
        .mobile-app-banner.is-mobile-browser {
            display: flex;
        }
    }
    .mobile-app-banner-left {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
        min-width: 0;
    }
    .mobile-app-play-icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }
    .mobile-app-banner-text {
        font-size: 12px;
        font-weight: 600;
        color: #333333;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mobile-app-banner-right {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }
    .mobile-app-install-btn {
        background-color: #198754;
        color: #ffffff !important;
        font-size: 12px;
        font-weight: 600;
        padding: 5px 14px;
        border-radius: 20px;
        text-decoration: none !important;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        box-shadow: 0 2px 4px rgba(25, 135, 84, 0.2);
        transition: all 0.2s ease;
    }
    .mobile-app-install-btn:hover {
        background-color: #146c43;
    }
    .mobile-app-banner-close {
        background: none;
        border: none;
        color: #666666;
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        padding: 2px 4px;
        opacity: 0.8;
    }
    .mobile-app-banner-close:hover {
        opacity: 1;
        color: #000000;
    }

    
    /* Header 2 Base Styles */
    .custom-header {
        position: sticky;
        top: 0;
        z-index: 1030;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 70" preserveAspectRatio="none"><rect width="1000" height="70" fill="%23f5f6f7"/><path d="M0,0 L350,0 L375,70 L0,70 Z" fill="%23198754"/><path d="M350,0 L375,70" fill="none" stroke="%23ffffff" stroke-width="8"/><path d="M1000,0 L900,70 L1000,70 Z" fill="%23ff0000"/><path d="M900,70 L1000,0" fill="none" stroke="%23ffffff" stroke-width="8"/></svg>');
        background-size: 100% 100%;
        background-repeat: no-repeat;
        box-shadow: 0 2px 5px rgba(0,0,0,0.06);
    }
    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        position: relative;
    }
    .action-icon-btn {
        background: none;
        border: none;
        font-size: 18px;
        color: #198754; 
        cursor: pointer;
        padding: 5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
    }
    .action-icon-btn:focus {
        outline: none;
    }

    .header-location-badge {
        font-size: 13px;
        font-weight: 600;
        color: #198754;
        background: #e8f5e9;
        padding: 6px 14px;
        border-radius: 20px;
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .header-location-badge:hover {
        background: #198754;
        color: #fff;
    }

    /* LOCATION DROPDOWN MENU STYLING */
    .location-dropdown-card {
        display: none;
        position: absolute;
        top: 115%;
        right: 0;
        width: 380px;
        max-width: 92vw;
        max-height: 80vh;
        overflow-y: auto;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.18);
        border: 1px solid #e2e8f0;
        z-index: 1050;
        padding: 16px;
        text-align: left;
    }
    .location-dropdown-card.show {
        display: block;
    }
    
    .loc-selected-pill {
        background-color: #e3edf7;
        color: #2c3e50;
        font-weight: 600;
        padding: 8px 14px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 14px;
    }
    .loc-selected-pill .clear-loc-btn {
        color: #6c757d;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        line-height: 1;
        cursor: pointer;
    }
    .loc-selected-pill .clear-loc-btn:hover {
        color: #dc3545;
    }

    .loc-search-box {
        position: relative;
        margin-bottom: 16px;
    }
    .loc-search-box input {
        width: 100%;
        padding: 8px 12px 8px 36px;
        border-radius: 8px;
        border: 1px solid #ced4da;
        font-size: 14px;
        outline: none;
    }
    .loc-search-box input:focus {
        border-color: #198754;
    }
    .loc-search-box i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
        font-size: 14px;
    }

    .loc-section-title {
        font-size: 13px;
        font-weight: 700;
        color: #6c757d;
        margin-bottom: 8px;
        margin-top: 12px;
    }
    .loc-grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px 12px;
    }
    .loc-item-link {
        font-size: 13.5px;
        color: #198754;
        font-weight: 600;
        text-decoration: none !important;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 2px 0;
    }
    .loc-item-link:hover {
        color: #0d6efd;
    }
    .loc-item-link.all-kenya-link {
        color: #fd7e14;
        font-weight: 700;
    }

    /* COLLAPSIBLE SEARCH BAR STYLING */
    .search-collapse-wrapper {
        background-color: #fff;
        border-bottom: 1px solid #f1f3f5;
        padding: 10px 15px 15px 15px;
    }
    .header-pill-input {
        width: 100%;
        padding: 10px 42px 10px 42px !important;
        border-radius: 35px !important;
        border: 1.5px solid #198754 !important;
        background-color: #ffffff !important;
        font-size: 15px;
        outline: none !important;
        color: #333;
        box-shadow: none !important;
    }
    .header-pill-input:focus {
        border-color: #198754 !important;
        box-shadow: 0 0 5px rgba(25, 135, 84, 0.3) !important;
    }

    /* RECENT & POPULAR SEARCH STYLING */
    .recent-pill {
        font-size: 13px;
        background-color: #f8f9fa;
        color: #0d6efd;
        padding: 3px 14px;
        border-radius: 20px;
        border: 1px solid #e0e6ed;
        text-decoration: none !important;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
    }
    .recent-pill:hover {
        background-color: #eef5ff;
    }
    .popular-dropdown-card {
        background-color: #f4f5f7;
        border-radius: 16px;
        padding: 16px 20px;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #eaedf1;
    }
    .popular-dropdown-title {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: #5a6872;
        text-transform: uppercase;
        margin-bottom: 12px;
    }
    .popular-dropdown-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .popular-search-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #2c3e50;
        text-decoration: none !important;
        font-size: 15px;
        font-weight: 600;
    }
    .popular-search-item:hover {
        color: #198754;
    }
    .popular-search-item i {
        color: #7b8b9a;
        font-size: 14px;
    }

    