/* CSS FOR LOADER*/ 

.sbs-loader-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.sbs-loader-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sbs-loader {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 4px solid #e5e5e5;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: sbs-spin 0.8s linear infinite;
}

@keyframes sbs-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* FOR CATEGORY PAGE*/ 

.sbs-categories,

.sbs-categories * {

    box-sizing: border-box;

}



.sbs-categories {

    width: 100%;

    margin: 40px 0;

    font-family: Arial, sans-serif;

}



/* Each category row */

.sbs-category-section {

    display: grid;

    grid-template-columns: 55% 45%;

    align-items: center;

    width: 100%;

    min-height: 520px;

    margin-bottom: 50px;

    background: #eef3f2;

    overflow: visible;

}



/* Left image */

.sbs-category-image {

    width: 100%;

    height: 520px;

    overflow: hidden;

}



.sbs-category-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}



/* Right content card */

.sbs-category-content {

    background: #ffffff;

    padding: 45px 55px;

    border-radius: 5px;

    max-width: 680px;

    width: calc(100% + 120px);

    margin-left: -120px;

    position: relative;

    z-index: 2;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

}



.sbs-category-content h2 {

    font-size: 42px;

    line-height: 1.2;

    color: #10213b;

    margin: 0 0 18px;

    font-weight: 600;

}



.sbs-category-content p {

    font-size: 18px;

    line-height: 1.7;

    color: #000;

    margin: 0 0 30px;

}



.sbs-category-content .sbs-view-services {

    display: inline-block;

    background: #f3d27b;

    color: #000;

    padding: 14px 28px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 16px;

    font-weight: 500;

}



.sbs-category-content .sbs-view-services:hover {

    background: #e6bf5c;

    color: #000;

}



/* Mobile */

@media (max-width: 991px) {

    .sbs-category-section {

        display: block;

        min-height: auto;

        margin-bottom: 35px;

        padding-bottom: 30px;

    }



    .sbs-category-image {

        height: 350px;

    }



    .sbs-category-content {

        width: auto;

        max-width: none;

        margin: -70px 20px 0;

        padding: 35px 25px;

    }



    .sbs-category-content h2 {

        font-size: 32px;

    }



    .sbs-category-content p {

        font-size: 16px;

    }

}







/* FOR SERVICES PAGE */

.sbs-selected-category-title{

    text-align: center;
    font-size: 40px;
    font-family: 'Playfair Display';
    color: #000;

}





.sbs-services,

.sbs-services * {

    box-sizing: border-box;

}



.sbs-services {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;

    margin: 40px 0;

}




.sbs-services .service-item.image-only {
    padding: 0;
    border: none;
    background: transparent;
}

.sbs-services .service-image-link {
    display: block;
    width: 100%;
    /* height: 320px; */
    overflow: hidden;
    border-radius: 12px;
}

.sbs-services .service-image-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}



/* Responsive */

@media (max-width: 991px) {

    .sbs-services {

        grid-template-columns: 1fr;

    }

}




/* FOR NAD CATEGORY PAGE*/
.sbs-nad-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 55px;
}

.sbs-nad-service-item {
    border-radius: 8px;
    overflow: hidden;
}

.sbs-nad-service-link {
    display: block;
}

.sbs-nad-service-link img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}



/* Mobile */
@media (max-width: 767px) {
    .sbs-nad-services {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sbs-nad-service-link img {
        height: auto;
    }
}



/* FOR SINGLE SERVICE PAGE*/
.sbs-single-service-page,
.sbs-single-service-page * {
    box-sizing: border-box;
}

.sbs-single-service-page {
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: center;
    min-height: 560px;
    background: #f3f4f6;
    font-family: Arial, sans-serif;
}

.sbs-single-image {
    height: 100%;
}

.sbs-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sbs-single-content {
    background: #ffffff;
    padding: 34px;
    margin-left: -100px;
    max-width: 680px;
    position: relative;
    z-index: 2;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    margin-top: 50px;
    margin-bottom: 50px;
}

.sbs-single-content h1 {
    font-size: 36px;
    margin: 0 0 16px;
    line-height: 1.2;
    color: #111827;
    text-transform: uppercase;
    font-family: 'Playfair Display';
    font-weight: 500;
}

.sbs-single-content h1 span {
    font-weight: 400;
}

.sbs-single-description {
    font-size: 18px;
    line-height: 1.7;
    color: #111827;
}

.sbs-single-description ul {
    margin: 12px 0 18px;
    padding-left: 20px;
}

.sbs-single-description li {
    margin-bottom: 6px;
}

.sbs-single-book-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 22px;
    background: #f0c2a7;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-family: 'Lato';
    font-weight: 500;
    border:1px solid #e4b69b;
}

.sbs-single-book-btn:hover {
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #eacd7d;
    box-shadow: 0px 0px 30px 10px #efe1ba;
    color: #000;
    background: #fff;
}

@media (max-width: 768px) {
    .sbs-single-service-page {
        grid-template-columns: 1fr;
    }

    .sbs-single-image {
        height: 320px;
    }

    .sbs-single-content {
        margin-left: 0;
        margin: -40px 16px 30px;
    }
}









/* FOR BOOKING FORM */

.sbs-booking-wrapper,

.sbs-booking-wrapper * {

    box-sizing: border-box;

}



.sbs-booking-wrapper {

    max-width: 760px;

    margin: 40px auto;

    padding: 24px;

    background: #ffffff;

    border: 1px solid #e4b69b;

    border-radius: 14px;

    font-family: Arial, sans-serif;

    color: #111827;

}



.sbs-booking-wrapper h2,

.sbs-booking-wrapper h3,

.sbs-booking-wrapper p {

    margin-top: 0;
    font-family: 'Playfair Display';

}



.sbs-service-info,

#sbs-booking-summary {

    padding: 18px;

    margin-bottom: 24px;

    background: #f9fafb;

    border: 1px solid #e4b69b;

    border-radius: 12px;

}



/* Progress */

.sbs-progress {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 12px;

    margin-bottom: 32px;

}



.sbs-progress-item {

    flex: 1;

    position: relative;

    text-align: center;

}



.sbs-progress-item::after {

    content: "";

    position: absolute;

    top: 20px;

    left: 50%;

    width: 100%;

    height: 3px;

    background: #e5e7eb;

    z-index: 1;

}



.sbs-progress-item:last-child::after {

    display: none;

}



.sbs-progress-item span {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;

    border-radius: 50%;

    background: #e5e7eb;

    color: #6b7280;

    font-weight: 600;

    position: relative;

    z-index: 2;

}



.sbs-progress-item.active span {

    background: #f0c2a7;

    color: #000;

}



.sbs-progress-item.completed span {

    background: #f0c2a7;

    color: #000;

}



.sbs-progress-item.completed::after {

    background: #f0c2a7;

}



/* Steps */

.sbs-step {

    display: none;

}



.sbs-step.active {

    display: block;

}



/* Cards */

.sbs-card {

    display: block;

    padding: 14px 16px;

    margin-bottom: 12px;

    border: 1px solid #e4b69b;

    border-radius: 10px;

    background: #ffffff;

    cursor: pointer;

    transition: all 0.3s ease;

}



.sbs-card:hover {

    background: #fff7f3;
    border-color: #e4b69b;
    transform: translateY(-3px);

}



.sbs-card input {

    margin-right: 8px;

}



/* Fields */

.sbs-booking-wrapper input[type="text"],

.sbs-booking-wrapper input[type="email"],

.sbs-booking-wrapper input[type="date"],

.sbs-booking-wrapper textarea {

    width: 100%;

    padding: 12px 14px;

    margin-bottom: 14px;

    border: 1px solid  #e4b69b;

    border-radius: 8px;

    font-size: 15px;

    background: #ffffff;

    color: #111827;

}



.sbs-booking-wrapper textarea {

    min-height: 110px;

    resize: vertical;

}



/* Time slots */

.sbs-time-slots {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

}



/* Buttons */

.sbs-booking-wrapper button,

.sbs-booking-wrapper .sbs-submit-btn {

    padding: 12px 20px;

    margin-top: 14px;

    margin-right: 8px;

    border: 1px solid #e4b69b;

    border-radius: 5px;

    background: #f0c2a7;

    color: #000;

    font-size: 16px;

    cursor: pointer;

    font-weight: 500;

    font-family: 'Lato';

}



.sbs-booking-wrapper button:hover,

.sbs-booking-wrapper .sbs-submit-btn:hover {

    background: #f0c2a7;
    border: none !important;
    color: #000;

}



.sbs-booking-wrapper button:disabled {

    opacity: 0.6;

    cursor: not-allowed;

}



.sbs-booking-wrapper .sbs-prev {

    background: #f0c2a7;

}



.sbs-booking-wrapper .sbs-prev:hover {

    background: #f0c2a7;
    color: #000;

}



@media (max-width: 600px) {

    .sbs-booking-wrapper {

        padding: 16px;

        margin: 20px 10px;

    }



    .sbs-progress {

        gap: 6px;

    }



    .sbs-progress-item::after {

        top: 18px;

    }



    .sbs-progress-item span {

        width: 36px;

        height: 36px;

        font-size: 14px;

    }



    .sbs-time-slots {

        grid-template-columns: 1fr;

    }

}




/* =========================================

PAYMENT PAGE

========================================= */
.sbs-payment-page,
.sbs-payment-page * {
    box-sizing: border-box;
}

.sbs-payment-page {
    max-width: 1050px;
    margin: 50px auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    font-family: Arial, sans-serif;
}

.sbs-payment-left,
.sbs-payment-right {
    background: #ffffff;
    border: 1px solid #e4b69b;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.sbs-payment-left h2,
.sbs-payment-right h3 {
    margin-top: 0;
    color: #111827;
}

.sbs-payment-alert {
    padding: 14px 16px;
    margin-bottom: 22px;
    background: #f0c2a730;
    border-left: 4px solid #f0c2a7;
    border-radius: 8px;
    color: #b37f62;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Lato';
    font-weight: 600;
}

.sbs-payment-left label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.sbs-payment-left input[type="text"] {
    width: 100%;
    height: 46px;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
}

.sbs-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sbs-save-card {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 4px 0 20px;
}

.sbs-payment-btn {
    width: 100%;
    padding: 14px 20px;
    background: #f0c2a7;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #e4b69b
}

.sbs-payment-btn:hover {
    background: #f0c2a7;
    color: #000;
    border: 1px solid #e4b69b;
}

.sbs-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid #e4b69b !important;
}

.sbs-summary-row span {
    color: #000;
    font-size: 16px;
    font-family: 'Playfair Display';
}

.sbs-summary-row strong {
    text-align: right;
    color: #000;
    font-family: 'Lato';
}

.sbs-summary-row.total {
    font-size: 20px;
    border-bottom: none;
    margin-top: 10px;
}

.sbs-summary-note {
    margin-top: 22px;
    padding: 14px;
    background: #f9fafb;
    border-radius: 10px;
    color: #4b5563;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sbs-payment-page {
        grid-template-columns: 1fr;
        margin: 25px 12px;
        padding: 0;
    }

    .sbs-card-row {
        grid-template-columns: 1fr;
    }
}







/* =========================================

THANK YOU PAGE WRAPPER

========================================= */



.sbs-thank-you-wrapper {

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 30px 20px;

    background: #f5f7fb;

    min-height: 100vh;

}



/* =========================================

THANK YOU CARD

========================================= */



.sbs-thank-you-card {

    background: #ffffff;

    max-width: 550px;

    width: 100%;

    padding: 50px 40px;

    border-radius: 18px;

    text-align: center;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

}



/* =========================================

SUCCESS ICON

========================================= */



.sbs-success-icon {

    width: 90px;

    height: 90px;

    margin: 0 auto 25px;

    background: #28c76f;

    color: #ffffff;

    font-size: 42px;

    font-weight: bold;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 6px 20px rgba(40, 199, 111, 0.3);

}



/* =========================================

HEADING

========================================= */



.sbs-thank-you-card h2 {

    font-size: 34px;

    color: #222;

    margin-bottom: 18px;

    font-weight: 700;

    font-family: 'Playfair Display';

}



/* =========================================

MESSAGE

========================================= */



.sbs-thank-message {
    font-size: 17px;
    color: #000;
    font-weight: 500;
    font-family: 'Lato' !important;
    line-height: 1.7;

}



.sbs-thank-message strong {

    color: #000;

}



/* =========================================

BOOKING SUMMARY

========================================= */



.sbs-booking-summary{
    background:#f8fafc;
    border:1px solid #e4b69b;
    border-radius:16px;
    padding:25px;
    margin:25px 0;
}

.sbs-summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:14px 0;
    border-bottom:1px solid #e5e7eb;
}

.sbs-summary-row:last-child{
    border-bottom:none;
}

.sbs-label{
    font-weight:600;
    color:#111827;
}

.sbs-value{
    color:#374151;
    text-align:right;
}

.sbs-summary-row.total{
    font-size:18px;
    font-weight:700;
}

.sbs-status-badge{
    display:inline-block;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.sbs-status-badge.confirmed{
    background:#dcfce7;
    color:#15803d;
}

.sbs-status-badge.payment{
    background:#dbeafe;
    color:#1d4ed8;
}


.sbs-label{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#111827;
}

.sbs-label i{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#f3f4f6;
    color:#4f46e5;
    font-size:14px;
}



/* =========================================

BUTTON AREA

========================================= */



.sbs-thank-actions {

    margin-top: 10px;

}



/* =========================================

BUTTON

========================================= */



.sbs-btn {

    display: inline-block;

    padding: 14px 32px;

    background: #f0c2a7;

    color: #000;

    text-decoration: none;

    border-radius: 10px;

    font-size: 16px;

    font-weight: 500;

    transition: all 0.3s ease;

    border: 1px solid #e4b69b;

    font-family: 'Lato';

}



.sbs-btn:hover {

    background: #f0c2a7;

    color: #000;

    transform: translateY(-2px);

    text-decoration: none;

}



.sbs-disabled-slot {
    opacity: 0.5;
    cursor: not-allowed;
}

.sbs-disabled-slot input {
    pointer-events: none;
}

.sbs-slot-message {
    display: block;
    color: #c00;
    font-size: 12px;
}



/* =========================================

RESPONSIVE

========================================= */



@media (max-width: 768px) {



    .sbs-thank-you-wrapper {

        padding: 50px 15px;

    }



    .sbs-thank-you-card {

        padding: 35px 25px;

    }



    .sbs-thank-you-card h2 {

        font-size: 28px;

    }



    .sbs-thank-message {

        font-size: 15px;

    }



    .sbs-booking-summary p {

        font-size: 15px;

    }



    .sbs-btn {

        width: 100%;

        text-align: center;

    }

}



/* =========================================

ERROR AND SUCCESS MESSAGES

========================================= */
.sbs-notice {
    display: none;
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
}

.sbs-notice.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.sbs-notice.success {
    display: block;
    background: #f0fdf4;
    color: #166534;
    border-left: 4px solid #16a34a;
}

.sbs-notice.info {
    display: block;
    background: #eff6ff;
    color: #1d4ed8;
    border-left: 4px solid #2563eb;
}




