.hc-search-page {
    background: linear-gradient(180deg, #f9fbfd 0%, #eef2f6 100%);
    margin-top: -1.5rem;
    padding: 1.75rem 0 3rem;
}

.hc-search-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
}

.hc-search-filters,
.hc-search-results-card,
.hc-search-map {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(31, 52, 74, 0.10);
}

.hc-search-filters {
    position: sticky;
    top: 16px;
    overflow: hidden;
}

.hc-filter-section {
    border-bottom: 1px solid #e8eef4;
    padding: 1rem 1.1rem;
}

.hc-filter-section:last-child {
    border-bottom: 0;
}

.hc-filter-title {
    margin: 0 0 0.85rem;
    font-weight: 800;
    color: #27445f;
    font-size: 0.96rem;
}

.hc-toggle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.hc-toggle-btn {
    border: 2px solid #d8e3ee;
    border-radius: 12px;
    background: #fff;
    color: #234867;
    font-weight: 700;
    padding: 10px 8px;
}

.hc-toggle-btn.active {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #fff;
}

.hc-toggle-btn small {
    display: block;
    font-weight: 500;
    opacity: 0.8;
}

.hc-search-filters label {
    display: block;
    margin: 8px 0 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #5a7288;
}

.hc-search-filters input,
.hc-search-filters select {
    width: 100%;
    height: 44px;
    border: 1px solid #cfdae6;
    border-radius: 12px;
    padding: 0 12px;
    background: #fbfdff;
}

.hc-search-map {
    min-height: 180px;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #edf4ff 0%, #f8fbff 48%, #ebf7f0 100%);
    border: 1px solid #dfe7f0;
}

.hc-map-grid {
    min-height: 148px;
    border-radius: 14px;
    background:
        linear-gradient(90deg, rgba(13, 110, 253, 0.06) 1px, transparent 1px) 0 0 / 32px 32px,
        linear-gradient(rgba(13, 110, 253, 0.06) 1px, transparent 1px) 0 0 / 32px 32px,
        linear-gradient(135deg, #edf4ff 0%, #f8fbff 48%, #ebf7f0 100%);
    position: relative;
}

.hc-map-chip {
    position: absolute;
    background: #fff;
    color: #0d6efd;
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.16);
}

.hc-map-chip:nth-child(1) {
    top: 20%;
    left: 12%;
}

.hc-map-chip:nth-child(2) {
    top: 38%;
    left: 48%;
}

.hc-map-chip:nth-child(3) {
    top: 62%;
    left: 24%;
}

.hc-map-chip:nth-child(4) {
    top: 28%;
    right: 14%;
}

.hc-sort-select {
    max-width: 260px;
}

@media (max-width: 991.98px) {
    .hc-search-shell {
        grid-template-columns: 1fr;
    }

    .hc-search-filters {
        position: static;
    }
}