html,
body,
h1,
h2,
h3,
h4,
p {
    font-family: "Inter", sans-serif !important;
}

body {
    background-color: #f6f7f8;
    font-family: Inter, sans-serif;
}
.bsx-page-1250{
    font-size: 1rem;
}
main.custom-main-container {
    width: 100% !important;
    margin: 0px !important;
    padding: 0px !important;
}

.loader {
    border: 8px solid #e3e3e3 !important;
    border-top: 8px solid #595959 !important;
    border-radius: 50% !important;
    width: 75px !important;
    height: 75px !important;
    animation: spin 2s linear infinite;
    display: none;
    position: relative;
    left: 47% !important;
    top: 30px !important;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================
   Page Container
   ========================= */
.bsx-page-1250 {
    width: 100%;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 768px) {
    .bsx-page-1250 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 992px) {
    .bsx-page-1250 {
        padding-left: 48px;
        padding-right: 48px;
    }
}

.bsx-main {
    padding-top: 32px;
    padding-bottom: 32px;
}

/* =========================
   Headings
   ========================= */
.bsx-h1 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    font-size: 28px;
}

@media (min-width: 768px) {
    .bsx-h1 {
        font-size: 32px;
    }
}

@media (max-width: 575.98px) {
    .bsx-h1 {
        font-size: 22px;
        line-height: 1.2;
    }
}

.bsx-subheading {
    color: #111418;
    font-weight: 500;
}

/* =========================
   Head Row
   ========================= */
.bsx-headRow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 1.5rem;
}

@media (max-width: 575.98px) {
    .bsx-headRow {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bsx-headRow .bsx-mapTopBtn {
        align-self: flex-end;
    }
}

.bsx-mapTopBtn {
    border: 0;
    background: #ffffff;
    border-radius: 9999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 24px rgba(17, 20, 24, 0.12);
    height: 40px;
    white-space: nowrap;
    cursor: pointer;
}

.bsx-mapTopBtn:hover {
    background: #f9fafb;
}

.bsx-icon-20 {
    font-size: 20px;
}

.bsx-text-primary {
    color: #137fec !important;
}

/* =========================
   Mobile Filter Bar
   ========================= */
.bsx-mobileBar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    display: flex;
    gap: 12px;
    cursor: grab;
    margin-bottom: 1.5rem;
}

.bsx-mobileBar.bsx-dragging {
    cursor: grabbing;
}

.bsx-mobileBar::-webkit-scrollbar {
    height: 0px;
}

.bsx-chipBtn {
    border-radius: 9999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(17, 20, 24, 0.06);
    cursor: pointer;
}

.bsx-chipBtnPrimary {
    background: #137fec;
    border-color: #137fec;
    color: #fff;
}

.bsx-icon-18 {
    font-size: 18px;
}

/* =========================
   Cards Container
   ========================= */
.bsx-cards-container {
    display: grid;
    gap: 1rem;
}

/* =========================
   Show More Button
   ========================= */
.bsx-showMoreBtn {
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 24px;
    box-shadow: 0 2px 12px rgba(17, 20, 24, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 2rem;
}

.bsx-showMoreBtn:hover {
    box-shadow: 0 6px 18px rgba(17, 20, 24, 0.1);
}

/* Categories Section */
.categories-section {
    margin-top: 30px;
    margin-bottom: 20px;
}

.categories-scroll-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-top: 30px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}

.categories-scroll.active {
    cursor: grabbing;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 auto;
    padding: 5px 10px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
    height: 42.33px !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.category-item:hover {
    text-decoration: none;
    border-color: #137fec;
    background: #137fec;
    color: white !important;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.1);
}

.category-item.active {
    display: none !important;
    /* background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    border-color: #0d9488;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.2); */
}

/* =========================
   Complete BSX Styles from Style.css
   ========================= */
.bsx-text-primary {
    color: #137fec !important;
}

.bsx-bg-primary {
    background: #137fec !important;
}

.bsx-border-soft {
    border: 1px solid #f0f2f4;
}

.bsx-page {
    min-height: 100vh;
    overflow-x: hidden;
}

.bsx-icon-28 {
    font-size: 28px;
}

.bsx-icon-22 {
    font-size: 22px;
}

.bsx-icon-20 {
    font-size: 20px;
}

.bsx-icon-18 {
    font-size: 18px;
}

.bsx-icon-16 {
    font-size: 16px;
}

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

.bsx-pointer {
    cursor: pointer;
}

.bsx-minw-0 {
    min-width: 0;
}

.bsx-mobileBar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    display: flex;
    gap: 12px;
    cursor: grab;
}

.bsx-mobileBar.bsx-dragging {
    cursor: grabbing;
}

.bsx-mobileBar::-webkit-scrollbar {
    height: 0px;
}

.bsx-chipBtn {
    border-radius: 9999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(17, 20, 24, 0.06);
    height: 42.33px !important;
}

.bsx-chipBtnPrimary {
    background: #137fec;
    border-color: #137fec;
    color: #fff;
}

.bsx-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 16px;
    border: 1px solid transparent;
    box-shadow: 0 2px 12px rgba(17, 20, 24, 0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.bsx-card:hover {
    box-shadow: 0 14px 40px rgba(17, 20, 24, 0.12);
    border-color: rgba(19, 127, 236, 0.2);
}

@media (min-width: 576px) {
    .bsx-card {
        padding: 20px;
    }
}

.bsx-cardImgWrap {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
    flex: 0 0 auto;
    align-self: flex-start;
}

@media (min-width: 576px) {
    .bsx-cardImgWrap {
        width: 440px;
        margin-right: 24px;
        margin-bottom: 0;
    }
}

.bsx-cardImg {
    width: 100%;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    aspect-ratio: 4 / 3;
}

@media (min-width: 576px) {
    .bsx-cardImg {
        aspect-ratio: auto;
        height: 230px;
    }
}

.bsx-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(17, 20, 24, 0.12);
}

.bsx-badgePro {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #111418;
}

.bsx-badgeNew {
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
}

.bsx-favBtn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 0;
    background: rgba(255, 255, 255, 0.8);
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.bsx-favBtn:hover {
    background: rgba(255, 255, 255, 1);
    color: #ef4444;
}

.bsx-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px 0;
    cursor: pointer;
    transition: color 0.2s ease;
    color: #000000;
}

.bsx-metaLine {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.bsx-rating {
    color: #fbbf24;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bsx-reviewCount {
    color: #898989;
}

.bsx-dotSep {
    color: #d1d5db;
    margin: 0 4px;
    font-size: 0;
}

.bsx-dotSep::before {
    content: ".";
    font-size: 14px;
}

.bsx-loc {
    color: #6b7280;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 320px;
}

.bsx-desc {
    color: #6b7280;
    font-size: 14px;
    margin: 0 0 16px 0;
}

.bsx-services {
    margin-bottom: 0;
}

.bsx-serviceRow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content max-content;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed #f3f4f6;
}

.bsx-serviceName {
    color: #374151;
    min-width: 0;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    grid-column: 1;
    grid-row: 1;
}

.bsx-serviceTime {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
}

.bsx-price {
    font-weight: 700;
    white-space: nowrap;
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
}

.bsx-priceAndBtn {
    display: contents;
}

.bsx-btnInlineBook {
    border: 0;
    background: #137fec;
    color: #fff;
    border-radius: 9999px;
    height: 30px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    grid-column: 3;
    grid-row: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.bsx-btnInlineBook:hover {
    background: #0f6fd3;
    color: #fff;
    text-decoration: none;
}

.bsx-slot {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
}

.bsx-slotGreen {
    color: #16a34a;
    background: #ecfdf5;
}

.bsx-slotOrange {
    color: #ea580c;
    background: #fff7ed;
}

.bsx-showMoreBtn {
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 24px;
    box-shadow: 0 2px 12px rgba(17, 20, 24, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bsx-showMoreBtn:hover {
    box-shadow: 0 6px 18px rgba(17, 20, 24, 0.1);
}

/* Card Styles from Style.css */
.bsx-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 16px;
    border: 1px solid transparent;
    box-shadow: 0 2px 12px rgba(17, 20, 24, 0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.bsx-card:hover {
    box-shadow: 0 14px 40px rgba(17, 20, 24, 0.12);
    border-color: rgba(19, 127, 236, 0.2);
}

@media (min-width: 576px) {
    .bsx-card {
        padding: 20px;
    }
}

.bsx-cardImgWrap {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
    flex: 0 0 auto;
    align-self: flex-start;
}

@media (min-width: 576px) {
    .bsx-cardImgWrap {
        width: 440px;
        margin-right: 24px;
        margin-bottom: 0;
    }
}

.bsx-cardImg {
    width: 100%;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    aspect-ratio: 4 / 3;
}

@media (min-width: 576px) {
    .bsx-cardImg {
        aspect-ratio: auto;
        height: 230px;
    }
}

.bsx-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(17, 20, 24, 0.12);
}

.bsx-badgePro {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #111418;
}

.bsx-badgeNew {
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
}

.bsx-favBtn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 0;
    background: rgba(255, 255, 255, 0.8);
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.bsx-favBtn:hover {
    background: rgba(255, 255, 255, 1);
    color: #ef4444;
}

.bsx-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px 0;
    cursor: pointer;
    transition: color 0.2s ease;
    color: #000000;
}

.bsx-metaLine {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.bsx-rating {
    color: #fbbf24;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bsx-reviewCount {
    color: #898989;
}

.bsx-dotSep {
    color: #d1d5db;
    margin: 0 4px;
    font-size: 0;
}

.bsx-dotSep::before {
    content: ".";
    font-size: 14px;
}

.bsx-loc {
    color: #6b7280;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 320px;
}

.bsx-desc {
    color: #6b7280;
    font-size: 14px;
    margin: 0 0 16px 0;
}

.bsx-services {
    margin-bottom: 0;
}

.bsx-serviceRow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content max-content;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed #f3f4f6;
}

.bsx-serviceName {
    color: #374151;
    min-width: 0;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    grid-column: 1;
    grid-row: 1;
}

.bsx-serviceTime {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
}

.bsx-price {
    font-weight: 700;
    white-space: nowrap;
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
}

.bsx-priceAndBtn {
    display: contents;
}

.bsx-btnInlineBook {
    border: 0;
    background: #137fec;
    color: #fff;
    border-radius: 9999px;
    height: 30px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    grid-column: 3;
    grid-row: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.bsx-btnInlineBook:hover {
    background: #0f6fd3;
    color: #fff;
    text-decoration: none;
}

.bsx-slot {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
}

.bsx-slotGreen {
    color: #16a34a;
    background: #ecfdf5;
}

.bsx-slotOrange {
    color: #ea580c;
    background: #fff7ed;
}

.bsx-icon-16 {
    font-size: 16px;
}

.bsx-icon-22 {
    font-size: 22px;
}

.bsx-minw-0 {
    min-width: 0;
}
@media (min-width: 576px) {
    .bsx-cardImgWrap a > div > div{
        height: 230px !important;
        border-radius: 8px;
    }
    .swiper-pagination-fraction{
        top: 0px;
        left: 5px;
        text-align: left;
    }
}
@media (max-width: 576px) {
    .bsx-cardImgWrap{
        width: 320px;
        margin: 0 auto;
        margin-bottom: 16px;
    }
    .swiper-pagination-fraction{
        top: 5px;
        left: 10px;
        text-align: left;
    }
}

.swiper-pagination-fraction span{
    opacity: 1 !important;
    color: black;
    font-weight: 600;
    font-size: 16px;
}

 /* Mobile: make gallery/image full width */
 @media (max-width: 576px) {
    .bsx-card {
      overflow: hidden; /* safety */
    }

    .bsx-cardImgWrap,
    .bsx-cardImgWrap a,
    .bsx-cardImgWrap .swiper-container,
    .bsx-cardImgWrap .swiper-wrapper,
    .bsx-cardImgWrap .img-fixed-aspect-ratio,
    .bsx-cardImgWrap .img-fixed-aspect-ratio > div {
      width: 100% !important;
      max-width: 100% !important;
    }

    /* Swiper inline width ko override kare */
    .bsx-cardImgWrap .swiper-slide {
      width: 100% !important;
    }

    .bsx-cardImgWrap img {
      width: 100% !important;
      display: block;
      object-fit: cover;
    }
  }