/* ── HERO ── */
#store_hero {
    padding: 110px 5% 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(102, 34, 206, .11), transparent 70%), var(--bg);
    position: relative;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--bdr) 1px, transparent 1px), linear-gradient(90deg, var(--bdr) 1px, transparent 1px);
    background-size: 55px 55px;
    opacity: .4;
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 0
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: 'Roboto', sans-serif;
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--p);
    background: var(--p10);
    border: 1px solid rgba(102, 34, 206, .2);
    border-radius: 50px;
    padding: .3rem .9rem;
    margin-bottom: 1.4rem
}

.hero-tag span {
    width: 5px;
    height: 5px;
    background: var(--p);
    border-radius: 50%;
    animation: blink 2s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

h1.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -.025em;
    margin-bottom: 1rem;
    color: var(--tx);
    line-height: 1.08
}

.hero-sub {
    font-size: 1rem;
    color: var(--tx3);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    font-weight: 400
}

/* ── CATEGORY TABS ── */
.cat-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.cat-tab {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .52rem 1.25rem;
    border-radius: 50px;
    border: 1.5px solid var(--bdr);
    background: var(--card);
    color: var(--tx2);
    font-size: .84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .22s;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap
}

.cat-tab .tab-icon {
    font-size: 1rem;
    line-height: 1
}

.cat-tab:hover {
    border-color: var(--p);
    color: var(--p);
    background: var(--p10)
}

.cat-tab.active {
    background: linear-gradient(135deg, var(--p), var(--pl));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 18px var(--p40)
}

.cat-tab .tab-count {
    font-size: .68rem;
    background: rgba(0, 0, 0, .08);
    padding: .1rem .45rem;
    border-radius: 50px;
    font-weight: 700
}

.cat-tab.active .tab-count {
    background: rgba(255, 255, 255, .2)
}

/* ── SEARCH BAR ── */
.search-wrap {
    background: var(--card);
    border: 1.5px solid var(--bdr);
    border-radius: 20px;
    box-shadow: var(--sh-lg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 0;
    position: relative;
    z-index: 10
}

.search-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.sf {
    flex: 1;
    min-width: 180px;
    position: relative
}

.sf-icon {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tx3);
    pointer-events: none
}

.sf input,
.sf select {
    width: 100%;
    padding: .7rem .9rem .7rem 2.5rem;
    border: 1.5px solid var(--bdr);
    border-radius: 12px;
    background: var(--bg);
    color: var(--tx);
    font-size: .88rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-weight: 400;
    appearance: none
}

.sf input:focus,
.sf select:focus {
    border-color: var(--p);
    box-shadow: 0 0 0 3px var(--p10)
}

.sf input::placeholder {
    color: var(--tx3)
}

.sf:hover>.sf-dropdown {
    display: flex;
}

.sf-div {
    width: 1px;
    height: 36px;
    background: var(--bdr);
    flex-shrink: 0
}

.sf-dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    border-radius: 12px;
    z-index: 10;
    border: 1.5px solid var(--bdr);
    top: 100%;
    margin-top: 5px;
    width: 100%;
}

.sf-dropdown>ul {
    list-style: none;
    padding: 5px;
    margin: 0px;
    display: flex;
    flex-direction: column;
}

.sf-dropdown>ul>li {
    padding: 5px;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    cursor: pointer;
}

.sf-dropdown>ul>li:hover {
    background-color: var(--bg);
}

.sf-dropdown>ul>li>svg {
    flex-shrink: 0;
}

.sf-dropdown>ul>li>span {
    font-size: 11px;
}



.search-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--p), var(--pl));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: .72rem 1.75rem;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
    flex-shrink: 0
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--p40)
}

.search-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    filter: grayscale(.2);
}

.search-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.search-pills {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .9rem;
    border-top: 1px solid var(--bdr);
    padding-top: .9rem
}

.sp-label {
    font-size: .73rem;
    color: var(--tx3);
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif
}

.sp {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .77rem;
    font-weight: 600;
    color: var(--tx2);
    background: var(--bg3);
    border: 1px solid var(--bdr);
    border-radius: 50px;
    padding: .22rem .75rem;
    cursor: pointer;
    transition: all .18s;
    font-family: 'Roboto', sans-serif
}

.sp:hover {
    background: var(--p);
    color: #fff;
    border-color: var(--p)
}



/* ── LAYOUT ── */
.page-body {
    max-width: 1260px;
    margin: 0 auto;
    padding: 2.5rem 5% 5rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start
}

/* ── SIDEBAR ── */


.sidebar-sticky {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.sbox {
    background: var(--card);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    padding: 1.25rem;
    overflow: hidden
}

.sbox-title {
    font-family: 'Roboto', sans-serif;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tx3);
    margin-bottom: .9rem
}

/* filter group */
.fg-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .45rem 0;
    cursor: pointer;
    border-radius: 8px;
    transition: all .18s
}

.fg-item:hover .fg-label {
    color: var(--p)
}

.fg-cb {
    width: 17px;
    height: 17px;
    border-radius: 5px;
    border: 1.5px solid var(--bdr);
    background: var(--bg);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .18s
}

.fg-cb.checked {
    background: var(--p);
    border-color: var(--p)
}

.fg-cb.checked::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: -1px
}

.fg-label {
    font-size: .85rem;
    color: var(--tx2);
    font-weight: 500;
    flex: 1;
    font-family: 'Roboto', sans-serif
}

.fg-count {
    font-size: .7rem;
    color: var(--tx3);
    background: var(--bg3);
    padding: .1rem .45rem;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600
}

/* rating filter */
.rat-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem 0;
    cursor: pointer
}

.rat-row:hover .rl {
    color: var(--p)
}

.stars-sm {
    display: flex;
    gap: 1px
}

.star-sm {
    color: #f59e0b;
    font-size: .82rem
}

.star-sm.e {
    color: var(--bdr)
}

.rl {
    font-size: .82rem;
    color: var(--tx2);
    font-weight: 500;
    font-family: 'Roboto', sans-serif
}

/* range slider */
.range-wrap {
    padding: .25rem 0
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: var(--tx3);
    margin-bottom: .5rem;
    font-family: 'Roboto', sans-serif
}

input[type=range] {
    width: 100%;
    accent-color: var(--p);
    height: 4px;
    cursor: pointer
}

/* map mini */
.mini-map {
    height: 120px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e9e3ff, #f3f0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 1px solid var(--bdr);
    margin-bottom: .75rem;
    cursor: pointer;
    transition: all .25s
}

.mini-map:hover {
    box-shadow: var(--sh-sm)
}

/* sidebar cta */
.scta {
    background: linear-gradient(135deg, var(--pd), var(--p), var(--pl));
    border-radius: 18px;
    padding: 1.5rem;
    color: #fff;
    text-align: center
}

.scta h4 {
    font-family: 'Roboto', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .35rem
}

.scta p {
    font-size: .78rem;
    opacity: .8;
    margin-bottom: 1rem;
    line-height: 1.5
}

.scta a {
    display: block;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 10px;
    padding: .6rem;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    transition: all .2s
}

.scta a:hover {
    background: rgba(255, 255, 255, .25)
}

/* ── RESULTS AREA ── */


.results-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.5rem
}

.results-count {
    font-size: .88rem;
    color: var(--tx3);
    font-family: 'Roboto', sans-serif
}

.results-count strong {
    color: var(--tx);
    font-weight: 700
}

.results-tools {
    display: flex;
    align-items: center;
    gap: .6rem
}

.sort-select {
    padding: .45rem .9rem;
    border: 1.5px solid var(--bdr);
    border-radius: 10px;
    background: var(--card);
    color: var(--tx);
    font-size: .82rem;
    font-family: 'Roboto', sans-serif;
    outline: none;
    cursor: pointer;
    font-weight: 500
}

.sort-select:focus {
    border-color: var(--p)
}

.view-toggle {
    display: flex;
    border: 1.5px solid var(--bdr);
    border-radius: 10px;
    overflow: hidden
}

.vt {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--card);
    color: var(--tx3);
    transition: all .2s;
    border: none
}

.vt.active {
    background: var(--p);
    color: #fff
}

.vt:hover:not(.active) {
    background: var(--p10);
    color: var(--p)
}

/* active filters */
.active-filters {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem
}

.af-label {
    font-size: .75rem;
    color: var(--tx3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em
}

.af-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    font-weight: 600;
    padding: .22rem .7rem;
    border-radius: 50px;
    background: var(--p10);
    color: var(--p);
    border: 1px solid rgba(102, 34, 206, .2);
    cursor: pointer;
    transition: all .2s;
    font-family: 'Roboto', sans-serif
}

.af-tag:hover {
    background: var(--p);
    color: #fff
}

.af-tag .x {
    font-size: .9rem;
    line-height: 1;
    margin-left: .1rem
}

.clear-all {
    font-size: .77rem;
    color: var(--red);
    font-weight: 600;
    cursor: pointer;
    padding: .22rem .7rem;
    border-radius: 50px;
    border: 1px solid rgba(220, 38, 38, .2);
    transition: all .2s;
    font-family: 'Roboto', sans-serif
}

.clear-all:hover {
    background: var(--red);
    color: #fff
}

/* ── LISTING GRID ── */

.listing-grid-spinner {
    display: flex;
    height: 400px;
    justify-content: center;
    align-items: center;
}

.listing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.listing-grid.list-view {
    grid-template-columns: 1fr
}

/* ── LISTING CARD ── */
.lcard {
    background: var(--card);
    border: 1px solid var(--bdr);
    border-radius: 22px;
    overflow: hidden;
    transition: all .32s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative
}

.lcard:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
    border-color: rgba(102, 34, 206, .2)
}

.lcard-banner {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    flex-shrink: 0
}

.lc-pur {
    background: linear-gradient(135deg, #f3f0ff, #e9e3ff)
}

.lc-grn {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7)
}

.lc-amb {
    background: linear-gradient(135deg, #fffbeb, #fef3c7)
}

.lc-blu {
    background: linear-gradient(135deg, #eff6ff, #dbeafe)
}

.lc-red {
    background: linear-gradient(135deg, #fff1f2, #fee2e2)
}

.lc-tel {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1)
}

.lcard-logo {
    position: absolute;
    bottom: -22px;
    left: 1.25rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid #fff;
    background: var(--card);
    box-shadow: 0 3px 14px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.lcard-badges {
    position: absolute;
    top: .75rem;
    right: .75rem;
    display: flex;
    gap: .35rem;
    flex-direction: column;
    align-items: flex-end
}

.lb {
    font-size: .62rem;
    font-weight: 700;
    padding: .18rem .55rem;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap
}

.lb-v {
    background: rgba(5, 150, 105, .15);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, .25)
}

.lb-s {
    background: rgba(245, 158, 11, .15);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, .25)
}

.lb-n {
    background: rgba(37, 99, 235, .15);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, .25)
}

.lb-p {
    background: rgba(102, 34, 206, .15);
    color: var(--p);
    border: 1px solid rgba(102, 34, 206, .25)
}

.lcard-body {
    padding: 1.6rem 1.25rem 1.1rem;
    flex: 1
}

.lcard-type {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--tx3);
    margin-bottom: .3rem;
    font-family: 'Roboto', sans-serif
}

.lcard-name {
    font-family: 'Roboto Slab', serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--tx);
    margin-bottom: .2rem;
    line-height: 1.25
}

.lcard-addr {
    display: flex;
    align-items: flex-start;
    gap: .35rem;
    font-size: .78rem;
    color: var(--tx3);
    margin-bottom: .8rem;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif
}

.lcard-addr svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--p)
}

.lcard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-bottom: .9rem
}

.ltag {
    font-size: .67rem;
    font-weight: 700;
    padding: .18rem .6rem;
    border-radius: 50px;
    background: var(--p10);
    color: var(--p);
    border: 1px solid rgba(102, 34, 206, .14);
    font-family: 'Roboto', sans-serif
}

.lcard-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.lm {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .77rem;
    color: var(--tx3);
    font-family: 'Roboto', sans-serif
}

.lm svg {
    color: var(--p)
}

.lcard-footer {
    padding: .85rem 1.25rem;
    border-top: 1px solid var(--bdr);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem
}

.lcard-rating {
    display: flex;
    align-items: center;
    gap: .35rem
}

.rating-stars {
    display: flex;
    gap: 1px
}

.rs {
    color: #f59e0b;
    font-size: .78rem
}

.rs.e {
    color: var(--bdr)
}

.rnum {
    font-size: .8rem;
    font-weight: 700;
    color: var(--tx);
    font-family: 'Roboto', sans-serif
}

.rcnt {
    font-size: .72rem;
    color: var(--tx3);
    font-family: 'Roboto', sans-serif
}

.lcard-cta {
    display: flex;
    gap: .5rem
}

.lbtn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    font-weight: 700;
    padding: .4rem .9rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap
}

.lbtn-fill {
    background: var(--p);
    color: #fff
}

.lbtn-fill:hover {
    background: var(--pl)
}

.lbtn-ghost {
    background: var(--p10);
    color: var(--p);
    border: 1px solid rgba(102, 34, 206, .18) !important
}

.lbtn-ghost:hover {
    background: var(--p);
    color: #fff
}

/* save icon */
.save-icon {
    position: absolute;
    top: .75rem;
    left: .75rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    cursor: pointer;
    transition: all .2s;
    border: 1px solid rgba(255, 255, 255, .5)
}

.save-icon:hover {
    background: #fff;
    box-shadow: var(--sh-sm)
}

/* List view variant */
.list-view .lcard {
    flex-direction: row
}

.list-view .lcard-banner {
    width: 160px;
    height: auto;
    min-height: 160px;
    flex-shrink: 0;
    border-radius: 0;
    font-size: 3rem
}

.list-view .lcard-logo {
    bottom: auto;
    top: 1rem;
    left: auto;
    right: -16px
}

.list-view .lcard-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-top: none;
    border-left: 1px solid var(--bdr);
    min-width: 130px;
    flex-shrink: 0;
    padding: 1rem
}

.list-view .lcard-body {
    padding: 1.25rem
}

/* ── FEATURED CARD ── */
.lcard.featured {
    border-color: rgba(102, 34, 206, .3);
    box-shadow: var(--sh-sm)
}

.lcard.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--p), var(--pl), #a855f7)
}



/* ── MAP SECTION ── */
.map-section {
    background: var(--card);
    border: 1px solid var(--bdr);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 2rem
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bdr)
}

.map-header h4 {
    font-family: 'Roboto', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--tx)
}

.map-placeholder {
    height: 220px;
    background: linear-gradient(135deg, #eee9ff, #f3f0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .75rem;
    color: var(--tx3)
}

.map-placeholder svg {
    opacity: .3
}

.map-placeholder p {
    font-size: .82rem;
    font-family: 'Roboto', sans-serif
}

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--card);
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
    margin-bottom: 0
}

.stats-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 1.75rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem
}

.si {
    text-align: center
}

.si-num {
    font-family: 'Roboto Slab', serif;
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--p);
    line-height: 1
}

.si-lbl {
    font-size: .72rem;
    color: var(--tx3);
    font-weight: 500;
    margin-top: .2rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-family: 'Roboto', sans-serif
}

/* ── REVEAL ── */
.r {
    opacity: 0;
    transform: translateY(18px)
}

.r.in {
    animation: fup .55s cubic-bezier(.23, 1, .32, 1) forwards
}

@keyframes fup {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── FOOTER ── */
footer {
    background: var(--tx);
    padding: 2.5rem 5% 1.5rem
}

.footer-inner {
    max-width: 1260px;
    margin: 0 auto
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-brand img {
    height: 26px;
    filter: brightness(10)
}

.footer-links {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap
}

.footer-links a {
    font-size: .83rem;
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
    font-family: 'Roboto', sans-serif
}

.footer-links a:hover {
    color: #fff
}

.footer-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    padding-top: 1.25rem
}

.footer-bot p {
    font-size: .77rem;
    color: rgba(255, 255, 255, .3);
    font-family: 'Roboto', sans-serif
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .page-body {
        grid-template-columns: 240px 1fr
    }
}

@media(max-width:900px) {
    .page-body {
        grid-template-columns: 1fr
    }

    .sidebar {
        display: none
    }

    .listing-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {

    .nlinks,
    .nright {
        display: none
    }

    .ham {
        display: flex
    }

    .listing-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {
    .search-row {
        flex-direction: column
    }

    .sf-div {
        display: none
    }

    .search-btn {
        width: 100%;
        justify-content: center
    }

    .cat-tabs {
        gap: .4rem
    }

    .list-view .lcard {
        flex-direction: column
    }

    .list-view .lcard-banner {
        width: 100%;
        height: 120px
    }

    .list-view .lcard-logo {
        right: auto;
        left: 1rem;
        bottom: -20px;
        top: auto
    }
}


.no-results {
    text-align: center;
    padding: 45px 20px;
    border: 1px solid #e6dcff;
    border-radius: 12px;
    background: #f8f5ff;
    max-width: 420px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
}

.no-results .icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.no-results h3 {
    margin: 0;
    font-size: 20px;
    color: #5b3cc4;
    font-weight: 600;
}

.no-results p {
    margin-top: 6px;
    color: #7b6bb3;
    font-size: 14px;
}