.pagination{
    justify-content: end;
    gap: 8px;
    padding-top: 20px;
}
.pagination li:hover a, .pagination li.active a {
    color: #ffffff;
    border-color: var(--main-color);
    background-color: var(--main-color);
}
.pagination a {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 40px;
    font-size: 16px;
    border-radius: 3px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #252525;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #ededed;
}
.pagination .next a:before {
    content: "\f054";
    font-family: 'Font Awesome 6 Pro';
}
.pagination .prev a:before {
    content: "\f053";
    font-family: 'Font Awesome 6 Pro';
}
.breadcrumb{
    padding: 14px 0 13px;
    border-bottom: 1px solid #ededed;
}
.breadcrumb ul{
    margin: 0;
    display: flex;
}
.breadcrumb li:not(:last-child) {
    margin-right: 12px;
    padding-right: 12px;
}
.breadcrumb li {
    font-size: 14px;
    font-weight: 500;
    position: relative;
}
.breadcrumb a {
    display: block;
    color: #252525;
}
.breadcrumb li:after {
    top: 6px;
    right: -5px;
    line-height: 1;
    font-size: 11px;
    content: "\f101";
    font-weight: 700;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
}
.breadcrumb li:last-child:after{
    content: '';
}
.category-main{
    gap: 15px;
    display: flex;
}
.sidebar_section {
    padding-left: 70px;
}

.sb_widget:not(:last-child) {
    margin-bottom: 40px;
}

.sb_widget2 {
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #ededed;
}

.sb_widget2:not(:last-child) {
    margin-bottom: 50px;
}

.sb_widget_title {
    line-height: 1;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.sb_widget_title2 {
    line-height: 1;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    margin-bottom: 35px;
    padding-bottom: 30px;
    text-transform: uppercase;
}

.sb_widget_title2:before {
    left: 0;
    bottom: 0;
    width: 55px;
    height: 4px;
    content: "";
    position: absolute;
    border-radius: 45px;
    background-color: var(--main-color);
}

.sb_category_list {
    margin-bottom: 1px;
}

.sb_category_list li:first-child>a {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.sb_category_list li:last-child>a {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.sb_category_list a {
    margin: -1px;
    display: block;
    padding: 9px 19px;
    color: #636363;
    border: 1px solid #ededed;
    text-transform: capitalize;
}

.sb_category_list a:hover {
    color: #ffffff;
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.sb_category_list2>li:not(:last-child) {
    margin-bottom: 8px;
}

.sb_category_list2 a {
    font-weight: 500;
    color: #636363;
}

.sb_category_list2 a:hover {
    color: var(--main-color);
}

.sb_tag_list {
    margin: -2px;
}

.sb_tag_list>li {
    padding: 2px;
}

.sb_tag_list a {
    display: block;
    color: #252525;
    font-size: 13px;
    font-weight: 500;
    border-radius: 3px;
    padding: 8px 14px 7px;
    text-transform: uppercase;
    background-color: #f4f4f4;
}

.sb_tag_list a:hover {
    color: #ffffff;
    background-color: var(--main-color);
}

.sb_instagram_shots {
    margin: -2px;
    max-width: 230px;
}

.sb_instagram_shots>li {
    padding: 2px;
    width: 33.333%;
}

.sb_instagram_shots a {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    background-color: #000000;
}

.sb_instagram_shots a img {
    -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sb_instagram_shots a i {
    top: 50%;
    left: 50%;
    z-index: 2;
    opacity: 0;
    color: #ffffff;
    font-size: 18px;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.sb_instagram_shots a:hover img {
    opacity: 0.4;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.sb_instagram_shots a:hover i {
    opacity: 1;
}

.filter_sidebar {
    border-radius: 3px;
    border: 1px solid #ededed;
}

.filter_sidebar .fs_widget {
    padding: 19px;
}

.filter_sidebar .fs_widget:not(:last-child) {
    border-bottom: 1px solid #ededed;
}
.section-product-wrap{
    height: fit-content;
    position: sticky;
    top: 90px;
}
.filter_sidebar .fs_widget_title {
    cursor: pointer;
    justify-content: space-between;
    display: flex;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    color: #252525;
    margin-bottom: 15px;
}
.filter_sidebar .fs_widget_title i{
    font-size: 14px;
}
.filter_sidebar .select_option {
    margin-bottom: 0;
}
.filter_sidebar .select_option select{
    width: 100%;
    font-size: 15px;
    border-radius: 3px;
    position: relative;
    border: 1px solid #ededed;
    -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    height: 38px;
    padding: 0 15px;
    line-height: 38px;
}
.filter_sidebar .select_option select option{
    font-weight: 400;
    color: var(--main-color);
    background-color: rgba(199, 161, 122, 0.04);
}
.filter_sidebar .select_option select option:not(:last-child) {
    border-bottom: 1px solid #ededed;
    cursor: pointer;
    outline: none;
}
.filter_sidebar .select_option .nice-select {
    height: 38px;
    padding: 0 15px;
    line-height: 38px;
}

.filter_sidebar .checkbox_item {
    margin-bottom: 0;
}
.fs_brand_list{
    display: flex;
    flex-wrap: wrap;
}
.filter-vendor__item img{
    display: inline-block;
    vertical-align: middle;
    max-height: 30px;
    object-fit: scale-down;
    width: 100px;
}

.fs_brand_list>li:not(:last-child) {
    margin-bottom: 10px;
}
.fs_brand_list .checkbox_item label{
    text-transform: capitalize;
}
.average_rating_list>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.average_rating_list>li:not(:last-child) {
    margin-bottom: 2px;
}

.average_rating_list i {
    font-size: 15px;
    color: #ffb11a;
}

.average_rating_list i:not(:last-child) {
    margin-right: 1px;
}

.average_rating_list span {
    margin-left: 10px;
    color: #252525;
}

.filter_memory_list>li:not(:last-child) {
    margin-bottom: 5px;
}
.ab_author {
    padding: 30px 20px;
}

.ab_author .author_image {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 100%;
    margin-bottom: 20px;
    display: inline-block;
}

.ab_author .author_name {
    line-height: 1;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ab_author .author_signature {
    display: block;
    padding: 8px 0;
    font-size: 18px;
    font-family: "Allison Tessa";
}
.price-range-area {
    padding-top: 7px;
}
.price-range-area .price-text {
    margin-bottom: 15px;
}
.price-range-area .price-text span {
    float: left;
    margin-right: 5px;
}
.price-range-area .price-text input {
    border: none;
    display: inline-block;
    background-color: transparent;
}
.price-range-area .slider-range {
    height: 6px;
    border: none;
    border-radius: 45px;
    background-color: #eaeaea;
}
.price-range-area .ui-slider-range {
    border: none;
    border-radius: 45px;
    background: var(--main-color);
}
.price-range-area .ui-state-default {
    top: -7px;
    width: 20px;
    height: 20px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 100%;
    border: 6px solid #ffffff;
    background: var(--main-color);
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}

.filter_topbar {
    border-radius: 10px;
    background-color: #f5f5f5;
    padding: 14px 30px 14px 20px;
}

.filter_topbar .select_option {
    width: 170px;
    margin: 0 auto;
}

.filter_topbar .select_option .nice-select {
    height: 35px;
    padding: 0 19px;
    line-height: 35px;
    border-radius: 3px;
    border: 1px solid #ededed;
}

.filter_topbar .result_text {
    float: right;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    color: #252525;
}
.layout_btns>li:not(:last-child) {
    margin-right: 5px;
}

.layout_btns button {
    width: 33px;
    height: 33px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #252525;
    border-radius: 3px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #ededed;
}

.layout_btns button:hover {
    color: var(--main-color);
    border-color: var(--main-color);
}

.layout_btns button.active {
    color: #ffffff;
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.layout_btns button i {
    font-weight: 400;
}
.filter_topbar .select_option select{
    -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    font-size: 15px;
    height: 35px;
    padding: 0 19px;
    line-height: 35px;
    border-radius: 3px;
    border: 1px solid #ededed;
    outline: none;
}
.list_item .chir_loop{
    gap: 30px;
    display: flex;
}
.list_item .chir_loop img{
    max-width: 270px;
}
.list_item .product-content{
    display: flex;
    align-items: center;
}
.list_item .tag-product{
    display: block !important;
    top: 0;
    right: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    color: #ffffff;
    position: absolute;
    margin-right: 0;
}
.list_item .tag-product:before{
    background-color: #f03d3f;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    z-index: -1;
    position: absolute;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.list_item .tag-product .percent-discount{
    font-weight: 700;
    color: #fff;
    top: 11px;
    right: -8px;
    line-height: 1;
    font-size: 15px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    white-space: nowrap;
    margin-right: 8px;
}
.list_item .product-content .tag-product{
    display: none !important;
}
.list_item .chir_loop .chir-img{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 270px;
    flex: 0 0 270px;
    overflow: hidden;
    position: relative;
    padding-bottom: unset;
    height: unset;
}

.latest_product_carousel .title_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.carousel_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.latest_product_carousel .title_wrap .carousel_nav button:not(:last-child) {
    margin-right: 10px;
}
.sidebar_section .title_wrap h3{
    font-size: 22px;
    margin-bottom: 0;
}
.latest_product_carousel .title_wrap .carousel_nav button {
    outline: none;
    width: auto;
    height: auto;
    line-height: 1;
    border-radius: 0;
    color: #252525;
    background: #fff;
    border: none;
}
.latest_product_carousel .vertical_slider_4item {
    border: 1px solid #eaeaea;
    border-bottom: none;
}
.small_product_layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 17px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.small_product_layout .item_image {
    height: 90px;
    padding: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    margin-right: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.small_product_layout .item_image img {
    max-height: 70px;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.small_product_layout .item_title a {
    color: #252525;
}
.item_price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.small_product_layout .item_price span {
    font-size: 15px;
    font-weight: 600;
    margin-right: 4px;
    color: #f03d3f;
}
.small_product_layout .item_price del {
    margin: 0;
    font-size: 13px;
    color: #636363;
}
.latest_product_carousel .slider_item {
    border-bottom: 1px solid #eaeaea;
}
.section-product-wrap .section-product{
    margin: 0;
}
.fs_widget .filter_down{
    display: none;
}
.filter_color_list{
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
}
.filter_color_list li.filter-item.active a{
    box-shadow: 0 0 2px 2px var(--main-color);
    border-color: var(--main-color);
}
.filter_color_list a {
    width: 35px;
    height: 35px;
    border: 1px solid #ccc;
    display: block;
    border-radius: 50%;
}
.btn_filter{
    margin-bottom: 20px;
    text-align: center;
}
button.btn-filter {
    font-size: 16px;
    padding: 6px 30px;
    background: var(--main-color);
    border: none;
    color: #fff;
    border-radius: 4px;
}
.filter_size_list{
    gap: 12px;
    display: flex;
    flex-wrap: wrap;
}
.filter_size_list label input,.filter-vendor__item label input{
    cursor: pointer;
    height: 18px;
    width: 18px;
}
.filter_size_list label, .filter-vendor__item label{
    display: flex;
    gap: 5px;
    align-items: center;
}
.filter-item-list{
    display: none;
    background: #fff;
    border-radius: 6px;
    box-shadow: 2px 2px 11px hsla(0,3%,7%,.1);
    padding: 16px 25px;
    top: 100%;
    width: max-content;
    position: absolute;
    z-index: 99999 ;
}
.sort{
    position: relative;
}
.filter-item-list li{
    padding-bottom: 7px;
    cursor: pointer;
}
.sort .fs-title{
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.banner_ct{
    margin-bottom: 25px;
}
.banner_ct img{
    border-radius: 10px;
}
@media(max-width: 767px){
    .filter_topbar .sort{
        display: none;
    }
}