/* public/css/explore.css */

/* =========================================================
   GLOBALS & UTILITIES
   ========================================================= */

.explore-container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.hidden { display: none !important; }
.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; }

/* =========================================================
   SEARCH BAR
   ========================================================= */

.explore-search-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg-page);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.explore-search-inner {
    max-width: 720px;
    margin-inline: auto;
}

.search-field-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
    flex-shrink: 0;
}

.explore-search-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 2.75rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 999px;
    font-size: 0.9375rem;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.explore-search-input::placeholder { color: var(--text-muted); }

.explore-search-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 15%, transparent);
}

.search-clear-btn {
    position: absolute;
    right: 1rem;
    display: none;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
}

.search-clear-btn.visible { display: flex; }
.search-clear-btn:hover { color: var(--text-main); }
.search-clear-btn svg { width: 16px; height: 16px; }

/* =========================================================
   TYPE NAVIGATION
   ========================================================= */

.type-nav-wrap {
    background: var(--bg-page);
    border-bottom: 1px solid var(--border-light);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.type-nav-wrap::-webkit-scrollbar { display: none; }

.type-nav {
    display: flex;
    gap: 0;
    min-width: max-content;
    padding: 0 1.25rem;
}

.type-nav__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 2.5px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.type-nav__item:hover {
    color: var(--text-main);
}

.type-nav__item--active {
    color: var(--brand);
    border-bottom-color: var(--brand);
}

.type-nav__icon { font-size: 1rem; line-height: 1; }

/* =========================================================
   HERO
   ========================================================= */

.explore-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 6%, var(--bg-page)) 0%, var(--bg-page) 60%);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-main);
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
}

.hero-title--accent {
    color: var(--brand);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 460px;
    margin: 0 0 2rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat__num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.hero-stat__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-stat__divider {
    width: 1px;
    height: 32px;
    background: var(--border-light);
}

/* Hero Visual (Floating Cards) */
.hero-visual {
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    min-width: 200px;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card--1 { top: 0; left: 0; animation-delay: 0s; }
.hero-float-card--2 { bottom: 20px; right: 0; animation-delay: 1s; }
.hero-float-card--3 { top: 50%; right: 10%; transform: translateY(-50%); animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-float-card--3 {
    animation: float3 3s ease-in-out infinite;
    animation-delay: 2s;
}
@keyframes float3 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 8px)); }
}

.hero-float-card__icon { font-size: 1.5rem; flex-shrink: 0; }
.hero-float-card__name { font-size: 0.8125rem; font-weight: 600; color: var(--text-main); white-space: nowrap; }
.hero-float-card__meta { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

.hero-badge-verified {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #10b981;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

/* =========================================================
   EXPLORE SECTIONS
   ========================================================= */

.explore-section {
    padding: 3rem 0;
}

.explore-section--alt {
    background: color-mix(in srgb, var(--bg-card) 50%, var(--bg-page));
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.25rem;
}

.section-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.section-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.section-link:hover { opacity: 0.75; }

/* =========================================================
   CATEGORY PILLS
   ========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.category-pill:hover {
    border-color: var(--brand);
    box-shadow: 0 2px 12px color-mix(in srgb, var(--brand) 12%, transparent);
    transform: translateY(-1px);
}

.category-pill__icon { font-size: 1.125rem; flex-shrink: 0; }
.category-pill__label { font-size: 0.8125rem; font-weight: 500; color: var(--text-main); }

/* =========================================================
   SEARCH LAYOUT
   ========================================================= */

.search-layout {
    display: grid;
    grid-template-columns: 256px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 0 3rem;
}

/* =========================================================
   SIDEBAR
   ========================================================= */

.explore-sidebar {
    position: sticky;
    top: calc(56px + 45px + 1rem); /* search + nav + gap */
    max-height: calc(100vh - 56px - 45px - 2rem);
    overflow-y: auto;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--bg-card);
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
}

.explore-sidebar::-webkit-scrollbar { width: 4px; }
.explore-sidebar::-webkit-scrollbar-track { background: transparent; }
.explore-sidebar::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 2px; }

.sidebar-inner { padding: 1.25rem;background: var(--bg-card); }

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.sidebar-reset {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.15s;
}

.sidebar-reset:hover { opacity: 0.7; }

/* Filter Sections */
.filter-section {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.filter-section:last-of-type { border-bottom: none; }

.filter-section__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.625rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.filter-section__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.filter-section__label svg { color: var(--text-muted); flex-shrink: 0; }

.filter-section__indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.filter-active-dot {
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
}

.chevron-icon {
    transition: transform 0.2s;
    color: var(--text-muted);
}

.filter-section__toggle[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

.filter-section__body {
    display: none;
    padding-bottom: 0.75rem;
}

.filter-section__body.open { display: block; }

/* Location Accordion */
.filter-search-mini {
    margin-bottom: 0.625rem;
}

.filter-search-input {
    width: 100%;
    padding: 0.4375rem 0.75rem;
    font-size: 0.8125rem;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-page);
    color: var(--text-main);
    outline: none;
    transition: border-color 0.15s;
}

.filter-search-input:focus { border-color: var(--brand); }

.location-accordion { display: flex; flex-direction: column; gap: 0.25rem; }

.location-province__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.4rem 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-main);
    border-radius: 6px;
    text-align: left;
    transition: background 0.15s;
}

.location-province__toggle:hover { background: color-mix(in srgb, var(--brand) 6%, transparent); }
.location-province__toggle.open .chevron-icon { transform: rotate(180deg); }

.location-cities {
    display: none;
    padding-left: 0.75rem;
}

.location-cities.open { display: block; }

.city-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.5rem;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: background 0.15s, color 0.15s;
}

.city-option:hover { background: color-mix(in srgb, var(--brand) 6%, transparent); color: var(--text-main); }
.city-option--active { color: var(--brand); font-weight: 500; }
.city-option input { accent-color: var(--brand); width: 14px; height: 14px; flex-shrink: 0; }

/* Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.category-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: background 0.15s, color 0.15s;
}

.category-option:hover { background: color-mix(in srgb, var(--brand) 6%, transparent); color: var(--text-main); }
.category-option--active { color: var(--brand); font-weight: 600; }
.category-option input { accent-color: var(--brand); width: 14px; height: 14px; flex-shrink: 0; }
.category-option__icon { width: 18px; text-align: center; }
.category-option__label { flex: 1; }

/* Rating */
.rating-list { display: flex; flex-direction: column; gap: 0.125rem; }

.rating-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}

.rating-option:hover { background: color-mix(in srgb, var(--brand) 6%, transparent); }
.rating-option--active { background: color-mix(in srgb, var(--brand) 8%, transparent); }
.rating-option input { accent-color: var(--brand); width: 14px; height: 14px; flex-shrink: 0; }

.rating-stars { display: flex; gap: 2px; }
.star-filled { color: #f59e0b; }
.star-empty { color: var(--border-light); }

.rating-label { font-size: 0.8125rem; color: var(--text-muted); }
.rating-option--active .rating-label { color: var(--brand); font-weight: 600; }

/* Status */
.status-option {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    margin-bottom: 0.25rem;
}

.status-option:hover { background: color-mix(in srgb, var(--brand) 6%, transparent); }
.status-option input { accent-color: var(--brand); width: 15px; height: 15px; flex-shrink: 0; }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-badge--verified { background: #cce4dd; color: #047857 ; }
.status-badge--pro { background: linear-gradient(135deg, #fef9c3, #fde68a); color: #92400e; }

/* Sidebar misc */
.filter-clear-inline {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--brand);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    display: block;
    transition: opacity 0.15s;
}

.filter-clear-inline:hover { opacity: 0.7; }

.sidebar-reset-wrap { padding-top: 0.75rem; border-top: 1px solid var(--border-light); margin-top: 0.5rem; }

.btn-reset-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem;
    background: color-mix(in srgb, var(--brand) 8%, transparent);
    color: var(--brand);
    border: 1.5px solid color-mix(in srgb, var(--brand) 25%, transparent);
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-reset-full:hover { background: color-mix(in srgb, var(--brand) 15%, transparent); }

.sidebar-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.sidebar-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.sidebar-stat__num {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-main);
}

.sidebar-stat__label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================================
   TOOLBAR
   ========================================================= */

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.toolbar-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.toolbar-count strong { color: var(--text-main); font-weight: 700; }

.toolbar-keyword {
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.toolbar-keyword em { color: var(--text-main); font-style: normal; }

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-select {
    padding: 0.4375rem 2rem 0.4375rem 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-main);
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 16px;
    transition: border-color 0.15s;
}

.sort-select:focus { border-color: var(--brand); }

.view-toggle {
    display: flex;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 34px;
    background: var(--bg-card);
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: background 0.15s, color 0.15s;
}

.view-btn + .view-btn { border-left: 1px solid var(--border-light); }

.view-btn--active {
    background: var(--brand);
    color: #fff;
}

/* =========================================================
   CARDS GRID
   ========================================================= */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.biz-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.biz-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--brand) 25%, var(--border-light));
}

.biz-card--pro {
    border-color: #f59e0b;
    box-shadow: 0 2px 12px rgba(245,158,11,0.12);
}

.biz-card--pro:hover {
    border-color: #d97706;
    box-shadow: 0 8px 32px rgba(245,158,11,0.2);
}

.biz-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    outline-offset: 2px;
}

.biz-card__cover {
    position: relative;
    height: 160px;
    background: color-mix(in srgb, var(--brand) 8%, var(--bg-card));
    overflow: hidden;
}

.biz-card__cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.biz-card:hover .biz-card__cover-img { transform: scale(1.04); }

.biz-card__cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: color-mix(in srgb, var(--brand) 30%, transparent);
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 8%, var(--bg-card)), color-mix(in srgb, var(--brand) 4%, var(--bg-card)));
}

.biz-card__badges {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
}

.badge--verified { background: rgba(4,120,87); color: #fff; backdrop-filter: blur(4px); }
.badge--pro { background: rgba(217,119,6,0.9); color: #fff; backdrop-filter: blur(4px); }

.biz-card__avatar-wrap {
    margin: -1.75rem 0 0 1rem;
    position: relative;
    z-index: 1;
}

.biz-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 2.5px solid var(--bg-card);
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.biz-card__avatar--fallback {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 2.5px solid var(--bg-card);
    background: linear-gradient(135deg, var(--brand), var(--brand-dark, color-mix(in srgb, var(--brand) 70%, #000)));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.biz-card__body {
    padding: 0.625rem 1rem 0.75rem;
    flex: 1;
}

.biz-card__category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--brand);
    background: color-mix(in srgb, var(--brand) 8%, transparent);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    margin-bottom: 0.375rem;
}

.biz-card__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.375rem;
    line-height: 1.3;
}

.biz-card__bio {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 0.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.biz-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.biz-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: var(--text-main);
}

.biz-card__rating .star-icon { color: #f59e0b; }
.biz-card__rating strong { font-weight: 700; }
.biz-card__review-count { color: var(--text-muted); font-size: 0.75rem; }

.biz-card__location {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.biz-card__location svg { flex-shrink: 0; }

.biz-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1rem;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.biz-card__catalog {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.biz-card__cta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand);
    transition: gap 0.15s;
}

/* =========================================================
   CARDS LIST
   ========================================================= */

.cards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.biz-list-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.25rem;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.biz-list-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--brand) 20%, var(--border-light));
}

.biz-list-card--pro { border-color: #f59e0b; }

.biz-list-card__avatar-link { flex-shrink: 0; }

.biz-list-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--border-light);
}

.biz-list-card__avatar--fallback {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark, color-mix(in srgb, var(--brand) 70%, #000)));
}

.biz-list-card__info { flex: 1; min-width: 0; }

.biz-list-card__top { margin-bottom: 0.375rem; }

.biz-list-card__title-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}

.biz-list-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    line-height: 1.2;
}

.biz-list-card__name a {
    color: inherit;
    text-decoration: none;
}

.biz-list-card__name a:hover { color: var(--brand); }

.biz-list-card__badges { display: flex; gap: 0.375rem; flex-wrap: wrap; }

.biz-list-card__category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--brand);
    background: color-mix(in srgb, var(--brand) 8%, transparent);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

.biz-list-card__bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0.375rem 0 0.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.biz-list-card__services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.625rem;
}

.service-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-page);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
}

.service-tag--more {
    background: color-mix(in srgb, var(--brand) 6%, transparent);
    color: var(--brand);
    border-color: color-mix(in srgb, var(--brand) 20%, transparent);
}

.biz-list-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.biz-list-card__action {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1.125rem;
    background: var(--brand);
    color: #fff;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
    white-space: nowrap;
}

.btn-visit:hover { opacity: 0.88; transform: translateY(-1px); }

/* =========================================================
   LOAD MORE
   ========================================================= */

.load-more-wrap {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.btn-load-more {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 2.5rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 999px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-load-more:hover {
    border-color: var(--brand);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--brand) 12%, transparent);
    transform: translateY(-1px);
}

.load-more-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-main);
}

.load-more-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =========================================================
   SKELETON
   ========================================================= */

.skeleton-block {
    background: linear-gradient(90deg, var(--border-light) 25%, color-mix(in srgb, var(--border-light) 60%, var(--bg-card)) 50%, var(--border-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
}

.biz-card--skeleton .biz-card__cover { height: 160px; }
.biz-card--skeleton .biz-card__cover.skeleton-block { border-radius: 0; }
.skeleton-circle { border-radius: 12px !important; width: 56px; height: 56px; }

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* =========================================================
   EMPTY STATE
   ========================================================= */

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 1rem;
    gap: 1rem;
}

.empty-state__icon { opacity: 0.6; }

.empty-state__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.empty-state__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 400px;
    line-height: 1.6;
    margin: 0;
}

.empty-state__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

/* =========================================================
   MOBILE FILTER BUTTON
   ========================================================= */

.mobile-filter-btn {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 60;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--brand) 40%, transparent);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mobile-filter-btn:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--brand) 40%, transparent);
}

.filter-badge {
    background: #fff;
    color: var(--brand);
    font-size: 0.7rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Sidebar Overlay (mobile) */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 55;
    backdrop-filter: blur(2px);
}

.sidebar-overlay.visible { display: block; }

/* =========================================================
   ANIMATIONS (page entry)
   ========================================================= */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.biz-card, .biz-list-card {
    animation: fadeInUp 0.3s ease both;
}

/* Stagger cards */
.biz-card:nth-child(1), .biz-list-card:nth-child(1) { animation-delay: 0.04s; }
.biz-card:nth-child(2), .biz-list-card:nth-child(2) { animation-delay: 0.08s; }
.biz-card:nth-child(3), .biz-list-card:nth-child(3) { animation-delay: 0.12s; }
.biz-card:nth-child(4), .biz-list-card:nth-child(4) { animation-delay: 0.16s; }
.biz-card:nth-child(5), .biz-list-card:nth-child(5) { animation-delay: 0.2s; }
.biz-card:nth-child(6), .biz-list-card:nth-child(6) { animation-delay: 0.24s; }
.biz-card:nth-child(7), .biz-list-card:nth-child(7) { animation-delay: 0.28s; }
.biz-card:nth-child(8), .biz-list-card:nth-child(8) { animation-delay: 0.32s; }
.biz-card:nth-child(9), .biz-list-card:nth-child(9) { animation-delay: 0.36s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .search-layout { grid-template-columns: 220px 1fr; }
    .hero-inner { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual { display: none; }

    .cards-grid { grid-template-columns: 1fr; }

    .search-layout { grid-template-columns: 1fr; }

    .explore-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100dvh;
        width: 85vw;
        max-width: 320px;
        z-index: 56;
        border-radius: 0 16px 16px 0;
        max-height: 100dvh;
        transform: translateX(-110%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .explore-sidebar.open {
        transform: translateX(0);
    }

    .mobile-filter-btn { display: flex; }

    .toolbar { flex-wrap: wrap; gap: 0.625rem; }

    .sort-select { font-size: 0.75rem; }

    .biz-list-card {
        flex-direction: column;
        gap: 0.875rem;
    }

    .biz-list-card__action { align-self: stretch; }
    .biz-list-card__action .btn-visit { width: 100%; justify-content: center; }

    .category-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-stats { gap: 1rem; }

    .hero-stat__num { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .toolbar-right { width: 100%; justify-content: space-between; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .biz-card, .biz-list-card { animation: none; }
    .hero-float-card { animation: none; }
    .biz-card__cover-img { transition: none; }
}
