:root {
    --font-poppins: "Poppins", sans-serif;
    --font-roboto: "Roboto", sans-serif;
    --white-color: #fff;
    --borders-color: #E8E8E8;
    --text-color: #525252;
    --primary-color1: #eb2b2b;

}

a {
    text-decoration: none !important;
}

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

.skeleton-banner {
    background: #e9ecef;
    position: relative;
    overflow: hidden;
}

.skeleton-card {
    height: 150px;
    background: #e9ecef;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.skeleton-text {
    height: 24px;
    width: 200px;
    background: #e9ecef;
    margin: 10px auto;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.skeleton-text.small {
    width: 160px;
    height: 14px;
}

/* shimmer animation */

.skeleton-banner::after,
.skeleton-card::after,
.skeleton-text::after {

    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);

    animation: skeletonLoading 1.4s infinite;

}

@keyframes skeletonLoading {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }

}

/* =================================
INVITATION SECTION
================================= */

.main-secondery {
    background: #f5f5f700;
    padding: 0px 25px 25px 25px;
}


/* =================================
BANNER
================================= */

.banner {
    position: relative;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.banner-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.breadcrumb-text {
    margin-top: 6px;
    font-size: 15px;
}

.breadcrumb-text a {
    color: #f6d5d4;
    text-decoration: none;
    margin-right: 10px;
}


/* =================================
SLIDER CARD
================================= */

.service-card {

    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    transition: all .35s ease;

}

.service-card img {

    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform .5s ease;

}

.service-card:hover img {
    transform: scale(1.15);
}


/* Gradient shadow for text */

.service-card::after {

    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .25),
            rgba(0, 0, 0, 0));

}


/* TEXT */

.service-text {

    position: absolute;
    bottom: 14px;
    left: 16px;

    color: #fff;
    font-weight: 600;
    font-size: 15px;

    z-index: 2;

    text-shadow: 0 4px 12px rgba(0, 0, 0, .9);

}


/* =================================
SWIPER NAVIGATION BUTTONS
================================= */

.swiper-button-next,
.swiper-button-prev {

    background: rgba(0, 0, 0, 0.55);
    color: #fff;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    backdrop-filter: blur(6px);

}

.swiper-button-next::after,
.swiper-button-prev::after {

    font-size: 14px;
    font-weight: bold;

}


/* =================================
DESKTOP
================================= */

@media(min-width:992px) {

    .banner {
        height: 320px;
    }

    .banner-title {
        font-size: 42px;
    }

    .service-card img {
        height: 150px;
    }

}


/* =================================
TABLET
================================= */

@media(max-width:991px) {

    .banner {
        height: 280px;
    }

    .banner-title {
        font-size: 34px;
    }

    .service-card img {
        height: 140px;
    }

}


/* =================================
MOBILE
================================= */

@media(max-width:576px) {

    .main-secondery {
        padding: 80px 25px 25px 25px;
    }

    .invitation-section {
        padding: 16px;
    }

    .banner {
        height: 220px;
    }

    .banner-title {
        font-size: 26px;
    }

    .breadcrumb-text {
        font-size: 14px;
    }

    .service-card img {
        height: 120px;
    }

    /* arrows inside slider */

    .swiper-button-next,
    .swiper-button-prev {

        width: 34px;
        height: 34px;
        top: 45%;

    }

    .swiper-button-next {
        right: 5px;
    }

    .swiper-button-prev {
        left: 5px;
    }

}

/* ================================================================================================
================================================================================================
filter section
======================================================================================================
====================================================================================================== */

/* SEARCH BAR */

.service-search-bar {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #e6e6e6;
    margin-bottom: 12px;
    align-items: center;
    justify-content: space-between;
}

.zone-select {
    width: 220px;
}

.zone-group {
    grid-column: 1 / -1;
    margin-bottom: 30px;
}

.zone-title {
    font-size: 20px;
    font-weight: 600;
    margin: 5px 0 20px;
}

.artist-zone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.select-row {
    display: flex;
    gap: 10px;
}

.select-row .zone-select,
.select-row .sort-select {
    flex: 1;
}

.sort-select {
    width: 150px;
}

.zone-select .nice-select,
.sort-select .nice-select {
    width: 100%;
    max-height: 50px !important;
    line-height: 37px;
    color: #AAAAAA;
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 500;
    background: var(--white-color);
    border-color: var(--borders-color);
    border-radius: 12px;
    padding-left: 20px;
    padding-right: 20px;
}

.nice-select:hover {
    border-color: var(--borders-color);
}

.nice-select:focus {
    border-color: var(--borders-color);
}

.nice-select.open {
    border-radius: 10px 10px 0 0;
}

.nice-select.open::after {
    transform: rotate(-180deg);
}

.nice-select:after {
    border-bottom: none;
    border-right: none;
    content: "";
    display: block;
    height: 7px;
    width: 10px;
    background-color: rgba(82, 82, 82, 0.6);
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    transform: rotate(0);
}

.nice-select .list {
    width: 100%;
    background: var(--white-color);
    margin-top: 0;
    border-radius: 0 0 5px 5px;
}

.nice-select .list .option {
    color: var(--text-color);
    font-family: var(--font-roboto);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--borders-color);
}

.nice-select .list .option:last-child {
    border-bottom: unset;
}

/* SEARCH BOX */

.search-box {
    flex: 1;
    border: 1px solid var(--borders-color);
    border-radius: 10px;
    overflow: hidden;
    height: 50px;
    min-width: 250px;
    max-width: 500px;
    transition: all .2s ease;
}


/* REMOVE BOOTSTRAP DEFAULT STYLE */

.search-box .input-group-text,
.search-box .form-control {
    border: none;
    background: var(--white-color);
}


/* ICON */

.search-box i {
    color: #fdaeae;
    font-size: 16px;
}


/* INPUT */

.search-box input {
    height: 100%;
    padding-left: 10px;
    color: #AAAAAA;
    font-family: var(--font-poppins);
    font-size: 14px;
}

.search-box input:focus {
    outline: none;
    box-shadow: none;
}

.search-box:focus-within {
    border-color: var(--primary-color1);
    box-shadow: 0 0 0 3px rgba(235, 43, 43, 0.20);
}

.search-box input::placeholder {
    color: #AAAAAA;
    font-family: var(--font-poppins);
    font-size: 14px;
}

/* count */

.result-info {

    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    padding: 0 5px;

}

.count-title {
    font-size: 14px;
    font-weight: 600;
    color: #5e5d5d;
    margin-bottom: 2px;

}

.zone-name {
    color: var(--primary-color1);
}


/* MAIN GRID */

.service-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 25px;
}


/* FILTER SIDEBAR */

.filter-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
}

.filter-sidebar h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

/* FILTER SECTION */

.filter-section {
    margin-bottom: 28px;
}

.filter-section h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}


/* CATEGORY CHECKBOX */

.filter-section label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    margin-bottom: 4px;
    cursor: pointer;
}


/* CUSTOM CHECKBOX */

.filter-section input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color1);
    cursor: pointer;
}


/* HOVER */

.filter-section label:hover {
    color: var(--primary-color1);
}


/* PRICE RANGE */

.filter-section input[type="range"] {
    width: 100%;
    height: 6px;
    appearance: none;
    background: #e5e5e5;
    border-radius: 5px;
    outline: none;
}


/* RANGE THUMB */

.filter-section input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color1);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}


/* RANGE TRACK */

.filter-section input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary-color1);
    border-radius: 50%;
    cursor: pointer;
}


/* PRICE TEXT */

.price-range {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
    display: flex;
    justify-content: space-between;
}


/* ACTIVE FILTERS */

.active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-tag {
    background: #e74c3c;
    color: #fff;
    padding: 2px 15px;
    border-radius: 25px;
    font-size: 13px;
}

.clear-filter {
    color: #555;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}


/* ARTIST GRID */

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.no-result {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* min-height: 350px; */
    text-align: center;
    padding: 20px 0;
    color: #666;
}

.no-result h4 {
    font-weight: 600;
    margin-bottom: 6px;
}

.no-result p {
    color: #777;
    font-size: 14px;
}

/* CARD */

.artist-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.22s, transform 0.22s;
    cursor: pointer;
}

.artist-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.card-image {
    position: relative;
    height: 180px;
    background: #ddd;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.artist-card:hover .card-image img {
    transform: scale(1.04);
}

.card-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.18s;
    color: #ccc;
}

.card-wishlist:hover {
    transform: scale(1.15);
}

.card-wishlist.active {
    color: #e05555;
}

.card-body {
    padding: 12px 14px 14px;
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3px;
}

.card-name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
}

.card-rating {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    margin-left: 8px;
    flex-shrink: 0;
}

.card-rating i {
    color: rgb(250, 178, 69);
}

.card-location {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    margin-bottom: 4px;
}

.card-location i {
    color: var(--primary-color1);
}

.card-specialty {
    font-size: 12px;
    color: #555;
    margin-bottom: 12px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price-label {
    font-size: 11px;
    color: #888;
    margin-bottom: 1px;
}

.card-price {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.card-book-btn {
    padding: 8px 18px;
    background: #e05555;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
}

.card-book-btn:hover {
    background: #c94444;
    transform: scale(1.03);
}

/* ---- SKELETON CARDS ---- */
.artist-card.skeleton {
    cursor: default;
    pointer-events: none;
}

.artist-card.skeleton:hover {
    box-shadow: none;
    transform: none;
}

.skeleton-img {
    height: 180px;
    background: #e8e8e8;
    animation: shimmer 1.4s infinite linear;
    background-image: linear-gradient(90deg, #e8e8e8 0%, #f2f2f2 40%, #e8e8e8 80%);
    background-size: 300% 100%;
}

.skeleton-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-line {
    height: 11px;
    border-radius: 5px;
    background-image: linear-gradient(90deg, #e8e8e8 0%, #f2f2f2 40%, #e8e8e8 80%);
    background-size: 300% 100%;
    animation: shimmer 1.4s infinite linear;
}

.skeleton-line.w-80 {
    width: 80%;
}

.skeleton-line.w-60 {
    width: 60%;
}

.skeleton-line.w-40 {
    width: 40%;
}

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

    100% {
        background-position: -100% 0;
    }
}


/* PAGINATION */

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-btn {
    height: 36px;
    width: 36px;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
    color: var(--primary-color1);
    font-size: 18px;
}

.page-btn:hover {
    background: var(--primary-color1);
    color: #fff;
    border-color: var(--primary-color1);
}

.pagination-numbers {
    display: flex;
    gap: 6px;
}

.page-number {
    height: 36px;
    min-width: 36px;
    padding: 0 10px;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    font-size: 14px;
    transition: all .2s;
}

.page-number:hover {
    background: #f5f5f5;
}

.page-number.active {
    background: var(--primary-color1);
    color: #fff;
    border-color: var(--primary-color1);
    border-radius: 18px;
}

/* MOBILE FILTER BUTTON */

.filter-btn {
    height: 37px;
    border-radius: 25px;
    padding: 0px 16px;
}


/* FILTER DRAWER */

.filter-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 99998;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    transition: .4s;
}

.filter-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.drawer-body {
    padding: 20px;
}


.drawer-header #closeFilter {
    height: 30px;
    width: 30px;
    background-color: #f68989;
    border: 1px solid var(--borders-color);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* RESPONSIVE */

@media(max-width:992px) {

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

    .filter-sidebar {
        display: none;
    }

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

}

@media(max-width:576px) {

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

    .service-search-bar {
        flex-direction: column;
    }

    .zone-select,
    .sort-select {
        width: 100%;
    }

    .zone-select .nice-select,
    .sort-select .nice-select {
        width: 100%;
        max-height: 40px !important;
        line-height: 29px;
        color: #AAAAAA;
        font-family: var(--font-poppins);
        font-size: 14px;
        font-weight: 500;
        background: var(--white-color);
        border-color: var(--borders-color);
        border-radius: 12px;
        padding-left: 20px;
        padding-right: 20px;
    }


    .search-box input {
        height: 100%;
        padding-left: 5px;
        color: #AAAAAA;
        font-family: var(--font-poppins);
        font-size: 18px;
    }


    .service-search-bar {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    /* search full width */

    .search-box {
        max-width: 100%;
        min-width: 100%;
    }

    /* zone + sort row */

    .select-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    /* filter button */

    .filter-btn {
        width: 100%;
        height: 42px;
        font-size: 14px;
    }

    /* input text size */

    .search-box input {
        font-size: 15px;
    }

    /* mobile card grid */

    .artist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* smaller card image */

    .card-image {
        height: 140px;
    }

    /* text adjust */
    .card-top {
        margin-bottom: 12px;
    }

    .card-name {
        font-size: 16px;
    }

    .card-price {
        font-size: 14px;
    }

    .card-location,
    .card-specialty {
        font-size: 10px;
    }

    .card-footer {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .card-footer .card-price-menu {
        width: 100%;
    }

    .card-footer a {
        width: 100%;
        text-decoration: none;
        text-align: center;
    }
}