body{
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    background-color: var(--theme-background-color);
    color: var(--theme-base-color);
}
a,.nav-link{
    color: var(--theme-base-color);
    text-decoration: none;
}
a:hover,.nav-link:focus, .nav-link:hover,.text_primary{
    color: var(--primary-color);
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--heading-font-family);
    font-weight: var(--heading-font-weight);
}
h1,.h1{
    font-size: var(--h1-font-size);
}
h2,.h2{
    font-size: var(--h2-font-size);
}
h3,.h3{
    font-size: var(--h3-font-size);
}
h4,.h4{
    font-size: var(--h4-font-size);
}
h5,.h5{
    font-size: var(--h5-font-size);
}
h6,.h6{
    font-size: var(--h6-font-size);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
}
.container-width{
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-inline: 15px;
}
.full-width{
    max-width: 100%;
}
.form-control:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--primary-color) 25%, transparent);
}
p {
    margin-top: 0;
    margin-bottom: 0;
}
.btn{
    max-width:150px;
}
.section-title{
    margin-bottom: 20px;
}
.section + .section, .footer{
    margin-top: 80px;
}
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.form-check-input:focus, .form-select:focus{
    border-color: var(--primary-color);
    box-shadow: 0 0 0 .25rem
        color-mix(in srgb, var(--primary-color) 25%, transparent);
}
.dropdown-item.active, .dropdown-item:active {
    color: var(--btn-text-color);
    background-color: var(--btn-bkg-color);
}
.cursor-pointer {
    cursor: pointer;
}
.swal2-cancel {
    background-color: var(--primary-color) !important;
}
.text-truncate.text-wrap{
    font-size: 13px;
}
.track-link,.text_decoration,.toggle-link{
    text-decoration: underline;
}
.breadcrumb-item.active{
    color: var(--theme-base-color);
}
@media (max-width: 767px){
    .section + .section, .footer {
        margin-top: 50px;
    }
    .mb-3 {
        margin-bottom: 0.5rem!important;
    }
    .mb-4 {
        margin-bottom: 1rem!important;
    }
    .mt-4 {
        margin-top: 1rem!important;
    }
}

/* button css start*/
.button {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: var(--body-font-size);
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: var(--btn-text-color);
    background-color: var(--btn-bkg-color);
    border-color: var(--btn-bkg-color);
}
.button:hover {
    color: var(--btn-bkg-color);
    background-color: var(--btn-text-color) !important;
    border-color: var(--btn-bkg-color);
}
/* button css end */

/* header css style start */
.header-top{
    padding: 1.5rem 0;
}
.header_logo,.footer_logo{
    max-width: var(--logo-width);
    height: auto;
    display: block;
}
.header .grid{
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}
.theme_logo { grid-area: logo; }
.header_search { grid-area: search; }
.header_right_menu { grid-area: menu; }
.grid.logo-position-left {
    grid-template-areas: "logo search menu";
}
.grid.logo-position-center {
    grid-template-areas: "search logo menu";
    grid-template-columns: 1fr auto 1fr;
}
.header .header_search form {
    width: 100%;
    max-width: 400px;
    margin: 0;
}
.grid.logo-position-left .header_search {
    display: flex;
    justify-content: center;
}
.grid.logo-position-center .theme_logo {
    justify-self: center;
}
.grid.logo-position-center .header_right_menu {
    justify-self: end;
}
#favorite_count,.header .cart-count{
    background-color: var(--primary-color);
}
li.dropdown{
    list-style: none;
}
.header_right_menu {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.header .avatar {
    width: 40px;
    height: 40px;
}
.header_search button.btn {
    position: absolute;
    left: auto;
    right: 0;
    height: 37px;
}
.header_navbar .navbar-nav{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.header_navbar .nav-item a{
    color: var(--theme-base-color);
    position: relative;
}
.header_navbar .nav-item a:hover,.header_navbar .nav-item a.active{
    color: var(--primary-color);
}
.header_navbar .nav-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.header_navbar .nav-item a:hover,
.header_navbar .nav-item a.active {
    color: var(--primary-color);
}
.header_navbar .nav-item a:hover::after,
.header_navbar .nav-item a.active::after {
    width: 100%;
}
@media (max-width: 767px) {
    .header-top {
        padding: 0.75rem 0;
    }
    .header_right_menu {
        gap: 5px;
    }
    .header .avatar {
        width: 30px;
        height: 30px;
    }
}

/* header css style end */


/* slider arrow css start */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    background-color: var(--theme-background-color);
}
.slick-prev:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f104";
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}
.slick-prev {
    left: -40px;
}
.slick-next {
    right: -40px;
}
.slick-next:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f105";
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}
.slick-prev:before, .slick-next:before {
   color: var(--primary-color);
}
.slider_section .slick-slider .slick-slide{
    margin-left: 0;
    margin-right: 0;
    height: auto;
}
@media (max-width: 1200px) {
    .slick-prev {
        left: 0px;
    }
    .slick-next {
        right: 0px;
    }
}
/* slider arrow css end */


/* dot css start */
.slick-dots li button:before {
    font-size: 10px;
}
.slick-dots li {
    width: 10px;
    height: 10px;
}
.slick-dots li.slick-active button:before {
    color: var(--primary-color);
}
/* dot css end */


/* slider section start*/
.slider-item {
    position: relative;
}
.slider-description {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    bottom: 0;
    justify-content: center;
    max-width: 500px;
    gap: 10px;
}
.slider-description.position-start{
    left: 2rem;
    right: auto;
}
.slider-description.position-end{
    left: auto;
    right: 2rem;
}
.slider-description.position-center {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}
.slider_section .slick-dots{
    position: absolute;
    bottom: 20px;
}
.hero-slider .slider-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media (max-width: 767px) {
    .slider-description .banner_desc{
        display: none;
    }
    .slider-description .btn {
        line-height: 1.2;
        padding: .3rem .5rem;
        font-size: 0.8rem;
    }
    .slider_section .slick-dots {
        bottom: 10px;
    }
}
/* slider section end*/


/* category section start*/
.categories-slider.slick-slider .slick-slide img {
    display: inline;
}
.categories-slider.slick-slider .slick-slide {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    height: auto;
}
/* category section end*/


/* blog section start*/
.blogs-slider.slick-slider .slick-slide img {
    display: inline;
}
.blogs-slider.slick-slider .slick-slide {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    height: auto;
}
.card.card-blog .card-inner{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.blog_card_image{
    position: relative;
}
.blog_card_image .blog_publish_date{
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--theme-background-color);
    color: var(--theme-base-color);
    padding: 5px 8px;
    border-radius: 5px;
}
/* category section end*/


/* product section start */
.products-slider.slick-slider .slick-slide {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    height: auto;
}
.card-product img {
    aspect-ratio: 1;
    object-fit: contain;
    background: var(--theme-background-color);
    width: 100%;
}
.card-product .product_title{
    font-family: var(--body-font-family);;
}
.card-product:hover {
    border: 1px solid var(--primary-color);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
    transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
}
.card-product .card-product-action {
    bottom: 15%;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 9;
}
.card-product:hover .card-product-action {
    opacity: 1;
    visibility: visible;
}
.card-product .btn-action {
    align-items: center;
    background-color: var(--btn-text-color);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px -1px rgba(145, 158, 171, 0.2), 0 4px 5px 0 rgba(145, 158, 171, 0.14), 0 1px 10px 0 rgba(145, 158, 171, 0.12);
    color: var(--theme-base-color);
    display: inline-flex;
    font-size: 14px;
    height: 34px;
    justify-content: center;
    line-height: 34px;
    text-align: center;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    width: 34px;
}
.card-product .btn-action:hover {
    background-color: var(--primary-color);
    color: var(--btn-text-color);
}
.card-product .card-inner{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
span.bg-best-seller {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -1rem;
    right: -1rem;
}
span.bg-best-seller span {
    position: absolute;
    display: block;
    width: 200px;
    padding: 3px 0;
    background: #e60000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    transform: rotate(45deg);
    top: 30px;
    right: -55px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);
}
.bg-left_stock {
    --fc-bg-opacity: 1;
    background-color: #E1AD01 !important;
}
@media (max-width: 989px) {
    .product-grid .col-md-3 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}
@media (max-width: 767px) {
    .product-grid .col-md-3,
    .product-grid .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 419px) {
    .product-grid .col-md-3,
    .product-grid .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 102px) {
    .product-grid .col-md-3,
    .product-grid .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* product section end */


/* footer css start */
.footer{
    border-top: 1px solid rgba(0,0,0,.125);
    padding: 80px 0 15px;
}
.footer .footer-bottom{
    padding-top: 15px;
    margin-top: 60px;
    position: relative;
}
.footer .nav-link {
    padding-inline: 0;
}
@media (max-width: 767px) {
    .footer {
        padding-top: 50px;
    }
    .footer .footer-bottom{
        margin-top: 40px;
    }
    .footer .nav-link {
        padding-block: 0.2rem;
    }
}
/* footer css end */


/* side filter css start */
.noUi-target {
    background-color: var(--theme-base-color);
    border: none;
    border-radius: 0.5rem;
}
.noUi-horizontal {
    height: 8px !important;
}
.noUi-handle {
    background: var(--theme-background-color);
    border: transparent;
    border-radius: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: default;
}
.noUi-handle:focus {
    outline: none;
}
.noUi-horizontal .noUi-handle {
    height: 18px !important;
    right: -13px !important;
    top: -6px !important;
    width: 18px !important;
}
.noUi-handle:after,
.noUi-handle:before {
    display: none;
}
.noUi-connects {
    border-radius: 6px;
}
.noUi-connect {
    background: var(--primary-color) !important;
}
.noUi-tooltip {
    background-color: transparent;
    background-color: var(--primary-color);
    border: none;
    color: var(--fc-white);
    height: 30px;
    line-height: 30px;
    padding: 0;
    width: 30px;
}
@media (min-width: 992px) {
    .offcanvas-collapse {
        bottom: auto !important;
        display: block;
        height: auto !important;
        left: auto !important;
        position: static;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        visibility: visible;
        width: 100% !important;
    }
    .offcanvas-start {
        border-right: 1px solid rgba(0,0,0,.125);
    }
}
.chevron-down {
    display: inline-block;
    transition: 0.5s ease-in-out;
}
[aria-expanded="true"] .chevron-down {
    transform: rotate(180deg);
}
/* side filter css end */


/* pagination css start */
.page-item .page-link{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-base-color);
}
.page-item .page-link:focus, .btn:focus{
    box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--primary-color) 25%, transparent);
}
.page-item.active .page-link{
    color: var(--btn-text-color);
    background-color: var(--btn-bkg-color);
    border-color: var(--btn-bkg-color);
}
/* pagination css end */

/* Shop page css start */
#product-pagination{
    margin-top: 20px;
}
/* Shop page css end */


/* product detail page css start */
.slick-slider .slick-slide {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.slider-nav .slick-slide.slick-current img, .cm-slider-nav .slick-slide.slick-current img {
    border: 2px solid var(--primary-color);
}
.input-group {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}
.input-spinner .button-minus,
.input-spinner .button-plus {
    background-color: transparent;
    border-color: rgba(0,0,0,.125);
    height: 2rem;
    width: 1.8rem;
}
.input-spinner .button-minus:hover,.button-minus.btn:hover,
.input-spinner .button-plus:hover ,.button-plus.btn:hover{
    border-color: rgba(0,0,0,.125);
}
.button-plus.btn:focus, .button-minus.btn:focus {
    box-shadow: 0 0 0 .25rem
        color-mix(in srgb, var(--primary-color) 25%, transparent);
}
.input-spinner .form-input {
    background: 0 0;
    border: 1px solid rgba(0,0,0,.125);
    height: 100%;
    min-height: 2rem;
    text-align: center;
    width: 2rem !important;
    padding: 0;
}
.form-control:disabled, input.button-plus.btn.btn-sm:disabled, input.button-minus.btn.btn-sm:disabled {
    background-color: #ecf0ef;
    opacity: 1;
}
.buy-now-btn,#add-review-button,.button-outline{
    border-color: 2px solid var(--btn-bkg-color);
    color: var(--btn-bkg-color);
    background-color: var(--btn-text-color);
}
.product-tab-section{
    margin-top: 80px;
    margin-bottom: 80px;
}
.nav-lb-tab {
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.nav-lb-tab .nav-item {
    margin-right: 2rem;
}
.nav-lb-tab .nav-item .nav-link {
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: var(--theme-base-color);
    font-weight: 500;
    margin-bottom: -1px;
    padding: 16px 0;
    white-space: nowrap;
}
.nav-lb-tab .nav-item .nav-link.active, .nav-lb-tab .nav-item .nav-link:hover {
    background-color: transparent;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.my-8 {
    margin-bottom: 2rem !important;
    margin-top: 2rem !important;
}
.dz-filename {
    white-space: normal !important; /* Allow text wrapping */
    overflow: visible !important;
    text-overflow: unset !important;
    max-width: 100% !important;
    display: block !important;
    text-align: center;
    word-break: break-word; /* Wrap long filenames */
}
.dz-size {
    display: block;
    font-size: 12px !important;;
    text-align: center;
}
.dz-preview .dz-progress {
    display: none !important;
}
.slider.slick-slider.cm-slider-for {
    overflow: hidden;
}
.slider.cm-slider-for.slick-slider span.bg-best-seller {
    top: 0rem;
    right: 0rem;
}
.thumbnail-image-carousel .slick-prev,.thumbnail-image-carousel  .slick-next{
    width: 30px;
    height: 30px;
    z-index: 9;
    background-color: var(--theme-background-color);
}
.thumbnail-image-carousel .slick-prev:before,.thumbnail-image-carousel  .slick-next:before{
    height: 25px;
    font-size: 18px;
}
.thumbnail-image-carousel .slick-prev {
    left: -10px;
}
.thumbnail-image-carousel .slick-next {
    right: -10px;
}
.view-more-container {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}
.view-more-container.expanded {
    -webkit-line-clamp: unset;
}
/* product detail page css end */

/* login page css start */
.passwordToggler {
    color: var(--theme-base-color);
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
#loginFrm a, #registerFrm a{
    color: var(--primary-color);
}
.form-control.is-invalid+span .passwordToggler, .was-validated .form-control:invalid+span .passwordToggler {
    right: 37px !important;
    top: 20px !important;
}
/* login page css end */


/* wishlist page css start */
.icon-lg {
    height: auto;
    aspect-ratio: auto;
    width: 3rem;
}
.icon-xl {
    width: 3.5rem;
    height: auto;
    aspect-ratio: auto;
}
.icon-xxl {
    height: auto;
    aspect-ratio: auto;
    width: 4rem;
}
.icon-shape {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}
.table>:not(caption)>*>*,.table>:not(:last-child)>:last-child>*{
    border-color: rgba(0,0,0,.125);
}
/* wishlist page css end */


/* according product page css start */
.accordion-button:not(.collapsed),.accordion-button:focus {
    color: var(--primary-color);
    background-color: var(--theme-background-color);
    box-shadow: inset 0 -1px 0 color-mix(in srgb, var(--primary-color) 25%, transparent);
}
/* according product page css end */


/* status budge css start */
.badge {
    padding: .3rem .5rem;
    font-size: .75rem;
    border-radius: 999px;
    background-color: #d4edda;
    border-radius: 5px;
}
.bg-label-placed, .bg-label-0 {
    background-color: #fef9e7;
    color: #b7950b;
}
.bg-label-confirmed, .bg-label-1 {
    background-color: #ebf5fb;
    color: #2874a6;
}
.bg-label-processed , .bg-label-2{
    background-color: #f4ecf7;
    color: #884ea0;
}
.bg-label-shipped ,.bg-label-3{
    background-color: #fef5e7;
    color: #ca6f1e;
}
.bg-label-out-for-delivery, .bg-label-out_for_delivery ,.bg-label-4{
    background-color: #e8f8f5;
    color: #117864;
}
.bg-label-delivered, .bg-label-5 {
    background-color: #ebf9f0;
    color: #239b56;
}
.bg-label-cancelled, .bg-label-6 {
    background-color: #fdedec;
    color: #c0392b;
}
.bg-label-partially-delivered, .bg-label-partially_delivered ,.bg-label-7{
    background-color: #d4edda;
    color: #155724;
}
.bg-label-partially-shipped , .bg-label-partially_shipped, .bg-label-8{
    background-color: rgb(255 87 34 / 15%);
    color: rgb(255 87 34);
}
.bg-label-out-for-delivered, .bg-label-out_for_delivered ,.bg-label-10{
    background-color: #e8f8f5;
    color: #117864;
}
.badge.bg-label-pending,.bg-0{
    background-color: #FFF4CC;
    color: #8C6D1F;
}
.bg-label-return-cancelled,.bg-6 {
    background-color: #ffe1ec;
    color: #a9153e
}
.bg-label-return-rejected,.bg-2 {
    background-color: #ffdbd5;
    color: #a43610
}
.bg-label-return-pending {
    background-color: #fff4cc;
    color: #8c6d1f
}
.bg-label-return-approved ,.bg-1{
    background-color: #d1ecff;
    color: #1b6ca8
}
.bg-label-return-in-progress, .bg-3 {
    background-color: #ccf5f2;
    color: #0a645a
}
.bg-label-return-received, .bg-4 {
    background-color: #ead9ff;
    color: #602ea2
}
.bg-label-return-completed, .bg-5 {
    background-color: #cfffe1;
    color: #21784b
}
.bg-label-refund_completed,
.bg-label-9 {
    background-color: #DAE6FF;
    color: #234AA3;
}
/* status budge css end */

/* scroll to top css start */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 45px;
    height: 45px;
    background-color: var(--btn-bkg-color);
    color: var(--btn-text-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
}
.scroll-to-top:hover {
    background-color: var(--btn-bkg-color);
    transform: scale(1.1);
}
/* scroll to top css end */

/* product review page css start */
.avatar-lg {
    height: 3rem;
    width: 3rem;
}
/* product review page css end */


/* cart list page css start */
table.cart-list tr, table.cart-list, table.cart-list tbody, table.cart-list td{
    border-width: 0;
    border: 0;
}
/* cart list page css end */

/* page loader css start */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.spinner {
    border: 5px solid rgba(var(--theme-base-color), 0.5);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* page loader css end */


/* offcanvas css start */
@media (max-width: 991px) {
    .offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
        visibility: visible;
    }
    .offcanvas.offcanvas-start {
        left: 0;
        top: 0;
        transform: translateX(0%);
        width: 320px;
    }
    .offcanvas {
        background-clip: padding-box;
        bottom: 0;
        color: var(--theme-base-color);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        outline: 0;
        position: fixed;
        transition: none;
        visibility: hidden;
        z-index: 2;
        border: 0;
    }
}
/* offcanvas css end */

.whatsapp{
    position: fixed;
    bottom: 80px;
    right: 10px;
    z-index: 9999;
}
.whatsapp .whatsapp_support {
    background-color: #fff0;
    font-size: 36px;
    font-weight: 500;
    line-height: 24px;
    background-image: linear-gradient(180deg,#57D163 0%,#23B33A 100%);
    box-shadow: 0 0 25px 0 rgba(27.54,156.4,48.12180555555557,.18823529411764706);
    border-style: solid;
    border-width: 4px 4px 4px 4px;
    border-color: #FFF;
    border-radius: 50% 50% 50% 50%;
    padding: 12px 12px 12px 12px;
    display: flex;
}
.whatsapp .whatsapp_support svg{
    width: 1em;
    height: 1em;
    fill: white;
}

/* chatbot css start */
/* #chatbotIcon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    cursor: pointer;
    z-index: 1000;
}

#chatbotIcon i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#chatbotIcon i:hover {
    transform: scale(1.1);
} */

/* Chatbot Window */
/* #chatbotWindow {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 350px;
    max-height: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    z-index: 1001;
}

.chatHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--theme-base-color);
    color: #fff;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chatHeader h4 {
    margin: 0;
}

#closeChat {
    cursor: pointer;
    font-size: 20px;
}

.chatMessages {
    padding: 10px;
    flex: 1;
    overflow-y: auto;
    max-height: 250px;
    background: #f1f1f1;
    display: flex;
    flex-direction: column;
}

.chatMessages .message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 20px;
    max-width: 80%;
    clear: both;
}

.chatMessages .userMessage {
    background: var(--theme-base-color);
    color: #fff;
    float: right;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.chatMessages .botMessage {
    background: #e0e0e0;
    color: #000;
    float: left;
    border-bottom-left-radius: 0;
}

#userMessage {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: none;
}

#sendBtn {
    margin: 0 10px 10px;
    padding: 8px 12px;
    background: var(--theme-base-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: calc(100% - 20px);
}

#sendBtn:hover {
    background: var(--theme-base-color);
} */

/* AI Support Assistant */

/* Floating Widget Container */
.chat-container {
    position: fixed;
    bottom: 100px;
    left: 0px;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 120px);
    background: rgba(22, 27, 34, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #e6edf3;
}

.chat-container.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Floating Chat Button */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    left: 0px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f6feb, #58a6ff);
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(88, 166, 255, 0.4);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(88, 166, 255, 0.6);
}

.chat-toggle .chat-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.chat-toggle .close-icon {
    position: absolute;
    width: 25px;
    height: 25px;
    transform: scale(0) rotate(-90deg);
    transition: transform 0.3s ease;
}

.chat-toggle.active .chat-icon {
    transform: scale(0) rotate(90deg);
}

.chat-toggle.active .close-icon {
    transform: scale(1) rotate(0);
}

.chat-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(13, 17, 23, 0.5);
}

.bot-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1f6feb, #58a6ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 0 10px rgba(88, 166, 255, 0.3);
}

.header-info h1 {
    font-size: 1.1rem;
    font-weight: 600;
}

.header-info p {
    font-size: 0.8rem;
    color: #7d8590;
    margin-top: 3px;
}

.header-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #7d8590;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: color 0.2s;
}


.header-close:hover {
    color: #e6edf3;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: fadeIn 0.3s ease forwards;
    position: relative;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.user {
    align-self: flex-end;
    background: #1f6feb;
    color: #fff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 3px 10px rgba(31, 111, 235, 0.2);
}

.message.bot {
    align-self: flex-start;
    background: rgba(48, 54, 61, 0.8);
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: pre-wrap;
}

.chat-input-area {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 17, 23, 0.7);
}

.input-wrapper {
    display: flex;
    gap: 10px;
    background: rgba(48, 54, 61, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #58a6ff;
    box-shadow: 0 0 0 1px #58a6ff;
}

.chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #e6edf3;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    padding: 8px;
    outline: none;
}

.chat-input::placeholder {
    color: #7d8590;
}

.send-btn {
    background: #58a6ff;
    color: #0d1117;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.send-btn:hover {
    transform: scale(1.05);
    background: #79c0ff;
}

.send-btn:disabled {
    background: #7d8590;
    cursor: not-allowed;
    transform: none;
}

.typing-indicator {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 12px 16px;
    background: rgba(48, 54, 61, 0.8);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    display: none;
}

.typing-dot {
    width: 5px;
    height: 5px;
    background: #7d8590;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
        animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); background: #e6edf3; }
}

/* Suggestions logic */
.suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.suggestion-chip {
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    color: #58a6ff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.suggestion-chip:hover {
    background: rgba(88, 166, 255, 0.2);
}

.recommended-product-item .card-product {
    width: 240px;
    min-height: 100%;
}

.plus-icon {
    font-size: 28px;
    font-weight: 700;
    margin-left: 14px;
    margin-right: 4px;
    align-items: center;
}

.recommended-summary-box {
    width: 280px;
    min-width: 280px;
}

@media (max-width: 480px) {
    .chat-container {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        transition: transform 0.3s ease;
    }

    .chat-container:not(.active) {
        transform: translateY(100%);
    }
}

@media (max-width: 991px) {

    .recommended-summary-box {
        width: 100%;
        min-width: 100%;
    }

    .recommended-product-item {
        width: 100%;
    }

    .recommended-product-item .card-product {
        width: 100%;
    }
}
