@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size:14px;
}

body {
    overflow-x:hidden;
}

header {
    max-width: 1250px;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.txt-opacity {
    opacity: 0.7;
}

header ul li {
    list-style-type: none;
    margin-right: 20px;
}

    header ul li:last-child {
        margin-right: 0px;
    }

header nav ul .dropdown-menu a {
    opacity: 0.7;
}

    header nav ul .dropdown-menu a:hover {
        opacity: 1;
    }

header .nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}


    header .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        background-color: #000;
        transition: width 0.3s ease;
    }


    header .nav-link:hover::after {
        width: 100%;
    }

    header .nav-link.dropdown-toggle::after {
        content: none;
    }

.nav-item.active .nav-link::after {
    width: 100%;
}

.carousel img {
    height: 74vh;
    background-position: center;
}

@keyframes bottomToTop {
    from {
        opacity: 0;
        transform: translateY(200px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-caption.animate-bottom {
    animation: bottomToTop 1s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.carousel-item {
    position: relative;
}


.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* dark overlay with 40% opacity */
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    z-index: 2; /* On top of the overlay */
    bottom: 20%;
    color: #fff;
    width:100%;
    left:0%;
}
/* sideNav Section */

.sideNavSection {
    position: fixed;
    top: 0;
    left: -300px; /* sidebar hidden offscreen */
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    transition: left 0.3s ease;
    z-index: 9;
    overflow-y: auto;
}

    .sideNavSection.active {
        left: 0;
    }

    .sideNavSection .nav-item {
        border-bottom: 2px solid rgb(238, 236, 236);
        padding-top: 5px;
        padding-bottom: 5px;
    }

        .sideNavSection .nav-item .nav-link {
            color: #000;
            font-size: 14px;
            font-weight: 500;
        }

    .sideNavSection .dropdown-toggle::after {
        float: right;
        margin-left: 0.5rem;
    }

    .sideNavSection .dropdown-menu li {
        border-bottom: 2px solid rgb(238, 236, 236);
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .sideNavSection .inline-dropdown .dropdown-menu {
        display: none;
        position: static !important;
        padding-left: 1rem;
        margin-top: 0;
        border: none;
        background-color: #f8f9fa;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: 0.4s ease, opacity 0.3s ease;
    }

    .sideNavSection .inline-dropdown.show .dropdown-menu {
        display: block;
        max-height: 500px;
        opacity: 1;
        background-color: white;
    }

    .sideNavSection .inline-dropdown {
        border-bottom: 1px solid #ccc;
    }

    .sideNavSection .dropdown-item {
        padding: 0.5rem 1rem;
    }

.nav-link {
    cursor: pointer;
}

.sideNavSection .nav-link:focus,
.sideNavSection .nav-link:active,
.sideNavSection .dropdown-item:focus,
.sideNavSection .dropdown-item:active {
    color: inherit; /* keep the same color on focus or active */
    background-color: transparent; /* avoid background flash */
    outline: none; /* remove focus outline */
    box-shadow: none; /* remove any focus shadow */
}

.sideNavSection .headerNav .nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}


    .sideNavSection .headerNav .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        background-color: #000;
        transition: width 0.3s ease;
    }


    .sideNavSection .headerNav .nav-link:hover::after {
        width: 100%;
    }


/* gallery section */

.offerPercentage {
    margin-left: 5px;
    background-color: black;
    color: white;
    width: fit-content;
    z-index: 2;
    padding: 3px 10px;
    border-radius: 15px;
}

.offerNew {
    top: 45px;
    margin-left: 5px;
    background-color: green;
    color: white;
    width: fit-content;
    padding: 2px 10px;
    z-index: 2;
    border-radius: 15px;
    margin-top: 10px;
}

.stars {
    color: orange;
}

.gallerySection .favouriteIcons {
    width: fit-content;
    row-gap: 20px;
    padding: 10px;
    position: absolute;
    top: 25px;
    opacity: 0;
    right: 25px;
}
/* .galleryItem {
  overflow: hidden; 
  position: relative;
}

.galleryItem .main-img {
  transition: transform 0.6s ease;
}

.galleryItem .main-img:hover {
  transform: scale(1.2);
} */
.galleryItem:hover .favouriteIcons {
    animation: righttoleft 0.5s ease-out;
    opacity: 1;
}

@keyframes righttoleft {
    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.galleryItem .selectionOption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    row-gap: 10px;
    transition: all 1s ease;
    overflow: hidden;
    cursor: pointer;
}

    .galleryItem .selectionOption .secondDiv {
        transition: transform 0.2s ease;
    }

    .galleryItem .selectionOption .firstDiv {
        transition: transform 0.2s ease;
    }

    .galleryItem .selectionOption:hover .secondDiv,
    .galleryItem .selectionOption:hover .firstDiv {
        transform: translateY(-32px);
    }

.selectionOptionDetails {
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    top: 0;
    z-index: 3;
    position: absolute;
}

    .selectionOptionDetails .imgTooltip .tooltip {
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s;
        position: absolute;
        bottom: 110%;
        left: 50%;
        transform: translateX(-50%);
        background: #222;
        color: #fff;
        padding: 6px 12px;
        border-radius: 6px;
        white-space: nowrap;
        font-size: 13px;
        z-index: 100;
        pointer-events: none;
    }

    .selectionOptionDetails .imgTooltip img {
        width: 50px;
        height: 50px;
    }

    .selectionOptionDetails .imgTooltip:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }

.galleryItem:hover .selectionOption {
    opacity: 1;
    transform: translateY(0);
}
/* luxury furniture section */

.luxuryFurnitureSection .favouriteIcons {
    width: fit-content;
    row-gap: 20px;
    padding: 10px;
    position: absolute;
    top: 25px;
    opacity: 0;
    right: 25px;
}

.luxuryFurnitureSection .galleryItem:hover .favouriteIcons {
    animation: righttoleft2 0.5s ease-out;
    opacity: 1;
}

@keyframes righttoleft2 {
    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.luxuryFurnitureSection .selectionOption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 1s ease;
}

.luxuryFurnitureSection .galleryItem:hover .selectionOption {
    opacity: 1;
    transform: translateY(0);
}

.luxuryFurnitureSection .nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}


    .luxuryFurnitureSection .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        background-color: #000;
        transition: width 0.3s ease;
    }


    .luxuryFurnitureSection .nav-link:hover::after {
        width: 100%;
    }

    .luxuryFurnitureSection .nav-link.dropdown-toggle::after {
        content: none;
    }

.nav-item.active .nav-link::after {
    width: 100%;
}
/* Article Section */
.articleSection .card .content {
    box-shadow: 1px 1px 5px lightgray;
}

.articleSection .card .cardIcons {
    font-size: 20px;
    opacity: 0.7;
}

.articleSection .msdBlogDiv {
    position: absolute;
    background-color: black;
    color: white;
    padding: 2px 6px;
    font-size: 14px;
    font-weight: 600;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.articleSection .dateDiv {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: white;
    font-size: 25px;
    text-align: center;
    line-height: 20px;
    padding: 6px 10px;
}

    .articleSection .dateDiv span {
        font-size: 15px;
        font-weight: 600;
        opacity: 0.9;
    }

.image-overlay-container {
    overflow: hidden;
}

    .image-overlay-container img {
        display: block;
        width: 100%;
        height: auto;
    }

.overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.blogsRow:hover .overlay2 {
    opacity: 1;
}

.dots {
    opacity: 0;
}

.blogsRow.animate-in .dots {
    animation: slide-left-to-right 0.6s ease-out forwards;
}

.blogsRow.animate-out .dots {
    animation: slide-out-right 0.5s ease-out forwards;
}

@keyframes slide-left-to-right {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-out-right {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 1;
    }
}

.card-custom-shadow {
    box-shadow: 2px 4px 12px rgba(128, 128, 128, 0.3);
}

/*  */
.custom-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.custom-carousel-container {
    overflow: hidden;
    flex-grow: 1;
}

.custom-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.custom-carousel-item {
    flex: 0 0 20%; /* 5 items per view */
    box-sizing: border-box;
    height: 270px;
    padding: 10px;
}

    .custom-carousel-item img {
        width: 100%;
        height: auto;
    }

.custom-carousel-button {
    background: none;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 2rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none; /* Prevent button from being clickable when hidden */
}

    .custom-carousel-button.prev {
        transform: translateX(-20px);
    }

    .custom-carousel-button.next {
        transform: translateX(20px);
    }


.custom-carousel-wrapper:hover .custom-carousel-button.prev,
.custom-carousel-wrapper:hover .custom-carousel-button.next {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto; /* Enable interaction on hover */
}

.custom-carousel-item {
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.overlay3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -50px;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.image-wrapper:hover .overlay3 {
    animation: instagramLikes 0.6s ease-out forwards;
    opacity: 1;
}

@keyframes instagramLikes {
    from {
        padding-bottom: 0px;
        bottom: -10px;
    }

    to {
        bottom: 0px;
        padding-bottom: 10px;
    }
}
/*  */
.bottomNavSection ul li {
    list-style-type: none;
    margin-right: 20px;
}

    .bottomNavSection ul li:last-child {
        margin-right: 0px;
    }

.bottomNavSection nav ul .dropdown-menu a {
    opacity: 0.7;
}

    .bottomNavSection nav ul .dropdown-menu a:hover {
        opacity: 1;
    }

.bottomNavSection .nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}



.bottomNavSection header .nav-link.dropdown-toggle::after {
    content: none;
}

.bottomNavSection .navbar-icons {
    width: 200px;
}

/* SOFA PAGE CSS START */
.HeroSofaImgSection .sofaHeroImgDiv {
    height: 30vh;
}

.HeroSofaImgSection .sofaOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.HeroSofaImgSection .heading {
    color: white;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%);
}

.grid-col {
    flex: 0 0 auto;
    padding: 10px;
}

.col-1-3 {
    width: 33.33%;
    display: inline-block;
}

.col-1-4 {
    width: 25%;
    display: inline-block;
}

.col-1-5 {
    width: 20%;
    display: inline-block;
}

.col-1-6 {
    width: 16.66%;
    display: inline-block;
}

#gridRow {
    display: flex;
    flex-wrap: wrap;
}

#filterPanel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.9s ease, opacity 0.4s ease;
}

    #filterPanel.open {
        max-height: 500px; /* adjust based on expected content */
        opacity: 1;
    }


.filterRow .cursor-pointer {
    cursor: pointer;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

    .pagination-controls button {
        padding: 6px 12px;
        font-size: 16px;
        cursor: pointer;
        border: none; /* No border */
        background-color: #ddd;
        border-radius: 4px;
        transition: background-color 0.3s;
    }

        .pagination-controls button:hover:not(:disabled) {
            background-color: #bbb;
        }

        .pagination-controls button:disabled {
            opacity: 0.5;
            cursor: default;
            background-color: #eee;
        }

.page-count {
    color: white;
    font-weight: 600;
    user-select: none;
    min-width: 150px;
    text-align: center;
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    font-family: monospace;
}

/* Each digit box styling */
.digit-box {
    background-color: #222;
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
    min-width: 24px;
    text-align: center;
}

    /* You can assign different colors to digits by nth-child if you want */
    .digit-box:nth-child(odd) {
        background-color: #444;
    }

    .digit-box:nth-child(even) {
        background-color: #666;
    }

.page-numbers {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

    .page-numbers button {
        background-color: #333;
        color: white;
        border: none;
        padding: 6px 10px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
    }

        .page-numbers button.active {
            background-color: #ff6600;
        }

        .page-numbers button:hover:not(.active) {
            background-color: #555;
        }

/* CONTTACT US SECTION START */
.contactusSection {
    max-width: 1250px;
    margin: auto;
    font-size: 0.9rem;
}

.accordion-item {
    border: none !important;
    border-bottom: 1px solid lightgray !important; /* Keep only bottom border */
}

.accordion-button {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding-top: 20px;
    padding-bottom: 20px;
    outline: none !important;
}

    /* On hover/focus/active - still no borders or shadows */
    .accordion-button:focus,
    .accordion-button:hover,
    .accordion-button:not(.collapsed) {
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

.accordion-item:last-child {
    border-radius: 0 !important;
}

.accordion-body {
    padding: 2px 0px;
    text-align: justify;
}
/* Base styles for inputs and textarea */
.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    padding-left: 0; /* Optional: for minimalist look */
    padding-right: 0;
    transition: border-color 0.3s ease;
}

    /* Remove default browser blue border and shadows on focus */
    .form-control:focus {
        border: none;
        border-bottom: 1px solid lightgray; /* Or any color you like for focus */
        box-shadow: none;
        outline: none;
        background-color: transparent;
    }
/* ABOUT US SECTION STARTS FROM HERE */
.aboutusSection {
    max-width: 1250px;
    margin: auto;
}

.aboutHeaderPadding1 {
    padding-right: 100px;
}

.aboutHeaderPadding2 {
    padding-right: 50px;
}

.leftMostHeading {
    font-size: 34px;
}

.ourTeam {
    max-width: 1250px;
    margin: auto;
}

.aboutinfodiv {
    border-right: 2px solid lightgrey;
}

.aboutinfodiv2 {
    border-right: 2px solid lightgrey;
}

/* PRODUCT DETAILSECTION STARTS HERE */
.productdetailSection {
    max-width: 1250px;
    margin: auto;
}

    .productdetailSection .carousel-container {
        display: flex;
        gap: 20px;
    }

    .productdetailSection .thumbnail-panel {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .productdetailSection .thumbnail-list {
        display: flex;
        flex-direction: column;
        max-height: 240px;
        overflow: hidden;
    }

    .productdetailSection .thumb {
        width: 100px;
        height: 60px;
        margin: 5px 0;
        object-fit: cover;
        cursor: pointer;
        border: 2px solid transparent;
    }

        .productdetailSection .thumb.active {
            border-color: #007BFF;
        }

    .productdetailSection .scroll-btn {
        background: #eee;
        border: none;
        cursor: pointer;
        padding: 0px 12px;
        font-size: 18px;
        margin: 4px 0;
    }

    .productdetailSection .main-image img {
        width: 500px;
        height: auto;
        object-fit: cover;
    }

    .productdetailSection .thumbnail-list {
        display: flex;
        flex-direction: column;
        max-height: 240px;
        overflow-y: auto; /* enable vertical scrolling */
        /* Hide scrollbar for WebKit browsers */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

        .productdetailSection .thumbnail-list::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

    .productdetailSection .main-image {
        position: relative;
        width: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .productdetailSection .main-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }

    .productdetailSection .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0,0,0,0.4);
        color: white;
        border: none;
        padding: 10px 15px;
        font-size: 24px;
        cursor: pointer;
        user-select: none;
        z-index: 6;
        border-radius: 3px;
    }

        .productdetailSection .slider-btn.prev {
            left: 5px;
        }

        .productdetailSection .slider-btn.next {
            right: 5px;
        }

        .productdetailSection .slider-btn:hover {
            background-color: rgba(0,0,0,0.7);
        }

.productDetails .imgTooltip {
    width: 70px;
    height: 70px;
}

.zoom-wrapper {
    width: 100%; /* or set a fixed width if needed */
    height: 300px; /* match the image's inline height */
    overflow: hidden;
    position: relative;
}

    .zoom-wrapper img.zoom-hover {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.2s ease;
        position: relative;
    }

.productDetails .imgTooltip {
    position: relative;
    cursor: pointer;
}

    .productDetails .imgTooltip .tooltip {
        visibility: hidden;
        opacity: 0;
        background-color: #333;
        color: #fff;
        text-align: center;
        border-radius: 10px;
        padding: 6px 10px;
        position: absolute;
        z-index: 10;
        bottom: 110%; /* Position above image */
        left: 50%;
        transform: translateX(-50%);
        transition: opacity 0.3s ease, visibility 0.3s ease;
        white-space: nowrap;
        font-size: 0.875rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .productDetails .imgTooltip:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }

    .productDetails .imgTooltip .tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

.descriptionSection {
    max-width: 1250px;
    margin: auto;
}

.viewbasketSection {
    max-width: 1250px;
    margin: auto;
}

    .viewbasketSection .product-img {
        width: 100px;
        height: 100px;
    }

    .viewbasketSection .quantity-box {
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .viewbasketSection .quantity-box input {
            width: 50px;
            text-align: center;
        }

    .viewbasketSection .small-screen-line {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid #dee2e6;
    }

    .viewbasketSection .cart-header {
        border-bottom: 2px solid lightgray;
    }

    .viewbasketSection .detail {
        font-size: 14px;
    }

    .viewbasketSection .properties {
        font-weight: 500;
    }

    .viewbasketSection .basketTotals {
        border: 3px solid rgb(231, 230, 230);
        padding: 15px 20px;
    }


@media (max-width: 768px) {
    .viewbasketSection .cart-header {
        display: none;
    }

    .viewbasketSection .col-md-2,
    .viewbasketSection .col-md-6 {
        width: 100%;
    }

    .viewbasketSection .product-img {
        margin-bottom: 1rem;
    }

    .viewbasketSection .quantity-box {
        justify-content: end;
    }
}




/* check out section */

.checkoutformSection {
    max-width: 1250px;
    margin: auto;
}

    .checkoutformSection .form-container {
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        margin-bottom: 30px;
    }

    .checkoutformSection .form-header {
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    .checkoutformSection .form-section {
        margin-bottom: 30px;
    }

    .checkoutformSection .section-title {
        font-weight: 600;
        margin-bottom: 20px;
        color: #333;
    }

    .checkoutformSection .form-label {
        margin-bottom: 5px;
    }

    .checkoutformSection input {
        padding-left: 5px;
    }

    .checkoutformSection .required-field::after {
        content: " *";
        color: red;
    }

    .checkoutformSection .invalid-feedback {
        display: none;
        color: #dc3545;
        font-size: 0.875em;
    }

    .checkoutformSection .was-validated .form-control:invalid ~ .invalid-feedback,
    .checkoutformSection .form-control.is-invalid ~ .invalid-feedback {
        display: block;
    }

    .checkoutformSection .divider {
        border-left: 1px solid #dee2e6;
        height: 100%;
    }

@media (max-width: 767.98px) {
    .checkoutformSection .divider {
        border-left: none;
        border-top: 1px solid #dee2e6;
        margin: 20px 0;
        padding-top: 20px;
    }
}

.searchSection {
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
    height: 80vh;
    bottom: 0;
    background-color: white;
    width: 100%;
    position: absolute;
    opacity: 1;
    visibility: visible;
    z-index: 7;
}

    .searchSection.hidden {
        opacity: 0;
        visibility: hidden;
    }

body.no-scroll {
    overflow: hidden;
}

.cartSection {
    position: fixed;
    top: 0;
    right: 0px;
    z-index: 10;
    height: 100vh;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

    .cartSection.active {
        transform: translateX(0%);
    }

    .cartSection .cart-container {
        max-width: 600px;
        margin: 0 auto;
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        height: 100vh;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
.cart-item-section{
    max-height:70vh;
    overflow-y:scroll;
}
.cartSection .cart-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

    .cartSection .cart-item {
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .cartSection .item-name {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .cartSection .item-description {
        color: #666;
        margin-bottom: 10px;
    }

    .cartSection .quantity-control {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .cartSection .quantity-btn {
        background-color: #f8f9fa;
        border: 1px solid #ddd;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .cartSection .quantity-value {
        margin: 0 10px;
    }

    .cartSection .item-price {
        font-weight: bold;
    }

    .cartSection .subtotal {
        font-weight: bold;
        margin: 20px 0;
        text-align: right;
    }

    .cartSection .btn-view-basket {
        background-color: white;
        color: #333;
        border: 1px solid #333;
        margin-right: 10px;
    }

    .cartSection .btn-checkout {
        background-color: #333;
        color: white;
        border: 1px solid #333;
    }

    .cartSection .cartimg {
        width: 80px;
        height: 80px;
    }

.whatsapp-icon {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s ease;
}

    .whatsapp-icon:hover {
        transform: scale(1.1);
    }
