    /* Loading State - Similar to blog loader */
    .providers-loading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 20px;
        min-height: 400px;
    }

    .providers-spinner {
        width: 50px;
        height: 50px;
        border: 4px solid #d5bec6;
        border-top-color: #75213e;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-bottom: 20px;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .providers-loading p {
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 16px;
        color: #75213e;
    }

    /* Infinite Scroll Load More Spinner */
    .providers-load-more {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
    }

    .providers-load-more p {
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 14px;
        color: #75213e;
        margin-top: 10px;
    }

    /* Error State */
    .providers-error {
        text-align: center;
        padding: 80px 20px;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .providers-error-icon {
        font-size: 64px;
        color: #75213e;
        margin-bottom: 24px;
        opacity: 0.6;
    }

    .providers-error h3 {
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: #2c0d18;
        margin-bottom: 12px;
    }

    .providers-error p {
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 16px;
        color: #6b7280;
        margin-bottom: 24px;
    }

    .providers-retry-btn {
        background: rgba(229, 0, 80, 1);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }

    .providers-retry-btn:hover {
        background: #cc0046;
    }

    /* Empty State */
    .providers-empty {
        text-align: center;
        padding: 80px 20px;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .providers-empty-icon {
        font-size: 64px;
        color: #75213e;
        margin-bottom: 24px;
        opacity: 0.6;
    }

    .providers-empty h3 {
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: #2c0d18;
        margin-bottom: 12px;
    }

    .providers-empty p {
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 16px;
        color: #6b7280;
    }

    .provider-card-heading-section {
        justify-content: space-between;
        display: flex;
    }

    /* Outer layout around existing search bar */
    .search-outer-layout {
        margin: 45px 0 30px 0;
        background-image: url('../images/images/provider_search_image.jpg');
        background-position: center;
        /* background: linear-gradient(180deg, rgb(159 159 159 / 73%) 0%, rgb(66 66 66 / 15%) 100%); */
        border-radius: 16px;
    }

    .search-outer-layout .search-outer-box {
        padding: 40px 40px 24px 40px;
    }

    .search-outer-layout .search-outer-title {
        text-transform: uppercase;
        letter-spacing: -1px;
        color: #fff;
        font-weight: 700;
        margin: 0 0 6px 0;
        font-size: 30px;
    }

    .search-outer-layout .search-outer-subtitle {
        color: rgba(255, 255, 255, 0.85);
        /* margin: 0 0 16px 0; */
        font-size: 22px;
        width: 50%;
        text-transform: lowercase;
        line-height: 23px;
    }

    /* Ensure existing search bar keeps its own layout inside */
    .search-outer-layout .provider-search-bar {
        margin-top: 0;
    }

    /* Provider card redesign */
    .search-results .provider-card {
        background: #ffffff;
        border-radius: 40px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        height: 100%;
        border: 1px solid rgb(213 190 198);
    }

    .search-results .provider-card:hover {
        border: 1px solid #E50050;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(16, 24, 40, 0.12);
    }

    .search-results .provider-image {
        padding: 16px 16px 0 16px;
    }

    .search-results .provider-image-inner {
        position: relative;
        border-radius: 25px;
        overflow: hidden;
    }

    .search-results .provider-image img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
    }

    .search-results .image-overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 12px 17px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
    }

    .overlay-left {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
    }

    .overlay-title {
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .overlay-meta {
        color: #e6e6e6;
        font-size: 14px;
    }

    .search-results .rating-badge {
        background: #fff;
        color: #111;
        border-radius: 999px;
        padding: 6px 10px;
        display: inline-flex;
        gap: 6px;
        align-items: center;
        font-weight: 700;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }

    .search-results .rating-badge i {
        color: #ffb400;
    }

    .search-results .provider-details {
        color: #111827;
    }

    /* emulate Bootstrap p-4 utility locally */
    .search-results .p-4 {
        padding: 0.3rem 1.5rem 1.5rem 2.0rem;
    }

    /* emulate common Bootstrap utilities locally */
    .search-results .text-center {
        text-align: center;
    }

    .search-results .img-fluid {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .search-results .card-title {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 6px 0;
        letter-spacing: -0.2px;
    }

    .search-results .provider-meta .address {
        color: #6b7280;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .search-results .provider-meta .address i {
        color: #ef4444;
    }

    /* reuse search-icon with a small variant for address */
    .search-results .search-icon {
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .search-results .search-icon img {
        width: 17px;
        height: 17px;
        display: block;
    }

    .search-results .search-icon-sm {
        width: 30px;
        height: 30px;
        border-radius: 16px;
    }

    .search-results .tag-list {
        margin: 12px 0;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .search-results .tag-chip {
        background: #f3f4f6;
        color: #374151;
        border: 1px solid #e5e7eb;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
    }

    .search-results .card-footer-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 12px;
    }

    .search-results .reviews-text {
        color: #6b7280;
        font-weight: 700;
        font-size: 14px;
    }

    .provider-card .appointment-btn {
        background-color: #000000ff;
        color: #fff;
        border-radius: 10px;
        padding: 8px 14px;
        font-size: 14px;
        font-weight: 700;
        border: none;
    }

    .provider-card .appointment-btn:hover {
        background-color: #727272ff;
    }

    /* Timing status & tooltip */
    .timing-status .status-text {
        font-size: 14px;
        font-weight: 400;
    }

    .timing-status {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        color: #374151;
        font-weight: 600;
    }

    .timing-status .status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        display: inline-block;
    }

    .timing-status .status-dot.open {
        background: #10b981;
    }

    .timing-status .status-dot.closed {
        background: #ef4444;
    }

    .timing-tooltip {
        position: fixed;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 10px;
        width: 240px;
        display: none;
    }

    .timing-tooltip .timing-tooltip-inner {
        max-height: 260px;
        overflow: auto;
    }

    .timing-row {
        display: flex;
        justify-content: space-between;
        padding: 6px 8px;
        border-radius: 8px;
        font-size: 14px;
    }

    .timing-row.today {
        background: #f9fafb;
        font-weight: 700;
    }

    .timing-day {
        color: #374151;
    }

    .timing-hours {
        color: #111827;
    }

    /* Rating inline row */
    .rating-row {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 5px;
        color: #374151;
        font-weight: 600;
    }

    .rating-row .fa-star {
        color: #ffb400;
    }

    .rating-row .rating-value {
        font-weight: 400;
        color: #e50050;
    }

    .rating-row .rating-count {
        color: #e50050;
        font-weight: 600;
    }

    /* Availability section */
    .availability-section {}

    .availability-title {
        color: #374151;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 5px;
        letter-spacing: 0px;
    }

    .availability-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 4px 0;
        flex-wrap: wrap;
    }

    .time-of-day {
        color: rgba(118, 33, 62, 1);
        font-weight: 500;
        font-size: 15px;
        width: 80px;
    }

    .chip-group {
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
    }

    .date-chip {
        padding: 4px 18px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        position: relative;
    }

    .date-chip b {
        font-weight: 500;
    }

    .date-chip.has-slot {
        background: rgba(229, 0, 80, 1);
        color: #ffffffff;
        border: 1px solid #ffd1df;
    }

    .date-chip.no-slot {
        background: #fff;
        color: #6b7280;
        border: 1px solid #e5e7eb;
    }

    .date-chip:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Date chip tooltip */
    .date-chip-tooltip {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 8px;
        padding: 6px 12px;
        background: #333;
        color: white;
        border-radius: 6px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 1000;
    }

    .date-chip-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-top-color: #333;
    }

    .date-chip:hover .date-chip-tooltip {
        opacity: 1;
    }

    /* Book now button */
    .book-now-btn {
        background: linear-gradient(270deg, #FF8C00 0%, #E50050 100%);
        color: #fff;
        border-radius: 999px;
        padding: 7px 18px;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: .3px;
    }

    .book-now-btn:hover {
        background: #ff9900;
    }

    .appointment-btn {
        margin-top: 20px;
        background-color: #1c1c1c;
        /* Dark background */
        color: white;
        /* White text */
        border: none;
        border-radius: 10px;
        /* Rounded corners */
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .appointment-btn:hover {
        background-color: #333;
        /* Slightly lighter on hover */
    }

    .date-box {
        border: 1px solid #3F51B5;
        /* or your desired blue */
        border-radius: 10px;
        padding: 5px 10px;
        color: #3F51B5;
        font-weight: 500;
        display: inline-block;
    }

    /* Page-scoped responsive grid (Bootstrap-free) */
    .results-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .results-item {}

    @media (max-width: 992px) {
        .results-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 640px) {
        .results-grid {
            grid-template-columns: 1fr;
        }
    }

    .provider-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s ease;
        height: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .provider-card:hover {
        transform: translateY(-5px);
    }

    .provider-link {
        text-decoration: none;
        color: inherit;
    }

    .provider-link:hover {
        text-decoration: none;
        color: inherit;
    }

    .provider-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .provider-details {
        color: #333;
    }

    .company-name {
        color: #666;
        /* font-style: italic; */
    }

    .provider-meta {
        /* margin: 15px 0; */
    }

    .provider-meta>div {
        margin-bottom: 8px;
    }

    .provider-meta i {
        margin-right: 8px;
        color: #666;
    }

    .rating i {
        color: #ffd700;
    }

    .timing {
        font-size: 0.9em;
    }

    @media (max-width: 480px) {
        .search-title {
            font-size: 17px !important;
        }
    }

    /* Category filter pills with icons */
    .service-filter-pills .filter-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .service-filter-pills .filter-pill .category-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        vertical-align: middle;
        object-fit: contain;
        flex-shrink: 0;
    }

    /* View Type Tabs Styling */
    .view-type-tabs-container {
        margin: 30px 0;
    }

    .view-type-tabs {
        display: flex;
        gap: 0;
        border: none;
        background: transparent;
        width: fit-content;
    }

    .view-tab {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        text-decoration: none;
        color: #6b7280;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        position: relative;
        background: transparent;
        border: none;
    }

    .view-tab:hover {
        color: rgba(229, 0, 80, 1);
    }

    .view-tab.active {
        color: rgba(229, 0, 80, 1);
        background: transparent;
    }

    .view-tab.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: rgba(229, 0, 80, 1);
    }

    .view-tab svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .view-tab span {
        white-space: nowrap;
    }

    @media (max-width: 640px) {
        .view-type-tabs {
            width: 100%;
            justify-content: flex-start;
        }

        .view-tab {
            padding: 10px 16px;
            font-size: 14px;
        }

        .view-tab svg {
            width: 18px;
            height: 18px;
        }
    }