                .exp-chips-bar {
                        touch-action: pan-x;
                }

                @media (max-width: 600px) {
                    .exp-chips-bar-wrap {
                        padding: 0 2px;
                    }
                    .exp-chips-arrow {
                        width: 44px;
                        height: 44px;
                        font-size: 24px;
                        margin: 0 2px;
                        z-index: 3;
                    }
                    .exp-chips-bar {
                        gap: 4px;
                        padding: 8px 0;
                        min-height: 48px;
                    }
                }
                /* ── Variables ── */
        :root {
            --tm-primary:   #0e787d;
            --tm-teal:      #72CBCF;
            --tm-teal-lt:   #e6f4f5;
            --tm-bg:        #f0f4f5;
            --tm-card:      #ffffff;
            --tm-border:    #e2e8ea;
            --tm-muted:     #6b8081;
            --tm-text:      #1a2b2c;
            --tm-radius:    10px;
            --tm-shadow:    0 2px 8px rgba(14,120,125,.08);
        }
               
               .exp-header-row-flex {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 18px;
                    flex-wrap: wrap;
                }


                .exp-card-row {
                display: flex;
                align-items: center;
                gap: 8px;
                }
                .exp-card-type-icon {
                width: 22px;
                height: 22px;
                object-fit: contain;
                margin-right: 6px;
                }
                .exp-card-name {
                font-weight: normal;
                font-size: 1.1em;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                }

                .exp-type-filters-icons {
                    gap: 8px;
                    margin-top: 0;
                }
                .exp-type-filters-icons .exp-type-btn {
                    min-width: 38px;
                    min-height: 38px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 18px;
                    color: var(--tm-muted);
                    transition: all .15s;
                }
                /* .exp-type-filters-icons .exp-type-btn.active {
                    border-color: var(--tm-primary);
                    background: var(--tm-primary);
                    color: #fff;
                }
                .exp-type-filters-icons .exp-type-btn img {
                    width: 22px;
                    height: 22px;
                    object-fit: contain;
                }
                .exp-type-filters-icons .exp-type-btn input[type="checkbox"] {
                    margin: 0 2px 0 0;
                    pointer-events: none;
                    accent-color: var(--tm-primary);
                } */
        .thumb-text-centered {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.1em;
            font-weight: 700;
            color: #72CBCF;
            text-align: center;
            word-break: break-word;
            padding: 0 10px;
        }
 
       
#content,
#explore-root {
    overflow-x: hidden;
}
        /* ── Explore page wrapper — sits inside your existing #content ── */
        #explore-root {
            padding: 0;
            background: var(--tm-bg);
               height: stretch;
        }

        /* ── Sticky page header (search + filters) ── */
        .exp-header {
            /* position: sticky; */
            top: 0;
            z-index: 200;
            background: #fff;
            border-bottom: 1px solid var(--tm-border);
            padding: 10px 16px;
        }
        .exp-header-row1 {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .exp-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--tm-primary);
            display: flex;
            align-items: center;
            gap: 7px;
            
        }
        .exp-title img {
            width: 22px;
            height: 22px;
            object-fit: contain;
        }

        /* Search box */
        .exp-search-wrap {
            position: relative;
            flex: 1;
            min-width: 180px;
            max-width: 400px;
        }
        .exp-search-wrap i.search-ico {
            position: absolute;
            left: 11px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--tm-muted);
            font-size: 13px;
            pointer-events: none;
        }
        .exp-search-input {
            width: 100%;
            padding: 8px 32px 8px 32px;
            border: 1px solid var(--tm-border);
            border-radius: 30px;
            font-size: 13px;
            background: var(--tm-bg);
            color: var(--tm-text);
            outline: none;
            transition: border-color .2s;
        }
        .exp-search-input:focus {
            border-color: var(--tm-primary);
            background: #fff;
        }
        .exp-search-clear {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 18px;
            color: var(--tm-muted);
            cursor: pointer;
            display: none;
            line-height: 1;
            padding: 0;
        }

        /* Search dropdown */
        .exp-search-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid var(--tm-border);
            border-radius: var(--tm-radius);
            box-shadow: 0 8px 24px rgba(0,0,0,.1);
            max-height: 280px;
            overflow-y: auto;
            z-index: 9999;
        }
        .exp-search-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 14px;
            cursor: pointer;
            border-bottom: 1px solid var(--tm-border);
            transition: background .12s;
        }
        .exp-search-item:last-child { border-bottom: none; }
        .exp-search-item:hover { background: var(--tm-teal-lt); }
        .exp-search-item img {
            width: 30px; height: 30px;
            object-fit: contain;
            border-radius: 5px;
            background: #eee;
        }
        .exp-search-item-name { font-size: 13px; font-weight: 600; }
        .exp-search-item-sub  { font-size: 11px; color: var(--tm-muted); }

        /* Type filter icons row */
        .exp-type-filters {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
          .exp-type-btn.active input[type="checkbox"] {
    accent-color: var(--tm-primary); /* or any color you want */
}
        button:focus {
            outline: none !important;
        }
        .exp-type-btn {
            display: flex;
            align-items: center;
             border: transparent;
            
            /* border: 1.5px solid var(--tm-border); */
            border-radius: 20px;
            background: #fff;
            cursor: pointer;
            font-size: 12px;
            font-weight: 600;
            color: var(--tm-muted);
            transition: all .15s;
            white-space: nowrap;
        }
        .exp-type-btn img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }
       
       
 

        /* ── Chips bar ── */
     .exp-chips-bar {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-wrap: nowrap; /* important */
    gap: 8px;
    padding: 10px 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.exp-chips-bar::-webkit-scrollbar {
    display: none;
}

.exp-chips-arrow {
    background: rgba(255,255,255,0.55);
    border: 1.5px solid rgba(226,232,234,0.5);
    color: var(--tm-muted);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    margin: 0 4px;
    transition: all .18s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(14,120,125,.06);
    opacity: 0.7;
    backdrop-filter: blur(2px);
}
.exp-chips-arrow:hover {
    border-color: var(--tm-primary);
    color: var(--tm-primary);
    background: rgba(114,203,207,0.18);
    opacity: 1;
}
.exp-chips-arrow:disabled,
.exp-chips-arrow[aria-disabled="true"] {
    opacity: 0.15;
    pointer-events: none;
}
.exp-chips-arrow.left {
    order: 0;
}
.exp-chips-arrow.right {
    order: 2;
}
.exp-chips-bar {
    order: 1;
    flex: 1 1 auto;

}

        .exp-chip {
            display: inline-flex;
            align-items: baseline;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
            border: 2px solid var(--tm-border);
            background: var(--tm-bg);
            color: var(--tm-muted);
            transition: all .18s;
            flex-shrink: 0;
            gap: 8px;
        }
        .exp-chip .chip-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--tm-muted);
            flex-shrink: 0;
        }
        .exp-chip:hover {
            border-color: var(--tm-primary);
            color: var(--tm-primary);
            background: var(--tm-teal-lt);
        }
        .exp-chip.active {
            color: #fff;
            border-color: transparent;
        }
        .exp-chip.active .chip-dot { background: rgba(255,255,255,.7); }

        /* ── Games area ── */
       .exp-games-area {
        padding: 10px 16px;
        width: 100%;
        }
        .exp-section-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
            flex-wrap: wrap;
            gap: 8px;
        }
        .exp-section-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--tm-text);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .exp-section-count {
                background: var(--tm-primary);
                color: #fff;
                font-size: 11px;
                font-weight: 700;
                padding: 2px 8px;
                border-radius: 20px;
        }

        @media (max-width: 600px) {
            .exp-section-count {
                font-size: 13px;
                padding: 4px 12px;
                border-radius: 16px;
            }
                    .modal-content {
                border-radius: 18px !important;
                padding: 12px 6px !important;
                width: 95vw !important;
                min-width: unset !important;
                max-width: 98vw !important;
                margin: 0 auto !important;
            }
            .modal-body {
                padding: 10px 4px !important;
                text-align: center !important;
            }
            .editdisabledpopupclass {
                font-size: 17px !important;
                line-height: 1.4 !important;
                word-break: break-word;
                text-align: center !important;
            }
            .modal-footer.savebtn {
                flex-direction: column !important;
                gap: 10px !important;
                display: flex !important;
                align-items: stretch !important;
                padding: 0 0 8px 0 !important;
                margin: 0 !important;
            }
            .exp-popup-btn {
                width: 100% !important;
                min-width: 0 !important;
                font-size: 16px !important;
                padding: 12px 0 !important;
            }

        }
        .exp-view-all {
            font-size: 12px;
            font-weight: 700;
            color: var(--tm-primary);
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 14px;
            border-radius: 20px;
            border: 1px solid var(--tm-primary);
            background: var(--tm-teal-lt);
            transition: all .15s;
            text-decoration: none;
        }
        .exp-view-all:hover { background: var(--tm-primary); color: #fff; text-decoration: none; }

        /* ── Game grid ── */
       .exp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
            gap: 12px;
        }
  

        /* ── Game card ── */
        .exp-card {
            background: var(--tm-card);
            border-radius: var(--tm-radius);
            overflow: hidden;
            box-shadow: var(--tm-shadow);
            cursor: pointer;
            border: 1px solid var(--tm-border);
            transition: transform .18s, box-shadow .18s;
            position: relative;
            animation: expFadeIn .3s ease both;
            max-width: 95%;
            margin-bottom: 5%;
        }
        .exp-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(14,120,125,.14);
        }
        @keyframes expFadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .exp-card-thumb {
            height: 180px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .exp-card-thumb img.thumb-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform .25s;
        }
        .exp-card:hover .thumb-logo { transform: scale(1.04); }

        /* Lazy image */
        .exp-card-thumb img.lazy-img {
            opacity: 0;
            transition: opacity .3s;
        }
        .exp-card-thumb img.lazy-img.loaded { opacity: 1; }

        .exp-card-actions {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,.7));
            padding: 22px 8px 8px;
            display: flex;
            justify-content: flex-end;
            gap: 5px;
            opacity: 0;
            transition: opacity .18s;
        }
        .exp-card:hover .exp-card-actions { opacity: 1; }

        .exp-act-btn {
            width: 28px; height: 28px;
            background: rgba(255,255,255,.2);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,.3);
            border-radius: 6px;
            display: flex; align-items: center; justify-content: center;
            color: #fff;
            font-size: 11px;
            cursor: pointer;
            text-decoration: none;
            transition: background .15s;
        }
        .exp-act-btn:hover { background: rgba(255,255,255,.35); color: #fff; }
        .exp-act-btn.play-btn {
            width: 32px; height: 32px;
            background: var(--tm-primary);
            border-color: transparent;
            border-radius: 50%;
        }

        .lock-ico {
            position: absolute;
            top: 7px; right: 7px;
            width: 22px; height: 22px;
            background: rgba(0,0,0,.5);
            border-radius: 5px;
            display: flex; align-items: center; justify-content: center;
            font-size: 11px; color: #fff;
        }

        .exp-card-body {
            padding:11px 11px 11px;
        }
        .exp-card-name {
            font-size: 18px;
            font-weight: normal;
            color: var(--tm-text);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            
        }
        .exp-card-type {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            color: var(--tm-muted);
        }
        .exp-card-type img {
            width: 16px; height: 16px;
            object-fit: contain;
        }

        /* ── Empty state ── */
        .exp-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 50px 20px;
            color: var(--tm-muted);
        }
        .exp-empty i { font-size: 36px; margin-bottom: 12px; opacity: .4; display: block; }

 

/* FIX 4: Type filter buttons too big on mobile */
@media (max-width: 480px) {
    .exp-type-filters-icons .exp-type-btn {
        min-width: 28px;
        min-height: 28px;
    }
    .exp-type-btn img {
        width: 16px;
        height: 16px;
    }
    .exp-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

 

/* FIX 6: Remove the bad mobile top offset entirely */
@media (max-width: 768px) {
    /* DELETE the .exp-chips-bar { top: 109px; } line if still present */
    .exp-chips-bar {
        min-width: 0;
        flex: 1 1 auto;
    }
    .exp-chips-arrow {
        flex-shrink: 0;  /* ADD — prevents arrows from being squished away */
        display: flex !important;
    }
}

/* ══════════════════════════════════════
   FIX 1 — Type filter buttons with check indicator
══════════════════════════════════════ */
.exp-type-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 2px solid var(--tm-border);
    background: var(--tm-bg);
    cursor: pointer;
    transition: all .18s ease;
    padding: 0;
    outline: none;
    flex-shrink: 0;
}

/* The check indicator — hidden by default, shown when active */
.exp-type-check {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 14px;
    height: 14px;
    background: var(--tm-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all .15s ease;
    z-index: 2;
    border: 1.5px solid #fff;
}
.exp-type-check i {
    font-size: 7px;
    color: #fff;
    line-height: 1;
}

/* Hover */
.exp-type-btn:hover {
    border-color: var(--tm-teal);
    background: var(--tm-teal-lt);
    transform: translateY(-1px);
}
.exp-type-btn:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

/* Default — slightly desaturated */
.exp-type-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: all .18s ease;
    filter: grayscale(30%) opacity(0.8);
}

/* Active state */
.exp-type-btn.active {
    border-color: var(--tm-primary);
    background: var(--tm-teal-lt);
    box-shadow: 0 2px 8px rgba(14,120,125,.2);
}
.exp-type-btn.active img {
    filter: grayscale(0%) opacity(1);
}
.exp-type-btn.active .exp-type-check {
    opacity: 1;
    transform: scale(1);
}

/* ══════════════════════════════════════
   FIX 2 — Download popup buttons
══════════════════════════════════════ */
.exp-popup-btn {
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .18s ease;
    min-width: 120px;
}
.exp-popup-btn--primary {
    background: var(--tm-primary) !important;
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(14,120,125,.3) !important;
}
.exp-popup-btn--primary:hover {
    background: #0a5f63 !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(14,120,125,.4) !important;
    color: #fff !important;
}
.exp-popup-btn--secondary {
    background: transparent !important;
    color: var(--tm-muted) !important;
    border: 1.5px solid var(--tm-border) !important;
}
.exp-popup-btn--secondary:hover {
    background: #f5f5f5 !important;
    color: var(--tm-text) !important;
    border-color: var(--tm-muted) !important;
}

/* ══════════════════════════════════════
   FIX 3 — Chips bar: arrows + bar always one line
══════════════════════════════════════ */
.exp-chips-bar-wrap {
    display: flex;
    flex-direction: row;        /* force one line */
    align-items: center;
    width: 100%;
    overflow: hidden;           /* clips bar overflow cleanly */
    flex-wrap: nowrap;          /* NEVER wrap arrows to next line */
    gap: 0;
}

.exp-chips-arrow {
    flex-shrink: 0;             /* arrows NEVER shrink */
    flex-grow: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;            /* hard min so they can't collapse */
    background: rgba(255,255,255,0.8);
    border: 1.5px solid var(--tm-border);
    color: var(--tm-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all .18s;
    z-index: 2;
    margin: 0 4px;
}
.exp-chips-arrow:hover {
    border-color: var(--tm-primary);
    color: var(--tm-primary);
    background: var(--tm-teal-lt);
}
.exp-chips-arrow:disabled,
.exp-chips-arrow[aria-disabled="true"] {
    opacity: 0.2;
    pointer-events: none;
    cursor: default;
}

.exp-chips-bar {
    flex: 1 1 auto;
    min-width: 0;               /* critical — lets bar shrink */
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px 4px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.exp-chips-bar::-webkit-scrollbar { display: none; }

@media (max-width: 480px) {
    .exp-chips-arrow {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 11px;
        margin: 0 2px;
    }
}

   /* Ensure search dropdown overlays all UI elements */
            #expSearchDropdown {
                z-index: 9999 !important;
                position: absolute;
                top: calc(100% + 6px);
                left: 0;
                right: 0;
                background: #fff;
                border: 1px solid #e2e8ea;
                border-radius: 10px;
                box-shadow: 0 8px 24px rgba(0,0,0,.13);
                max-height: 320px;
                overflow-y: auto;
                display: none;
            }
        /* --- HERO TITLE & SUBTITLE TWEAKS --- */
        .exp-hero-title {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.1;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }
        .exp-hero-title span { color: #72CBCF; }
        .exp-hero-sub {
            font-size: 1.08rem;
            color: #e6f4f5;
            margin-bottom: 18px;
            white-space: nowrap;
            overflow: hidden;
           
        }
    /* ══════════════════════════════════════════
       HERO — bold layout, your teal site colours
    ══════════════════════════════════════════ */
    .exp-hero {
        background: linear-gradient(135deg, #0e787d 0%, #0a5f63 55%, #084f53 100%);
        position: relative;
        overflow: hidden;
        padding: 44px 32px 36px;
        border-bottom: 3px solid rgba(114,203,207,.3);
    }
    .exp-hero::before {
        content:'';
        position:absolute; top:-100px; right:-120px;
        width:480px; height:480px;
        background:radial-gradient(circle, rgba(114,203,207,.22) 0%, transparent 70%);
        pointer-events:none;
    }
    .exp-hero::after {
        content:'';
        position:absolute; bottom:-80px; left:-80px;
        width:340px; height:340px;
        background:radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
        pointer-events:none;
    }

    /* eyebrow pill */
    .exp-hero-eyebrow {
        display:inline-flex; align-items:center; gap:7px;
        background:rgba(255,255,255,.13);
        border:1px solid rgba(255,255,255,.22);
        border-radius:100px; padding:4px 14px;
        margin-bottom:14px;
        font-size:11px; font-weight:700; color:#fff;
        letter-spacing:.8px; text-transform:uppercase;
        position:relative; z-index:1;
    }
    .exp-hero-edot {
        width:5px; height:5px;
        background:#72CBCF; border-radius:50%;
        animation:hPulse 2s infinite;
    }
    @keyframes hPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.35;transform:scale(.7)}}

    /* big title */
    .exp-hero-title {
        font-size: clamp(28px, 4.8vw, 68px) !important;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -1.5px;
        color: #fff;
        margin-bottom: 10px;
        position: relative; z-index:1;
    }
    .exp-hero-title span { color: #72CBCF; }

    /* subtitle */
    .exp-hero-sub {
        font-size: 15px;
        color: rgba(255,255,255,.72);
        font-weight: 400;
        margin-bottom: 24px !important;
       
        line-height: 1.6;
        position: relative; z-index:1;

    }

    /* hero search */
 /* ───────── SEARCH WRAP ───────── */
.exp-hero-search-wrap {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left:auto;
}

/* ───────── INPUT ───────── */
.exp-hero-search-wrap input {
    width: 100%;
    height: 46px;
    padding: 0 44px 0 42px;

    background: #fff;
    border: 1.5px solid #e2e8ea;
    border-radius: 10px;

    font-size: 14px;
    color: #1a2b2c;

    outline: none;
    transition: all 0.2s ease;
}

/* placeholder */
.exp-hero-search-wrap input::placeholder {
    color: #9aaeb0;
}

/* focus state */
.exp-hero-search-wrap input:focus {
    border-color: var(--tm-primary);
    box-shadow: 0 0 0 2px rgba(14,120,125,0.12);
}

/* ───────── SEARCH ICON ───────── */
.exp-hero-search-wrap .hsi {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #6b8081;
    pointer-events: none;
}

/* ───────── CLEAR BUTTON ───────── */
.exp-hero-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);

    width: 24px;
    height: 24px;

    border-radius: 50%;
    border: none;

    background: #f1f5f6;
    color: #6b8081;
    font-size: 16px;

    display: none;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: all 0.2s;
}

.exp-hero-search-clear:hover {
    background: #e2e8ea;
    color: #1a2b2c;
}

/* ───────── DROPDOWN ───────── */
.exp-search-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;

    background: #fff;
    border: 1px solid #e2e8ea;
    border-radius: 10px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    max-height: 280px;
    overflow-y: auto;

    display: none;
    z-index: 999;
}

/* dropdown items */
.exp-search-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 14px;
    cursor: pointer;

    transition: background 0.15s;
}

.exp-search-item:hover {
    background: #f7fbfb;
}

.exp-search-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.exp-search-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a2b2c;
}

.exp-search-item-sub {
    font-size: 11px;
    color: #6b8081;
}

    /* search dropdown — white bg since it overlays the dark hero */
    #expSearchDropdown {
        background:#fff;
        border:1px solid #e2e8ea;
        border-radius:12px;
        box-shadow:0 14px 36px rgba(0,0,0,.18);
    }

    /* type filter pills */
    .exp-hero-filters {
        display:flex; align-items:center; gap:7px;
        flex-wrap:wrap;
        position:relative; z-index:1;
    }
    .exp-hero-filter-label {
        font-size:13px;     color: rgba(255, 255, 255, .82);
        font-weight:bold; text-transform:uppercase;
        letter-spacing:.7px; margin-right:3px;
    }
    .exp-hfbtn {
        display:inline-flex; align-items:center; gap:6px;
        padding:6px 15px; border-radius:100px;
        font-size:13px; font-weight:600; cursor:pointer;
        border:1.5px solid rgba(255,255,255,.2);
        background:rgba(255,255,255,.11);
        color:rgba(255,255,255,.82);
        transition:all .18s;
        white-space:nowrap; backdrop-filter:blur(4px);
        position:relative;
    }
    .exp-hfbtn img {
        width:17px; height:17px; object-fit:contain;
        
        transition:opacity .15s;
    }
    .exp-hfbtn:hover {
        background:rgba(255,255,255,.22);
        color:#fff; border-color:rgba(255,255,255,.38);
    }
    .exp-hfbtn:hover img { opacity:1; }
    .exp-hfbtn.active {
        background:#fff; border-color:#fff; color:#0e787d;
    }
    .exp-hfbtn.active img { filter:none; opacity:1; }
    /* check dot */
    .hfb-dot {
        width:13px; height:13px;
        background:#0e787d; border-radius:50%;
        display:none; align-items:center; justify-content:center;
        flex-shrink:0; border:1.5px solid rgba(14,120,125,.15);
    }
    .hfb-dot i { font-size:6px; color:#fff; }
    .exp-hfbtn.active .hfb-dot { display:inline-flex; }

    /* stats row */
    .exp-hero-stats {
        display:flex; align-items:center; gap:24px;
        margin-top:24px; flex-wrap:wrap;
        position:relative; z-index:1;
    }
    .exp-hstat { display:flex; flex-direction:column; gap:2px; }
    .exp-hstat-num {
        font-size:22px; font-weight:800; color:#fff;
        line-height:1; letter-spacing:-.5px;
    }
    .exp-hstat-lbl {
        font-size:10px; color:rgba(255,255,255,.48);
        text-transform:uppercase; letter-spacing:.6px; font-weight:600;
    }
    .exp-hstat-sep {
        width:1px; height:28px;
        background:rgba(255,255,255,.15); flex-shrink:0;
    }

    /* hide old header */
    .exp-header { display:none !important; }

    /* popup buttons */
    .exp-popup-btn {
        padding:10px 28px; border-radius:25px;
        font-size:14px; font-weight:600;
        border:none; cursor:pointer;
        transition:all .18s; min-width:120px;
    }
    .exp-popup-btn--primary {
        background:var(--tm-primary,#0e787d); color:#fff;
        box-shadow:0 3px 10px rgba(14,120,125,.3);
    }
    .exp-popup-btn--primary:hover {
        background:#0a5f63; transform:translateY(-1px);
        box-shadow:0 5px 14px rgba(14,120,125,.4); color:#fff;
    }
    .exp-popup-btn--secondary {
        background:transparent; color:#6b8081;
        border:1.5px solid #e2e8ea;
    }
    .exp-popup-btn--secondary:hover { background:#f5f5f5; color:#1a2b2c; }

    /* chips bar */
    .exp-chips-bar-wrap {
        display:flex; flex-direction:row;
        align-items:center; width:100%;
        overflow:hidden; flex-wrap:nowrap;
    }
    .exp-chips-arrow {
        flex-shrink:0; flex-grow:0;
        width:32px; height:32px; min-width:32px;
        background:rgba(255,255,255,.8);
        border:1.5px solid #e2e8ea; color:#6b8081;
        border-radius:50%; display:flex;
        align-items:center; justify-content:center;
        font-size:13px; cursor:pointer;
        transition:all .18s; margin:0 4px;
    }
    .exp-chips-arrow:hover { border-color:#0e787d; color:#0e787d; background:#e6f4f5; }
    .exp-chips-arrow:disabled, .exp-chips-arrow[aria-disabled="true"] { opacity:.2; pointer-events:none; }
    .exp-chips-bar {
        flex:1 1 auto; min-width:0;
        overflow-x:auto; overflow-y:hidden;
        display:flex; flex-wrap:nowrap; gap:8px;
        padding:10px 4px;
        scroll-behavior:smooth;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none; -ms-overflow-style:none;
    }
    .exp-chips-bar::-webkit-scrollbar { display:none; }

    /* mobile */
    @media (max-width:600px) {
        .exp-hero { padding:26px 14px 22px; }
        .exp-hero-title { letter-spacing:-1px; }
        .exp-hfbtn { padding:5px 10px; font-size:12px; }
        .exp-hfbtn img { width:14px; height:14px; }
        .exp-hero-stats { gap:14px; margin-top:16px; }
        .exp-hstat-num { font-size:18px; }
        .exp-hstat-sep { height:22px; }
        .exp-chips-arrow { width:26px; height:26px; min-width:26px; font-size:11px; margin:0 2px; }
    }
.chip-logo {
    width: 30px;          /* ⬅ increase size */
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.exp-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;             /* ⬅ more breathing space */
    padding: 6px 12px;    /* ⬅ better spacing */
}

.exp-chip:hover .chip-logo {
    transform: scale(1.12);   /* ⬅ slight zoom */
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}