@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



body {
    font-family: "Poppins", sans-serif !important;
}

/*header*/
.m-header-wrapper {
    display: flex;
    flex-direction: column;
}

.m-header-wrapper .m-header-top {
    display: flex;
    width: 100%;
    padding: .5rem;
    justify-content: center;
    background: #de9465;
}

.m-header-wrapper .m-header-top>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
}

.m-header-wrapper .m-header-top>ul>li {
    color: #ffff;
    font-size: 14px;
    font-weight: 700;
}

.m-header-wrapper .m-header-top>ul>li>a {
    color: #fff;
}

.m-header-wrapper .m-header-bottom {
    display: flex;
    flex-direction: column;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-links {
    width: 41.5%;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-links>ul {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-logo {
    width: 17%;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-logo>a {
    display: flex;
    align-items: center;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-logo>a>img {
    width: 100%;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts {
    display: flex;
    align-items: center;
    width: 41.5%;
    justify-content: end;
    gap: 2rem;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account {}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul {
    display: flex;
    gap: 1rem;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li {
    position: relative;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li>span.cart-count {
    position: absolute;
    top: -9px;
    right: -7px;
    background: #f48fb1;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li>a {
    font-size: 22px;
    color: #444;
    display: flex;
    gap: .5rem;
    align-items: center;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li>a>p {
    font-size: 11px;
    width: 70px;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li>a>span {
    font-size: 29px;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-links>ul>li>a {
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li .account-hover {
    position: absolute;
    width: 150px;
    background: #efefef;
    right: 0;
    z-index: 99;
    top: 140%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    opacity: 0;
    visibility: hidden;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li .account-hover>ul {
    padding: 1rem;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    position: relative;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li .account-hover>ul::after {
    content: "\F235";
    font-family: 'bootstrap-icons';
    position: absolute;
    top: -22px;
    right: 0px;
    font-size: 25px;
    color: #efefef;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li .account-hover>ul>li {
    border-bottom: 1px solid #d2d2d2;
    padding-bottom: .2rem;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li .account-hover>ul>li>a {
    font-size: 13px;
    color: #828282;
    font-weight: 500;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li .account-hover>ul>li:hover>a {
    color: #444;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-account>ul>li .account-hover.account-active {
    opacity: 1;
    visibility: visible;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-search {}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-search .m-header-search-input {
    border: 2px solid #de9465;
    padding: .3rem 1rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: space-between;
    width: 230px;
    cursor: pointer;
    transition: .3s ease;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-search .m-header-search-input>span {
    font-size: 12px;
    color: #444;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-search .m-header-search-input>i {
    color: #444;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    /* padding-top: 0; */
    border-top: 1px solid #efefef;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu {}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu>li>a.menu-link {
    color: #444;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu>li>a.menu-link:hover {
    color: #f48fb1;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-links>ul>li>a:hover {
    color: #f48fb1;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu>li:not(:last-child) {
    /* border-right: 2px solid #de9465; */
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu>li>a.menu-link>strong {
    font-family: 'Poppins' !important;
    font-weight: 600;
    font-size: 15px;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu>li>a.menu-link>strong>img {
    height: 36px;
}

.m-header-search-input {}

.m-header-search {}

.m-header-search div#search {
    width: 90%;
    left: 5%;
    height: 93%;
    top: 5%;
}

.m-header-search .search-overlay {
    top: 0 !important;
    /* z-index: 9999; */
}

.m-header-search div#search .search-input-wrapper {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    width: 90%;
    margin-top: 1rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.m-header-search div#search .search-result-wrapper {top: 18px;/* max-height: 500px; */height: 100%;}


.m-header-search div#search button.search-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #de9465;
    border: none;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-top .m-header-accounts .m-header-search .m-header-search-input:hover {
    border-color: #f48fb1;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu > li .sub-menu {
    width: fit-content !important;
    max-width: fit-content !important;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu > li .sub-menu .content.slide {
    width: 250px;
    background: #ffffff;
    box-shadow: 0 0 10px 0 rgb(243 164 194) inset !important;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu > li.with-sub-menu {
    position: relative;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu > li .sub-menu .content.slide .menu {}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu > li .sub-menu .content.slide .menu > ul > li:hover > a {
    padding-left: 1rem !important;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu > li .sub-menu .content.slide .menu > ul > li > a {
    color: #444;
}

.m-header-wrapper .m-header-bottom .m-header-bottom-menu ul.megamenu > li .sub-menu .content.slide .categories > span {
    display: none;
}
/*header-end*/

/*home-box*/
.m-home-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
    gap: 1rem;
}

.m-home-boxes .m-home-box {
    width: calc(20% - 1rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    border: 1px solid #dee4ef;
    padding: 1.5rem 1rem;
}

.m-home-boxes .m-home-box>i {
    font-size: 25px;
    color: #de9465;
    margin-bottom: .5rem;
}

.m-home-boxes .m-home-box>span:nth-child(2) {
    font-size: 14px;
    font-weight: 800;
    color: #444;
}

.m-home-boxes .m-home-box>span:nth-child(3) {
    font-size: 12px;
    color: #444;
}

/*home-box-end*/

/*featured*/
.w-cart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.w-cart-container .w-cart-heading>span {
    font-size: 22px;
    font-weight: 600;
    color: #444;
}

.w-cart-container .w-cart-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    /* justify-content: center; */
}

.w-cart-container .w-cart-wrapper .w-cart-wrap {
    width: calc(25% - .5rem);
    margin-bottom: .5rem;
}

.w-cart-wrapper .w-cart-wrap {
    border: 1px solid #efefef;
    position: relative;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
}

.w-cart-wrapper .w-cart-wrap>a {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.w-cart-wrapper .w-cart-wrap>a .w-cart-image {}

.w-cart-wrapper .w-cart-wrap>a .w-cart-image>img {
    width: 100%;
    padding: 2rem;
    transition: opacity 0.2s ease;
}

.w-cart-container .w-cart-heading {
    margin-bottom: 2rem;
}

.w-cart-wrapper .w-cart-wrap .w-cart-wishlist {
    position: absolute;
    top: 4%;
    right: 6%;
}

.w-cart-wrapper .w-cart-wrap>a .w-cart-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    padding-bottom: 1.5rem;
}

.w-cart-wrapper .w-cart-wrap>a .w-cart-content .w-cart-title {
    height: 52px;
    text-align: center;
    display: flex;
    align-items: center;
}

.w-cart-wrapper .w-cart-wrap>a .w-cart-content .w-cart-title>span {
    font-size: 17px;
    font-weight: 600;
    color: #444444;
}

.w-cart-wrapper .w-cart-wrap>a .w-cart-content .w-cart-product-code {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #efefef;
    padding-bottom: .5rem;
}

.w-cart-wrapper .w-cart-wrap>a .w-cart-content .w-cart-product-code>span {
    font-size: 13px;
    color: #de9465;
    font-weight: 500;
}

/* .product-hover-action {
    position: absolute;
    top: 65%;
    right: 33%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.product-hover-action > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.product-hover-action > ul > li {}

.product-hover-action > ul > li > * {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 5px;
    background: #fff;
    transition: .3s ease-in;
}

.product-hover-action > ul > li > *:hover {
    background: #de9465;
    color: #fff;
}

.w-cart-wrapper .w-cart-wrap:hover .product-hover-action {
    opacity: 1;
    visibility: visible;
} */


.w-cart-wrapper .w-cart-wrap .w-cart-wishlist>button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 5px;
    background: #fff;
    transition: .3s ease-in;
    color: #f48fb1;
}

.w-cart-wrapper .w-cart-wrap .w-cart-wishlist>button:hover {
    background: #de9465;
    color: #fff;
}

.w-cart-wrapper .w-cart-wrap .w-cart-wishlist>button>i.bi-heart-fill {
    color: #f48fb1;
}

.w-cart-wrapper .w-cart-wrap>a .w-cart-content .w-cart-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.w-cart-wrapper .w-cart-wrap>a .w-cart-content .w-cart-price span.price-old {
    color: #929492;
    text-decoration: line-through;
    font-size: 14px;
}

.w-cart-wrapper .w-cart-wrap>a .w-cart-content .w-cart-price span.price-new {
    font-weight: 700;
    color: #f48fb1;
    font-size: 18px;
}

.product-hover-action>ul>li>* .bi-heart-fill {
    color: #f48fb1;
}

.w-cart-discount {
    background: #de9465;
    color: #fff;
    padding: .1rem .6rem;
    position: absolute;
    top: 62%;
}

.w-cart-discount>span {
    font-size: 14px;
}

/*swiper*/
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.w-cartSwiper {
    padding: .5rem !important;
}

/*swiper-end*/
/*featured-end*/

/*home-banner*/
.m-home-banner-triple-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: 1rem;
}

.m-home-banner-triple-container .m-home-banner {
    width: calc(33.3% - .5rem);
    position: relative;
}

.m-home-banner-triple-container .m-home-banner a {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.m-home-banner-triple-container .m-home-banner a>img {
    width: 100%;
    position: relative;
    transition: .9s ease;
}

.m-home-banner-triple-container .m-home-banner:hover a>img {
    transform: scale(1.05);
}

.m-home-banner-btn {
    position: absolute;
    bottom: 5%;
    left: 21%;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-home-banner-btn>bottom {
    position: relative;
    background: #ffff;
    color: #de9465;
    width: 100%;
    padding: .7rem .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 1;
    transition: .6s ease;
}

.m-home-banner-btn>bottom::after {
    content: "";
    width: 0%;
    position: absolute;
    background: #597ab2;
    height: 100%;
    z-index: -1;
    transition: .9s ease;
    left: 0;
}

.m-home-banner:hover a .m-home-banner-btn>bottom::after {
    width: 100%;
}

.m-home-banner:hover a .m-home-banner-btn>bottom {
    color: #fff;
}


.m-home-banner-twin-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: 3rem;
}

.m-home-banner-twin-container .m-home-banner {
    width: calc(50% - .5rem);
    position: relative;
}

.m-home-banner-twin-container .m-home-banner>a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.m-home-banner-twin-container .m-home-banner>a>img {
    width: 100%;
    /* --_g: 10% /45% 45% no-repeat linear-gradient(#000 0 0); */
    /* --m:
    left   var(--_i,0%) top    var(--_g),
    bottom var(--_i,0%) left   var(--_g),
    top    var(--_i,0%) right  var(--_g),
    right  var(--_i,0%) bottom var(--_g); */
    /* -webkit-mask: var(--m); */
    /* mask: var(--m); */
    /* filter: grayscale(); */
    /* transition: .3s linear; */
    /* cursor: pointer; */
}

/*home-banner-end*/

/*home-banner-efect*/
figure.effect {
    position: relative;
    overflow: hidden;
    margin: 0;
    /* padding: 6px; */
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    box-shadow: none !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.borders {
    position: absolute;
    opacity: 0.5;
}

.effect .borders:before,
.effect .borders:after,
.effect .borders div:before,
.effect .borders div:after {
    background-color: #fff;
    position: absolute;
    content: "";
    display: block;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.effect .borders.one:after,
.effect .borders.one div:after {
    bottom: 0;
    right: 0;
}

.effect:hover .borders:before,
.effect.hover .borders:before,
.effect:hover .borders:after,
.effect.hover .borders:after {
    width: 100%;
}

.effect .borders:before,
.effect .borders:after {
    width: 0;
    height: 2px;
}

.effect .borders.one:before,
.effect .borders.one div:before7 {
    left: 0;
    top: 0;
}

.borders.one {
    left: 0;
    top: 0;
    right: 12px;
    bottom: 12px;
}

.effect .borders.two {
    left: 12px;
    top: 12px;
    right: 0;
    bottom: 0;
}

.effect .borders.two:before,
.effect .borders.two div:before {
    right: 0;
    top: 0;
}

.effect .borders.two:after,
.effect .borders.two div:after {
    bottom: 0;
    left: 0;
}


.effect .borders.one:before,
.effect .borders.one div:before {
    left: 0;
    top: 0;
}

.effect .borders div:before,
.effect .borders div:after {
    width: 2px;
    height: 0;
}

.effect .borders.one:after,
.effect .borders.one div:after {
    bottom: 0;
    right: 0;
}

.effect:hover .borders div:before,
.effect.hover .borders div:before,
.effect:hover .borders div:after,
.effect.hover .borders div:after {
    height: 100%;
}


.m-home-banner-twin-container .m-home-banner:hover>a>img {
    --_i: 10%;
    filter: grayscale(0);
}

.m-home-banner-twin-container .m-home-banner .m-home-banner-btn {
    bottom: 10%;
    width: 45%;
    left: 27.5%;
}


/*home-banner-efect-end*/



/*category-page*/
.category-content-wrapper {
    display: flex;
    padding: 0;
    /* gap: 1rem; */
    align-items: flex-start;
    justify-content: flex-start;
}

.category-content-wrapper .category-list-container {
    width: calc(22% - 1rem);
    border-right: 1px solid #efefef;
    background: white;
}

.category-content-wrapper .category-product-list {
    width: calc(80% - 1rem);
    justify-content: unset;
}

.category-content-wrapper .category-product-list .w-cart-wrapper .w-cart-wrap {
    width: calc(33.3% - .5rem);
}

.category-content-wrapper .category-list-container form.bf-form {
    padding: 1rem .5rem 1rem 0rem !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-height: 100dvh;
    padding-bottom: calc(80px + 2.5rem);
    overflow: auto;
}

.category-content-wrapper .category-list-container form.bf-form .bf-attr-block {
    width: 100% !important;
    margin: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #efefef;
}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont {}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont {}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-attr-filter {
    width: 100%;
}

.category-content-wrapper .category-list-container form.bf-form .bf-attr-block .bf-attr-header {
    font-size: 14px;
    margin-bottom: 1rem;
    position: relative;
}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-sliding.bf-expanded {
    margin-bottom: 1rem;
}


.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-attr-filter .bf-cur-symb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-attr-filter .bf-cur-symb span.bf-cur-symb-left {
    display: none;
}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-attr-filter .bf-cur-symb input.bf-range-min {
    width: calc(50% - 10px);
    height: 35px;
    display: flex;
    text-align: start;
    padding-left: .5rem;
    font-size: 15px;
}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-attr-filter .bf-cur-symb span.ndash {
    width: 10px;
}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-attr-filter .bf-cur-symb input.bf-range-max {
    width: calc(50% - 10px);
    height: 35px;
    text-align: start;
    padding-left: .5rem;
    font-size: 15px;
}

.category-content-wrapper .category-list-container form.bf-form .bf-attr-block .bf-attr-header .bf-arrow::after {
    content: "-";
    position: absolute;
    right: 0;
    top: -6px;
    color: #f48fb1;
    width: 15px;
    height: 15px;
    font-size: 19px !important;
}

.category-content-wrapper .category-list-container form.bf-form .bf-attr-block .bf-attr-header .bf-arrow {
    display: block !important;
    background: none;
}


.category-content-wrapper .category-list-container form.bf-form .bf-attr-block .bf-attr-header .bf-arrow.collapsed::after {
    content: "+";
}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-attr-filter .bf-price-slider-container {
    padding: 15px 12px 15px 10px;
}

.bf-slider-container.ui-slider .ui-slider-handle,
.bf-slider-range.ui-slider .ui-slider-handle {
    border-radius: 0;
    background: #efefef;
    width: 20px;
    height: 18px;
    border: 1px solid #c5c5c5;
}

.ui-slider-horizontal .ui-slider-range {
    background: #f48fb1;
    height: 7px !important;
    top: 15% !important;
}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-search-container {}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-search-container input.bf-search {
    height: 40px;
    border-color: #efefef;
}

.category-filter-hidden>p {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 14px;
}

.category-filter-hidden {
    border-right: 1px solid #efefef;
    padding-bottom: 1rem;
    cursor: pointer;
    width: calc(22% - 1rem);
}

.category-list-top-right {
    display: flex;
    justify-content: space-between;
    width: calc(80% - 1rem);
    padding-bottom: .3rem;
    padding-left: 1rem;
}

.category-list-top-right>ul.sogo-breadcrumb {
    padding: 0;
    justify-content: flex-start;
    align-items: center;
}

.category-list-top-container .category-list-top-right .filter-sort {
    height: auto;
    display: block !important;
}

.content-wrapper .sogo-content .filter-sort {
    display: none;
}

.category-content-wrapper .category-product-list .w-cart-wrapper {
    padding-top: 3rem;
    padding-left: 1rem;
}

.content-wrapper .sogo-breadcrumb>li>a,
.content-wrapper .sogo-breadcrumb>li>span {
    font-size: 13px !important;
    color: #444;
}

ul.sogo-breadcrumb>li>a {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.content-wrapper .sogo-breadcrumb>li>a>i {
    font-size: 15px;
}

.content-wrapper .sogo-content .filter-sort .sort-view .sort-wrapper .select-styled {
    font-size: 13px;
}

.category-container {
    display: flex;
    flex-direction: column;
}

.category-list-top-container {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #efefef;
}

.w-cart-container.w-cart-full {
    width: 100%;
}


.w-cart-container.w-cart-full .w-cart-wrapper .w-cart-wrap {
    width: calc(25% - .5rem);
}

.bf-slider-range.ui-slider-horizontal {
    background: #f2f2f2;
    border-radius: 0;
}

.bf-c-1 {
    display: table-cell;
    border-bottom: 1px solid #EEE;
    vertical-align: middle;
    padding: 4px 0;
    height: 20px !important;
    width: 12px !important;
}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-attr-filter span.bf-cell.bf-c-2 {
    padding-left: .5rem !important;
    font-size: 13px;
}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-attr-filter input[type=checkbox]:checked:before {
    background-color: #f48fb1 !important;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 2px;
}

.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-attr-filter input[type=checkbox] {
    position: relative;
}


.category-content-wrapper .category-list-container form.bf-form .bf-sliding-cont .bf-attr-block-cont .bf-attr-filter input[type=checkbox]:checked:after {
    position: absolute;
    content: "\F26E";
    font-family: 'bootstrap-icons';
    top: -6px;
    left: -2px;
    width: 13px;
    height: 13px;
    color: #fff;
}

.category-list-container {
    position: sticky;
    top: 0;
}

/*category-page-end*/


/*product-page*/
.sogo-product-container .product-right .product-details-upper .name-fav .product-name span {
    font-size: 23px;
    color: #444;
    font-weight: 500;
}

.product-left {
    width: 55% !important;
}

.sogo-product-container .product-right {
    width: 45% !important;
}

.sogo-container ul.sogo-breadcrumb {
    justify-content: flex-start;
    margin-bottom: 1rem;
    border-top: 1px solid #efefef;
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #efefef;
}

.sogo-container ul.sogo-breadcrumb>li {}

.sogo-container ul.sogo-breadcrumb>li>* {
    font-size: 14px !important;
}

.sogo-container ul.sogo-breadcrumb>li:not(:last-child)::before {
    top: 44%;
}

ul.sogo-breadcrumb>li:not(:last-child)>a:hover {
    color: #f48fb1;
}

.product-price-wrapper {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #efefef;
}

.product-price-wrapper .product-price-wrap {
    padding-top: .8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 33.3%;
    gap: .5rem;
}

.product-price-wrapper .product-price-wrap:not(:last-child) {
    border-right: 1px solid #efefef;
}

.product-price-wrapper .product-price-wrap>span {
    text-transform: uppercase;
    font-size: 15px;
    color: #444;
}

.sogo-product-container .product-right .product-details-upper .product-info .detail-info>li {
    color: #444;
    font-size: 14px;
}

.product-price-wrapper .product-price-wrap>p {
    font-size: 22px;
    font-weight: 500;
    color: #444;
}


.sogo-product-container .product-right .product-details-middle .product-options .form-group {
    width: 50%;
}

.sogo-product-container .product-right .product-details-middle {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.sogo-product-container .product-right .product-details-middle .product-options .form-group>label {
    font-size: 14px;
    margin-bottom: .5rem;
    color: #444;
    font-weight: 600;
}

.sogo-product-container .product-right .product-details-middle .product-options .form-group .form-control {
    border-radius: 0;
    outline: none !important;
    box-shadow: none;
    border: 2px solid #f6b1c5;
    font-size: 13px;
    height: 45px;
}


.product-installment-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: .5rem;
}

.product-installment-content>* {
    color: #444;
    font-size: 13px;
}

.sogo-product-container .product-right .product-details-lower .product-cart-buttons .product-fav {
    width: calc(10% - .5rem) !important;
    height: 45px;
}

.sogo-product-container .product-right .product-details-lower .product-cart-buttons {
    flex-wrap: wrap;
    justify-content: space-between;
}

.sogo-product-container .product-right .product-details-lower .product-cart-buttons .btn-div-product {
    width: calc(60% - .5rem) !important;
    height: 45px;
}

.sogo-product-container .product-right .product-details-lower .product-cart-buttons .cart-count-buttons {
    width: calc(30% - .5rem) !important;
    margin-right: .5rem;
    border-radius: 0;
    height: 45px;
}

.sogo-product-container .product-right .product-details-lower .product-cart-buttons .btn-div-product button#button-cart {
    width: 100%;
    background: #ffffff;
    border: 2px solid #de9465 !important;
    color: #de9465;
}

.sogo-product-container .product-right .product-details-lower .product-cart-buttons .btn-buy-now {
    width: 100%;
    margin-top: 1rem;
    height: 45px;
    display: flex;
    align-items: center;
}

.sogo-product-container .product-right .product-details-lower .product-cart-buttons .btn-buy-now button.buy-btn {
    width: 100%;
    background: #ffffff;
    height: 100%;
    color: #de9465;
    border: 2px solid #de9465;
    margin-left: 0;
    padding: 0;
}

.sogo-product-container .product-right .product-details-lower .product-cart-buttons .product-fav button.product-fav {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 5px;
    background: #fff;
    transition: .3s ease-in;
    color: #f48fb1;
    width: 100% !important;
}

.sogo-product-container .product-right .product-details-lower .product-cart-buttons .prd-btn:hover>button {
    background: #de9465 !important;
    color: #ffffff !important;
}

.product-related-header>span {
    font-size: 25px;
    color: #de9465;
}

.sogo-product-container .product-left>ul>li:only-child {
    width: 100%;
}

.product-sub-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 1rem;
    gap: .5rem;
}

.product-sub-info .sub-info-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 2rem;
}

.product-sub-info .sub-info-top .sub-info-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 66.666%;
    gap: 2rem;
}

.product-sub-info .sub-info-top .sub-info-boxes .sub-info-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
    color: #aaa;
    position: relative;
}

.product-sub-info .sub-info-top .sub-info-boxes .sub-info-box .sub-infob-text > span {
    font-size: .8rem;
}

.product-sub-info .sub-info-top .sub-info-share {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 33.333%;
    position: relative;
}

.product-sub-info .sub-info-top .sub-info-share > button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    gap: .5rem;
    padding: 0;
    font-size: .8rem;
    color: #aaa;
}

.product-sub-info .sub-info-top .sub-info-share > button > span {}

.product-sub-info .sub-info-top .sub-info-boxes .sub-info-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1rem;
    top: 50%;
    width: 1px;
    height: 75%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, .075);
}

.product-sub-info .sub-info-top .sub-info-boxes .sub-info-box .sub-infob-text {
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content;
}

.product-sub-info .sub-info-top .sub-info-share > button > i {
    font-size: 1.125rem;
}

.product-sub-info .sub-info-bottom {
    line-height: 1;
}

.product-sub-info .sub-info-bottom > span {
    color: #999;
    font-size: .75rem;
    padding-left: 1rem;
    max-width: 100%;
    position: relative;
}

.product-sub-info .sub-info-bottom > span::before {
    content: "*";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
}

.product-accordion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 2rem;
    gap: .5rem;
}

.product-accordion .product-accordion-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.product-accordion .product-accordion-item > button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    padding: .5rem 1rem;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .075);
    position: relative;
    min-height: 40px;
}

.product-accordion .product-accordion-item > button > span {
    color: #444;
    font-weight: 600;
    font-size: .9rem;
    transition: color .2s ease;
}

.product-accordion .product-accordion-item > div {
    border: 1px solid rgba(0, 0, 0, .075);
    border-top: none;
    width: 100%;
}

.product-accordion .product-accordion-item > div .pdpa-content {}

.product-accordion .product-accordion-item > div .accordion-product-content {
    width: 100%;
    padding: 1rem;
    font-size: .8rem;
    line-height: 1.125;
    color: #444;
    display: flex;
    gap: .5rem;
    flex-direction: column;
}

.product-accordion .product-accordion-item > div .accordion-product-content > table {
    width: 100%;
}

.product-accordion .product-accordion-item > div .accordion-product-content > table > tbody {
    border: 1px solid rgba(0, 0, 0, .075);
}

.product-accordion .product-accordion-item > div .accordion-product-content > table > tbody > tr {
    border-bottom: 1px solid rgba(0, 0, 0, .075);
}

.product-accordion .product-accordion-item > div .accordion-product-content > table > tbody > tr > td {
    padding: .5rem;
}

.product-accordion .product-accordion-item > div .accordion-product-content > table > tbody > tr > td strong {color: #444;font-weight: 600;}

.product-accordion .product-accordion-item > button[aria-expanded=true] > span {
    color: #f48fb1;
}

.product-accordion .product-accordion-item > button::before {
    display: flex;
    align-items: center;
    justify-content: center;
    content: "";
    font-family: bootstrap-icons;
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem;
    top: calc(20px - .75rem);
    right: calc(20px - .75rem);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    opacity: 0;
    visibility: hidden;
    transform: rotate(90deg);
}

.product-accordion .product-accordion-item > button::after {
    display: flex;
    align-items: center;
    justify-content: center;
    content: "";
    font-family: bootstrap-icons;
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem;
    top: calc(20px - .75rem);
    right: calc(20px - .75rem);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.product-accordion .product-accordion-item > button[aria-expanded=false]::before {
    opacity: 1;
    visibility: visible;
    transform: rotate(0);
}

.product-accordion .product-accordion-item div#accordion-product-details {}

.product-accordion .product-accordion-item div#accordion-product-details .accordion-product-content {
    padding: .5rem;
}

.product-accordion .product-accordion-item > div .accordion-product-content > table > tbody > tr > td > span > a {
    color: #444;
    transition: color .2s ease;
    text-decoration: underline !important;
}

.product-accordion .product-accordion-item > div .accordion-product-content > table > tbody > tr > td > span > a:hover {
    color: #de9465;
}

.product-accordion .product-accordion-item > div .accordion-product-content > table > tbody > tr > td > span {
    font-weight: 400;
}

.product-accordion .product-accordion-item > div .accordion-product-content >p {
    font-size: .6rem;
}

/*product-page-end*/

/*product-review*/

.product-reviews-button {
    margin-bottom: .5rem;
    cursor: pointer;
}

.product-reviews-button>span {
    color: #de9465;
    font-weight: 800;
}


.product-rating-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.product-rating-container .tab-review-product-name {}

.product-rating-container .tab-review-product-name>span {
    font-size: 18px;
    font-weight: 800;
}

.product-rating-container .tab-rating-container {
    display: flex;
    width: 100%;
    /* align-items: center; */
    justify-content: center;
    /* align-items: center; */
    margin-top: 2rem;
    flex-direction: column;
    position: relative;
    padding-bottom: 30px;
}

.product-rating-container .tab-rating-container::before {
    content: "";
    background: #f5f5f5;
    width: calc(100% + 60px);
    height: 1px;
    position: absolute;
    bottom: 0;
    left: -30px;
}

.product-rating-container .tab-rating-container .rating-top {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    align-items: center;
    /* margin-top: 2rem; */
}

.product-rating-container .tab-rating-container .rating-content {
    width: 75%;
    display: flex;
    flex-direction: column;
    margin-right: 1rem;
}

.product-rating-container .tab-rating-container .rating-result {
    width: 25%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    height: 180px;
    margin-bottom: 1rem;
}

.product-rating-container .tab-rating-container .rating-content .rating-item {
    display: flex;
    width: 95%;
    align-items: center;
    margin-bottom: 1rem;
}

.rating-stars-wrapper {
    display: flex;
    width: 100%;
}

.rating-stars-wrapper .rating-stars {
    width: 20%;
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.rating-stars-wrapper .rating-info {
    width: 20%;
    display: flex;
    font-size: 15px;
    align-items: center;
}

.rating-stars-wrapper .rating-stars>i {
    font-size: 23px;
}

.product-rating-container .tab-rating-container .rating-content .rating-item .rating-stars-wrapper .rating-info>span {
    color: #c8c8c8;
}

.product-rating-container .tab-rating-container .rating-content .rating-item .rating-stars-wrapper .rating-progress {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-rating-container .tab-rating-container .rating-content .rating-item .rating-stars-wrapper .rating-progress .progress {
    width: 100%;
    background: #f5f5f5;
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
}

.product-rating-container .tab-rating-container .rating-content .rating-item .rating-stars-wrapper .rating-progress .progress .progress-bar {
    background: #ffb928;
}

.product-rating-container .tab-rating-container .rating-result .rating-result-title {}

.product-rating-container .tab-rating-container .rating-result .rating-result-title>span {
    font-size: 20px;
}

.product-rating-container .tab-rating-container .rating-result .rating-result-stars-wrap {}

.product-rating-container .tab-rating-container .rating-result .rating-result-stars-wrap .result-rating--stars {
    margin: 10px 0;
}

.product-rating-container .tab-rating-container .rating-result .rating-result-stars-wrap .result-rating--stars>i {
    font-size: 20px;
}

.product-rating-container .tab-rating-container .rating-result .rating-result-rating {
    font-size: 17px;
}

.input-rating label::before {
    margin-right: 5px;
    content: "\F588";
    font-family: "bootstrap-icons";
    display: inline-block;
    font-size: 22px;
    color: #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.input-rating input {
    border: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    opacity: 0;
}

.input-rating {
    display: flex;
    position: relative;
    display: inline-block;
    border: 0;
    margin-left: 20px;
}

.input-rating label {
    position: relative;
    float: right;
    color: #c8c8c8;
    cursor: pointer;
    display: flex;
    align-items: center;
    left: -5px;
}

.rating-new-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rating-new-area .new-area-top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rating-new-area .new-area-top .new-area-text {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #646464;
}

.rating-new-area .new-area-top .new-area-rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-new {
    display: none;
    padding: 30px 0;
    position: relative;
}

.rating-new::before {
    content: "";
    background: #f5f5f5;
    width: calc(100% + 60px);
    height: 1px;
    position: absolute;
    bottom: 0;
    left: -30px;
}

.rating-new-title {
    font-size: 20px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 25px;
}

.product-rating-container .tab-rating-container::before {
    content: "";
    background: #f5f5f5;
    width: calc(100% + 60px);
    height: 1px;
    position: absolute;
    bottom: 0;
    left: -30px;
}

.input-rating input:checked~label:before {
    color: #ffc107;
    content: "\F586";
}

.input-rating label:hover:before {
    color: #ffc107;
    content: "\F586";
}

.wrating-review {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.wrating-review>input {
    font-size: 14px !important;
    color: #555 !important;
    padding: 0 20px;
}

.wrating-review>textarea {
    padding: 20px;
    border: 0;
    border-radius: 5px;
    /* max-width: 790px; */
    min-height: 150px;
    resize: vertical;
    margin-top: 25px;
    background: #f5f5f5;
    font-size: 16px !important;
}

.rating-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.rating-actions .rating-buttons {
    display: flex;
}

.rating-actions .rating-buttons .rating-button {
    padding: 0 25px;
    height: 45px;
    line-height: 45px;
    border: 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    background: #de9465;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}

.rating-actions .rating-buttons .rating-button>i {
    margin-right: 0.5rem;
}

.product-rating-container .tab-rating-container .rating-content .rating-item .rating-stars-wrapper .rating-stars>i:not(:last-child) {
    margin-right: 0.3rem;
}

.input-rating label:hover~label:after {
    color: #ffdb70;
}

.input-rating label:hover~label:before {
    color: #ffdb70;
    content: "\F586";
}

.rating-send {
    width: 100%;
}

.rating-send .buttons {}

.rating-send .buttons .pull-right {
    display: flex;
    width: 100%;
    justify-content: end;
}

.rating-send .buttons .pull-right>button {
    border: 0;
    border-radius: 5px;
    padding: 0 60px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    font-weight: 700;
    background: #de9465 !important;
    border: 1px solid #de9465 !important;
    border-radius: 5px !important;
}

.rating-send .buttons .pull-right>button:hover {
    background: #fff !important;
    color: #de9465 !important;
}

.product-tab-comments {
    display: flex;
    width: 100%;
}

.product-tab-comments .product-tab-comments--list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 1rem;
}

.product-tab-comments .product-tab-comments--list .product-tab-comment {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
}

.product-tab-comments .product-tab-comments--list .product-tab-comment .product-tab-comment--inner {
    display: flex;
    flex-direction: column;
    width: 75%;
}

.product-tab-comments .product-tab-comments--list .product-tab-comment .product-tab-comment--inner .product-tab-comment__head {
    display: flex;
    align-items: center;
    width: 100%;
}

.product-tab-comments .product-tab-comments--list .product-tab-comment .product-tab-comment--inner .product-tab-comment__head .product-tab-comment__meta {
    flex: 1;
    display: flex;
    width: 100%;
    height: 55px;
    align-items: center;
    justify-content: space-between;
}

.product-tab-comments .product-tab-comments--list .product-tab-comment .product-tab-comment--inner .product-tab-comment__head .product-tab-comment__meta .product-tab-comment__metadata {
    font-size: 15px;
}

.product-tab-comments .product-tab-comments--list .product-tab-comment .product-tab-comment--inner .product-tab-comment__head .product-tab-comment__meta .product-tab-comment__metadata>span {
    font-weight: 800;
}

.product-tab-comments .product-tab-comments--list .product-tab-comment .product-tab-comment--inner .product-tab-comment__bottom {
    margin-left: 20px;
}

.product-tab-comments .product-tab-comments--list .product-tab-comment .product-tab-comment--inner .product-tab-comment__bottom .product-tab-comment__text {
    border-radius: 5px;
    padding: 20px;
    line-height: 1.4;
    background: #f5f5f5;
    color: #646464;
    font-size: 15px;
}

.product-tab-comments .product-tab-comments--list .product-tab-comment .product-tab-comment--inner .product-tab-comment__head .product-tab-comment__meta .rating-stars-wrapper {
    width: auto;
}

.product-tab-comments .product-tab-comments--list .product-tab-comment .product-tab-comment--inner .product-tab-comment__head .product-tab-comment__meta .rating-stars-wrapper .rating-stars>i:not(:last-child) {
    margin-right: 0.3rem;
}

.product-tab-comments .product-tab-comments--list .product-tab-comment .product-tab-comment--inner .product-tab-comment__head .product-tab-comment__meta .rating-stars-wrapper .rating-stars>i {
    font-size: 20px;
}

.rating-new>span {
    color: #4c4c4c;
    font-size: 16px;
    font-weight: 200;
}

.product-review-container {
    background: #ffffff82;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-review-container .product-review-head {
    width: fit-content;
    padding: .5rem 2rem;
    background: #de9465;
    border-radius: 7px;
}

.product-review-container .product-review-head>span {
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

#review ul.pagination {
    display: flex;
    gap: 0.3rem;
}

#review ul.pagination li a {
    border: 1px solid #de9465;
    padding: 0.3rem;
    background: #de9465;
    color: #ffffff;
    border-radius: 5px;
}

/*product-review-end*/



/*footer*/
footer.footerwebsite {
    margin-top: 3rem;
}

.m-footer-wrapper .m-footer-top {
    background: #f2f2f2;
    padding: 2rem;
}

.m-footer-wrapper .m-footer-top .container {
    display: flex;
}

.m-footer-wrapper .m-footer-top .container .footer-list {
    width: 20%;
}

.m-footer-wrapper .m-footer-top .container .footer-list .footer-list-title {}

.m-footer-wrapper .m-footer-top .container .footer-list .footer-list-title>span {
    color: #de9465;
    font-weight: 600;
}

.m-footer-wrapper .m-footer-top .container .footer-list:last-child .footer-list-title>span {
    font-weight: 700;
}

.m-footer-wrapper .m-footer-top .container .footer-list>ul>li>a {
    font-weight: 400 !important;
    font-family: 'Poppins' !important;
    font-size: 14px;
    color: #444;
}

.m-footer-wrapper .m-footer-top .container .footer-list .newsletter-wrapper {
    margin-bottom: 1rem;
}

.m-footer-wrapper .m-footer-top .container .footer-list .newsletter-wrapper .newsletter-group {
    position: relative;
    background: #fff;
    height: 45px;
    display: flex;
    align-items: center;
}

.m-footer-wrapper .m-footer-top .container .footer-list .newsletter-wrapper .newsletter-group>input {
    border: none;
    background: none;
    padding-left: .9rem;
    font-size: 13px;
}

.m-footer-wrapper .m-footer-top .container .footer-list .newsletter-wrapper .newsletter-group>button {
    position: absolute;
    right: 0;
    z-index: 99;
    width: 50px;
    height: 100%;
    border: none;
    background: #f48fb1;
}

.m-footer-wrapper .m-footer-top .container .footer-list .newsletter-wrapper .newsletter-group>button>img {
    width: 24px;
}

.m-footer-wrapper .m-footer-top .container .footer-list .newsletter-wrapper .newsletter-group>input::placeholder {
    color: #c2c2c2;
}

.m-footer-wrapper .m-footer-top .container .footer-list label.middle-heading {
    font-size: 12px;
    color: #444;
}

.m-footer-bottom {
    display: flex;
    flex-direction: column;
}

.m-footer-bottom .footer-bottom-bank {
    width: 100%;
    display: flex;
    justify-content: center;
}

.m-footer-bottom .footer-bottom-bank>img {
    width: 100%;
}

.m-footer-bottom .footer-bottom-copyright {
    border-top: 1px solid #efefef;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.m-footer-bottom .footer-bottom-copyright span {
    font-size: 14px;
    color: #444;
}

/*footer-end*/