/* Sidebar Styles */
.mainbox {
    border-radius: 10px;
    padding: 12px 25px;
    /* background-color: #f5f6f9; */
    background-image: url('/website/assets/images/page-header-bg.jpg')
        /* box-shadow: 0 2px 3px rgba(34, 34, 34, 0.3); */
}

.mainbox h3 {
    color: #fff;
    text-align: center;
    font-size: 20px;
}

.ratecard {
    color: #242323;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    /* Adding transitions for color and transform */
}

.ratecard:hover {
    color: #007bff;
    /* Change to desired hover color */
    transform: scale(1.1);
    /* Slightly increase the size on hover */
}

.fixed-sidebar {
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 20px;
}

/* Service Container Styles */
.service {
    width: 100%;
    padding: 12px;
    /* background-color: #fff; */
    border-radius: 10px;
    box-shadow: none;
}


/* Service Link Styles */
.service-link {
    display: block;
    padding: 15px;
    background-color: #f9f9f9;
    margin: 10px 0;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.service-link:hover {
    background-color: #7c7c7c;
    color: #fff;
    border-color: #7c7c7c;
    transform: scale(1.05);
}

.service-link.active {
    background-color: #7c7c7c;
    color: #fff;
    border-color: #7c7c7c;
}

/* Widget Title Styles */
.widget-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
}

.padding-top {
    padding-top: 50px;
}

.adding-bottom {
    padding-bottom: 50px;
}

.bg {
    background: url(../images/bg-salon1.png) 0% 100% no-repeat, url(../images/bg-salon2.png) 100% 0% no-repeat;
    background-color: #d9e9ee;
    background-size: 173px auto;
    padding-bottom: 20px;
}



.b-leftis {
    border-left: 1px solid #cccccc;
}



.section-title h3 {
    font-size: 28px;
    font-weight: 700;
}

.section-title p.sub-title {
    font-size: 18px;
    color: #666;
}

.b-left {
    border-left: 1px solid #ddd;
    padding-left: 30px;
}


/* How it works blocks */
.how-works-block {
    display: inline-block;
    width: auto;
}

img.harrow {
    position: absolute;
    top: 23px;
    right: -36px;
}

.how-works-block .img {
    display: inline-block;

    border-radius: 8px;

    filter: drop-shadow(0px 10px 15px rgba(0, 60, 40, 0.08));

    background-color: #ffffff;

    padding: 19px;


}



.how-works-block h5 {

    color: #101010;

    font-size: 17px;

    font-weight: 500;

    display: inline-block;

    vertical-align: bottom;

    padding-left: 13px;

    line-height: 1.5;

    width: 142px;

}



.how-works-block h5 span {
    color: #000000;
    font-weight: 600;
    font-size: 18px;
}




/* Responsive Styles */
@media (max-width: 767px) {
    .section-title {
        text-align: center;
    }

    .section-title h3 {
        font-size: 23px !important;
    }

    .section-title p.sub-title {
        font-size: 12px;
        color: #666;
        line-height: 1.2;
    }

    .b-left {
        border-left: none;
        padding-left: 0;
    }

    .how-works-block {
        margin-bottom: 20px;
    }

    .how-works-block img.harrow {
        display: none;
    }
}


.title-border {

    background-color: #d9232d;

    height: 1px;

    width: 184px;

    margin-bottom: 30px;

}

.costom-card {
    max-width: 300px;
    text-align: center;

}

.costom-card img {
    border-radius: 12px;
}

.appText {
    color: #101010;
    font-weight: 600;
    font-size: 17px;
}

.choose {
    max-width: 150px;
    height: 150px;
    margin: 12px 15px;
}




.services {
    padding: 2rem 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;

}

.section-title h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000;

}

.section-title p {
    color: #000000;
    font-size: 18px;
    margin-bottom: 40px;

}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


/* service css start */



.card {
    border-radius: 3px;
    border: 0;
    /* box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.176); */
    cursor: pointer;
    transition: transform 0.4s;
    overflow: hidden;
    padding: 10px;

    /* Reduce padding */
}

.card_image img {
    width: 100%;
    height: 150px;
    /* Reduce image height */
    object-fit: cover;
    transition: transform 0.4s;
}

.card:hover .card_image img {
    transform: scale(1.05);
}

.card_title p {
    text-align: center;
    border-radius: 0 0 3px 3px;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 14px;
    /* Reduce font size */
    padding: 8px;
    /* Reduce padding */
    margin: 0;
    /* background-color: #f8f9fa; */
}

.title-black p {
    color: black;
}

/* For tablets and smaller screens */
@media (max-width: 768px) {

    .card_title p {
        font-size: 12px;
        /* Further reduce font size for smaller screens */
    }

    .card_image img {
        height: 120px;
        /* Further reduce image height for smaller screens */
    }
}

/* For mobile screens */
@media (max-width: 480px) {
    .card_title p {
        font-size: 14px;
        /* Further reduce font size for mobile screens */
    }

    .card_image img {
        height: 100px;
        /* Further reduce image height for mobile screens */
    }
}

/* service css end */



/* choose-us CSS start */

.unique-choose-us-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.5);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: #000000;
}

.unique-section-title h3 {
    font-size: 36px;
    /* font-weight: bold; */
    margin-bottom: 20px;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.unique-section-title .sub-title {
    font-size: 18px;
    color: #000000;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
}

.unique-choose-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 5px;
    /* Smaller margin to fit 3 items per row */
    transition: transform 0.3s ease;
}

.unique-choose-us:hover {
    transform: translateY(-5px);
}

.unique-choose-us .text-title {
    font-size: 17px;
    line-height: 1;
    /* font-weight: bold; */
    color: #000000;
    /* text-transform: uppercase; */
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    text-align: center;
    border-radius: 0 0 3px 3px;
    font-family: sans-serif;
    /* background-color: #f8f9fa; */
}

.unique-choose-us .main-icon img {
    width: 70px;
    height: 70px;
    filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.8));
}

@media (min-width: 768px) {
    .unique-choose-us {
        flex: 0 0 23%;
        /* 4 items per row on desktop with spacing */
        max-width: 23%;
    }
}

@media (max-width: 767px) {
    .unique-choose-us-section {
        padding: 30px 0;
    }

    .unique-choose-us .text-title {
        font-size: 12px;
    }

    .unique-choose-us {
        flex: 0 0 30%;
        /* 3 items per row on mobile with spacing */
        max-width: 30%;
    }

    .unique-section-title h3 {
        font-size: 28px;
    }

    .unique-section-title .sub-title {
        font-size: 16px;
        line-height: 1;
    }

    .unique-choose-us .main-icon img {
        width: 60px;
        height: 60px;
    }
}

/* choose-us CSS end */
/* Swiper CSS Start */

.swiper {
    width: 97%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    /* Ensure the swiper content is properly contained */
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-right: 0px;
    box-shadow: 0 4px 8px rgba(255, 182, 182, 0.2), 0 0 15px rgba(255, 182, 182, 0.5);
    /* Add subtle shadow */
    height: auto !important;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    /* box-shadow: 0 8px 16px rgba(255, 182, 182, 0.4), 0 0 30px rgba(255, 182, 182, 0.7); */
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.swiper-slide img:hover {
    transform: scale(1.05);
    /* box-shadow: 0 8px 16px rgba(255, 182, 182, 0.4), 0 0 30px rgba(255, 182, 182, 0.7); */
    /* Increase scale and glow on hover */
}

@media (max-width: 768px) {
    .swiper {
        height: auto;
    }

    .swiper-slide img {
        height: auto;
        max-height: 300px;
    }
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.swiper-pagination-progressbar {
    background-color: #e0e0e0;
}

.swiper-pagination-progressbar-fill {
    background-color: #000000;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000000 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #6b6a69;
}

.autoplay-progress svg {
    stroke: #000000;
}

.autoplay-progress span {
    color: #000000;
}

/* Remove unwanted dividers between slides */
.swiper-wrapper {
    display: flex;
    gap: 0px;
    /* Ensures there is no gap between slides */
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #000000;
}

/* Swiper CSS End */

/* Rating CSS Start */
.rating {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
}

.star {
    color: #008080;
    /* Adjust this color to match the star color */
    font-size: 20px;
    margin-right: 4px;
}

.rating-value {
    color: #008080;
    font-weight: bold;
    margin-right: 4px;
}

.separator {
    margin-right: 4px;
}

.rating-max {
    margin-right: 8px;
}

.rating-text {
    color: #666;
}

/* Rating CSS End */

/* Service Enquiry Form CSS Start */
.main-container {
    display: flex;
    justify-content: space-between;
    margin: 80px;
    flex-wrap: wrap;
    /* Allow wrapping for responsive design */
}

.content {
    width: 60%;
    padding-right: 20px;
    order: 2;
    /* Default order for content */
}

.form-container {
    width: 35%;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    order: 2;
    /* Default order for form */
}

.form-wrapper {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    text-align: center;
    color: #000;
    /* Set text color to black */
}

.feature-item {
    width: 23%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.feature-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.request-form {
    display: flex;
    flex-direction: column;
}

.request-form input,
.request-form select,
.request-form textarea {
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #000;
    /* Set border color to black */
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    /* Keep input background white */
    color: #000;
    /* Set text color to black */
}

.request-form textarea {
    resize: vertical;
    height: 60px;


}

.call-back-button {
    background-color: #000;
    /* Set button background to black */
    color: #fff;
    /* Set button text color to white */
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    margin: 20px 0;
}

.call-back-button:hover {
    background-color: #333;
    /* Darken button on hover */
}

.rating-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
    color: #000;
    /* Set text color to black */
}

.rating-item {
    width: 48%;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-item img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    vertical-align: middle;
}

.rating-value {
    color: #000;
    /* Set rating value color to black */
    font-weight: bold;
    font-size: 24px;
    vertical-align: middle;
}

.rating-value-wrapper {
    display: flex;
    align-items: center;
}

.rating-info p {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
    /* Lighter text color for subtext */
}

.divider {
    width: 1px;
    height: 50px;
    background-color: #ccc;
    margin: 0 20px;
}

.additional-info {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 20px;
    color: #000;
    /* Set text color to black */
}

.info-item {
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-item img {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 12px;
    margin: 0;
    color: #000;
    /* Set text color to black */
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        margin: 10px;
    }

    .content,
    .form-container {
        width: 100%;
        padding: 0;
    }

    .form-container {

        /* Ensure form comes first on mobile */
        position: static;
        /* Disable sticky positioning on mobile */
        margin-bottom: 20px;
    }

    .content {
        order: 2;
        /* Ensure content comes after form on mobile */
    }

    .form-wrapper {
        padding: 15px;
    }
}

/* Service Enquiry Form CSS End */

/* Visibility Control for Desktop and Mobile */

/* Hide .md-none on mobile, show on desktop */
.md-none {
    display: none;
}

@media(min-width: 768px) {
    .md-none {
        display: block;
    }
}

/* Show .sm-block on mobile, hide on desktop */
.sm-block {
    display: block;
}

@media(min-width: 768px) {
    .sm-block {
        display: none;
    }
}

/* Choose Services Container Start */
.choose-services-container {
    width: 100%;
    max-width: 1200px;
    /* Ensure it stays within the main container */
    margin: 20px auto;
    padding: 20px;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Prevent content overflow */
}

.choose-services-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 150px !important;
    /* Set a fixed height to ensure consistent size */
    margin-bottom: 20px;
    /* Add margin below each card */
}

.service-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 15px;
    /* background-color: #fff; */
    padding: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    display: block;
}

.service-item p {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.swiper-button-next,
.swiper-button-prev {
    color: #333;
    transition: color 0.3s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #000;
}

@media (max-width: 768px) {
    .choose-services-title {
        font-size: 1.6rem;
        /* Adjusted for smaller screens */
    }

    .service-item {
        height: 180px;
        /* Smaller height for mobile screens */
    }

    .service-item img {
        width: 90px;
        /* Adjusted image size for mobile screens */
        height: 90px;
    }

    .service-item p {
        font-size: 10px;
        /* Smaller text for mobile screens */
    }
}

/* Choose Services Container End */
/* Service section Start */
.service-list {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100px;
    /* Increased width */
    height: auto;
    /* Auto height for correct aspect ratio */
    object-fit: cover;
    border-radius: 5px;
    margin-right: 20px;
    filter: grayscale(100%);
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    margin: 0;
    font-size: 18px;
    color: #000;
    text-align: left;
}

.service-description {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
    text-align: left;
}

.service-price {
    color: #000;
    font-size: 16px;
    margin: 0;
    text-align: left;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
    margin-left: 10px;
}

.add-to-cart-btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: auto;
    /* Change width to auto */
    align-self: flex-center;
    /* Align button to the start */
}



.add-to-cart-btn:hover {
    background-color: #444;
}

/* Maintain the layout on mobile screens */
@media (max-width: 768px) {
    .service-item {
        flex-direction: row;
        /* Maintain row direction */
        align-items: center;
        justify-content: space-between;
    }

    .service-image {
        width: 80px;
        /* Slightly reduce image width on smaller screens */
        height: auto;
        margin-right: 20px;
    }

    .add-to-cart-btn {
        width: auto;
        /* Keep button width auto */
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-item {
        flex-direction: row;
        /* Maintain row direction */
        align-items: center;
        justify-content: space-between;
    }

    .service-details h3 {
        font-size: 16px;
    }

    .service-description {
        font-size: 12px;
    }

    .service-price {
        font-size: 18px !important;
    }

    .add-to-cart-btn {
        padding: 10px;
        font-size: 12px;
    }
}

/* Service section End */
/* Sticky Footer Buttons Start */
.sticky-footer-buttons {
    display: flex;
    justify-content: space-between;
    /* Spaced evenly across the footer */
    align-items: center;
    position: fixed;
    bottom: 15px;
    /* 15px from the bottom for a floating effect */
    left: 10px;
    right: 10px;
    padding: 10px 15px;
    /* Padding to space out the buttons within the container */
    background-color: #fff;
    /* White background for the button container */
    border-radius: 10px;
    /* Rounded edges for the container */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Stronger shadow for a floating effect */
    z-index: 1000;
    /* Make sure it stays on top */
}

.sticky-button {
    background-color: #fff;
    /* White background for each button */
    border-radius: 50%;
    /* Round buttons */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Light shadow for buttons */
    padding: 12px;
    /* Padding inside the buttons */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    /* Set a fixed width */
    height: 60px;
    /* Set a fixed height */
    text-decoration: none;
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
}

.sticky-button-icon {
    width: 28px;
    /* Slightly larger icons */
    height: 28px;
}

.sticky-button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    /* Deeper shadow on hover */
    transform: translateY(-4px);
    /* More pronounced lift effect on hover */
    background-color: #f0f0f0;
    /* Light grey background on hover */
}

.sticky-footer-buttons:hover {
    background-color: #f9f9f9;
    /* Slightly lighter background on hover */
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .sticky-footer-buttons {
        display: none;
        /* Hide on larger screens */
    }
}

/* Sticky Footer Buttons End */

/* Loader Wrapper */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* Background color of the loader */
    z-index: 10000;
    /* High z-index to cover all content */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Loader Wrapper */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* Background color of the loader */
    z-index: 10000;
    /* High z-index to cover all content */
    display: flex;
    justify-content: center;
    align-items: center;
}








/* Table Styling */
.table-cart thead th {
    font-weight: bold;
    background-color: #f8f9fa;
    text-transform: uppercase;
    padding: 12px 8px;
}

.table-cart tbody td {
    vertical-align: middle;
    padding: 15px 8px;
    font-size: 16px;
    color: #333;
}

.product-col img {
    width: 80px;
    /* Ensure consistent image size */
    border-radius: 5px;
}

/* Quantity Input */
.quantity-col input {
    width: 60px;
    text-align: center;
    padding: 5px;
}

/* Cart Summary Styling */
.summary-cart {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.summary-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.table-summary {
    width: 100%;
    font-size: 16px;
}

.table-summary tbody tr td {
    padding: 10px 0;
    font-weight: 500;
}

.total-col {
    color: #007bff;
    font-weight: 600;
    font-size: 18px;
}

/* Checkout Button */
.main-btn {
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.main-btn:hover {
    background-color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* General Form Styling */
.filde {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 16px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Apply Coupon Button */
.call-back-button {
    width: 100%;
    padding: 5px;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    border: none;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.call-back-button:hover {
    background-color: #0056b3;
}

/* Payment Methods */
.payment-method {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.payment-method.active {
    border-color: 2px solid #49ce71;
    background-color: #f0f8ff;
}

.payment-method input[type="radio"] {
    margin-right: 10px;
}

/* Summary Section */
.summary {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.summary-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.table-summary th,
.table-summary td {
    padding: 10px 0;
}

/* Place Order Button */
.btn-order {
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-order:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .checkout .row {
        flex-direction: column;
    }

    .summary {
        margin-top: 20px;
    }

    .btn-order {
        width: 100%;
    }


}

/* Custom CSS for Coupon Form */
.coupon-form-custom {

    display: flex;
    align-items: center;
    margin-bottom: 20px;

}

.coupon-form-custom .filde {
    flex-grow: 1;
    padding: 10px;
    margin-right: 15px;
    margin-top: 10px;
    /* Add spacing between input and button */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 100px;

}

.apply-coupon-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;

    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.apply-coupon-button:hover {
    background-color: #0056b3;
}



.login-with-google-btn {
    transition: background-color .3s, box-shadow .3s;

    padding: 12px 16px 12px 42px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);

    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 11px;

    &:hover {
        box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25);
    }

    &:active {
        background-color: #eeeeee;
    }

    &:focus {
        outline: none;
        box-shadow:
            0 -1px 0 rgba(0, 0, 0, .04),
            0 2px 4px rgba(0, 0, 0, .25),
            0 0 0 3px #c8dafc;
    }

    &:disabled {
        filter: grayscale(100%);
        background-color: #ebebeb;
        box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
        cursor: not-allowed;
    }
}

.rating-stars {
    font-size: 1.5rem;
    /* Make stars more visible */
}

.rating-progress {
    height: 8px;
    /* Adjust progress bar height */
}

.card {
    border: none;
    /* Clean card design */
}

.card-body {
    padding: 1.25rem 0.75rem;
}

.user-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .progress-bar {
        height: 6px;
        /* Smaller height on mobile */
    }

    .customer-reviews {
        flex-direction: column;
    }

    .rating-section,
    .review-section {
        width: 100%;
    }
}
