:root {
    --color1: #E2213C;
    --color2: #F7B661;
    --color3: #F7F7F7;
    --danger: #d53343;
    --white: #ffffff;
    --black: #242729;
    --gray1: #ABAAAA;
    --gray2: #F1EDEB;
    --gray3: #7D7D7D;
    --gray4: #696969;
    --blackcart: #1F1F1F;
    --Light: Light;
    --Regular: Regular;
    --Medium: Medium;
    --heading_h1_fontsize: clamp(22px, 3vw, 32px);
    /*--vh: 9.96px;*/
}
/** Main **/
html,
html *,
::before,
::after {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: var(--color1);
}
::selection {
    color: #fff;
    background: var(--color1);
}
.h-100 {
    height: 100%;
}
strong {
    font-family: var(--Medium) !important;
}
body {
    direction: rtl;
    text-align: right;
    font-family: var(--Regular), Arial !important;
    font-size: 14px;
    color: var(--black);
    line-height: 1.5;
}
@media only screen and (max-width: 768px) {
    footer {
        padding-bottom: 80px !important;
    }
}
.position-relative {
    position: relative;
}
.s-space {
    margin-block: clamp(72px, 9vw, 120px);
}
.s-space:nth-child(1) {
    margin-top: 0;
}
.s-space:nth-last-child(1) {
    margin-bottom: 0;
}
.s-padding {
    background-image: url(../img/back-intro.svg);
    background-color: var(--black);
    background-repeat: no-repeat;
    background-position: top;
    padding-block: clamp(48px, 5vw, 72px);
    background-size: cover;
}
.s-title {
    font-size: clamp(24px, 3vw, 32px);
    font-family: var(--Medium);
    padding-bottom: 12px;
    position: relative;
    &:before {
        content: "";
        background: var(--color1);
        position: absolute;
        right: 50%;
        transform: translateX(50%);
        bottom: 0;
        width: 75px;
        height: 3px;
        border-radius: 2px 2px 0 0;
    }
}
/*.s-none {
    padding-bottom: 0;
    :before {
        content: none !important;
    }
}*/
.s-dark .s-title {
    color: white;
}
.s-desc {
    font-size: clamp(14px, 2vw, 20px);
    color: var(--gray3);
    line-height: 24px;
}
.s-intro {
    background-image: url(../img/back-intro.svg);
    background-color: var(--black);
    color: white;
    padding-block: clamp(48px, 5vw, 72px) clamp(77px, 6vw, 96px);
    & .title-box {
        margin-bottom: 0;
        gap: 0;
        & .cat-icon {
            min-width: clamp(44px, 3vw, 54px);
            font-size: clamp(40px, 3vw, 50px);
            min-height: clamp(44px, 3vw, 54px);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: clamp(8px, 2vw, 14px);
        }
        & .s-title {
            padding-bottom: 0;
            margin-bottom: clamp(16px, 2vw, 24px);
            &:before {
                content: none;
            }
        }
    }
}
button {
    border: none;
    background: none;
}
/*.top-title {*/
/*}*/
.title-box {
    margin-bottom: clamp(24px, 3vw, 40px);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: clamp(16px, 2vw, 20px);
    /*text-align: center;*/
}
.c-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: clamp(32px, 4vw, 48px);
    justify-content: center;
}
.btns {
    font-size: 14px;
    gap: clamp(12px, 2vw, 16px);
    display: flex;
    align-items: center;
    font-family: var(--Medium);
    position: relative;
    padding-inline: 14px 10px;
    border-radius: 100px;
    overflow: hidden;
    transition: 0.4s;
    min-height: clamp(32px, 3vw, 40px);
    & span {
        position: relative;
        transition: 0.4s;
    }
    & i {
        width: 17px;
        height: 17px;
        border: 1px solid;
        font-size: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: relative;
    }
    &:before {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        z-index: 0;
        transition: 0.4s;
        right: 0;
        top: 0;
    }
    &:hover:before {
        width: 100%;
    }
}
.btn1 {
    background: var(--color1) !important;
    color: var(--white);
    &:before {
        background: var(--color2);
    }
    &:hover {
        color: var(--black);
    }
}
.btn2 {
    background: var(--color2);
    color: var(--black);
    &:before {
        background: var(--color1);
    }
    &:hover {
        color: var(--white);
    }
}
.item-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    img {
        transition: 0.4s;
        border-radius: clamp(20px, 2vw, 24px);
    }
}
@media only screen and (min-width: 768px) {
    .item-banner img {
        width: 100%;
    }
}
.item-banner:hover img {
    transform: translateY(-10px);
    filter: drop-shadow(0px 8px 8px #00000030);
}
.section-sale .swiper-button-next {
    right: calc(100% - 1.5rem);
}
.section-sale .swiper-button-prev {
    left: calc(100% - 1.5rem);
}
@media screen and (max-width: 768px) {
    .section-sale .swiper-button-next {
        right: calc(100% - 1rem);
    }
    .section-sale .swiper-button-prev {
        left: calc(100% - 1rem);
    }
}
/*.woocommerce.columns-4 {*/
/*    position: relative;*/
/*    padding-bottom: clamp(48px, 5vw, 70px);*/
/*}*/
/** Tab CSS **/
/* --------------------
    TAB CSS
-------------------- */
.tab-content {
    display: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}
.tab-content.active {
    display: block;
}
@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/** Config **/
.alert {
    position: relative;
    padding: .75rem 1.25rem;
    /*border: 1px solid transparent;*/
    border-radius: .25rem;
}
.bg-primary {
    background-color: #007bff !important;
    color: white;
}
.bg-success {
    background-color: var(--color1) !important;
    color: white;
}
.bg-danger {
    background-color: var(--danger) !important;
    color: white;
}
.clearfix:after {
    content: '';
    clear: both;
    display: block;
}
.container-full {
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.container-full > .row {
    margin: 0;
}
.sidebar {
    position: sticky;
    top: 20px;
}
.w-100 {
    width: 100%;
}
.row {
    margin-right: -10px;
    margin-left: -10px;
}
.row > [class*="col-"],
.row > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
#wrapper .no-gutters {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
#wrapper .no-gutters > .col,
#wrapper .no-gutters > [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.text-center {
    text-align: center !important;
}
h1, h2, h3, h4, h5, h6, b, strong {
    font-family: var(--bold_font), Arial;
}
input {
    font-family: var(--main_font), Arial;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
img {
    max-width: 100%;
    height: auto;
}
video {
    width: 100%;
    pointer-events: none;
}
a {
    transition: 0.3s;
    color: #222;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: var(--color1);
}
.form-control.ltr {
    direction: ltr;
    text-align: left;
}
.inner-pages .site-main {
    padding: 50px 0;
}
.section-title {
    color: #313131;
    font-family: var(--bold_font);
    font-size: 26px;
    line-height: normal;
    margin-bottom: 10px;
}
.section-desc {
    font-size: 16px;
    font-family: var(--main_font);
    color: #555555;
}
.swiper-pagination.pagination-style {
    position: relative !important;
    margin-bottom: 0;
    bottom: 1px !important;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.swiper-pagination.abs-pagination {
    position: absolute !important;
    margin: 0;
    bottom: 24px !important;
}
.pagination-style .swiper-pagination-bullet {
    width: 16px !important;
    height: 8px !important;
    border-radius: 13px;
    background: #2EB77E66;
    opacity: 1;
    transition: 0.4s ease;
    margin: 0 6px !important;
}
.swiper-pagination.abs-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
}
.pagination-style .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color1) !important;
    width: 38px !important;
    border-radius: 6px;
}
.pagination-style.v2 .swiper-pagination-bullet {
    background: #2D32B666;
}
.pagination-style.v2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #2D32B6 !important;
}
.pagination-style.v3 .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
}
.pagination-style.v3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff !important;
}
.swiper-pagination.abs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff !important;
}
.archive-content .editor-content .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color2) !important;
}
.white-content > .swiper-pagination-bullet:hover {
    background: var(--color2);
}
.pagination-style .swiper-pagination-bullet:hover {
    background: var(--color1);
}
.pagination-style.v2 .swiper-pagination-bullet:hover {
    background: var(--color2);
}
.second-color.swiper-pagination .swiper-pagination-bullet {
    background: #44D1C933;
}
.second-color.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.second-color.swiper-pagination .swiper-pagination-bullet:hover {
    background: var(--color2);
}
/*.archive-content,*/
/*.archive-faq,*/
/*.archive-related {*/
/*    margin: 60px 0;*/
/*}*/
.swiper-button-lock {
    display: none !important;
}
/* --------------------
   GENERAL SETTING
-------------------- */
.page-title {
    margin-bottom: 20px;
}
.page-title .title-heading {
    color: #313233;
    font-size: 24px;
    font-family: var(--main_font);
    line-height: 45px;
    margin-bottom: 10px;
}
.page-title .desc p {
    font-size: 14px;
    line-height: 32px;
    color: #555555;
}
.part-title {
    margin-bottom: 20px;
}
.part-title .title-heading {
    font-size: 22px;
    color: #313233;
    line-height: 45px;
}
.part-title.light-title .title-heading {
    color: #fff;
}
.title-part.inner-title h1 {
    font-size: var(--heading_h1_fontsize);
}
.title-part.inner-title {
    margin-bottom: 20px;
}
.title-site h1 {
    font-size: var(--heading_h1_fontsize);
}
.title-site h4,
.title-site h2 {
    font-size: calc(var(--heading_h1_fontsize) - 2px);
}
.title-site-center {
    text-align: center
}
.title-site-center p.desc {
    text-align: center;
}
.title-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* --------------------
    Animation Pulse
-------------------- */
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(250, 190, 88, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
        box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(250, 190, 88, 0);
        box-shadow: 0 0 0 0 rgba(250, 190, 88, 0)
    }
}
@media only screen and (max-width: 768px) {
    .inner-page .site-main {
        margin-top: 25px;
    }
}
/* --------------------
      card
 -------------------- */
form .quantity {
    width: 96px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 6px;
}
form .quantity button {
    font-size: 12px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 0;
    &:hover {
        color: var(--color1);
    }
}
form .quantity input {
    -webkit-appearance: none;
    border: none !important;
    text-align: center !important;
    -moz-appearance: textfield;
    width: 36px !important;
    margin: 0 !important;
    height: auto !important;
    font-size: 20px;
    background: none;
    line-height: 37px;
    padding: 0 !important;
    margin: 0 !important;
    font-family: inherit;
    background: transparent !important;
    color: var(--black);
    padding-top: 4px !important;
}
form .quantity input::-webkit-outer-spin-button,
form .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* --------------------
    Alerts
-------------------- */
#wrapper .cart-empty.woocommerce-info, .wpcf7-response-output.wpcf7-validation-errors, .woocommerce-error, .comment-awaiting-moderation.waiting_pm, .stock.out-of-stock {
    background: var(--danger);
    border-radius: 0 0 8px 8px;
    color: white;
    padding: 0px 12px !important;
    text-align: center;
    font-size: 13px;
    display: block;
    font-style: inherit;
    position: absolute;
    top: 100%;
    right: 1rem;
}
.archive .woocommerce-error {
    right: 0;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.woocommerce-error li a {
    color: var(--color1);
}
.woocommerce-message,
.woocommerce-success,
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    text-align: center;
    margin: 0 auto 15px;
    font-size: 14px;
    background: var(--gray2);
    padding: 12px clamp(16px, 2vw, 24px);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--gray3);
    /*max-width: fit-content;*/
}
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    background: green;
    color: white;
}
.woocommerce-info:not(.woocommerce-message) a:hover {
    color: var(--color1);
}
.woocommerce-info:not(.woocommerce-message) {
    margin-bottom: 10px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--color1);
    color: var(--color1);
}
/** More Description **/
.main-content {
    border: 1px solid var(--gray2);
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(20px, 2vw, 28px) clamp(16px, 2vw, 24px);
    position: relative;
}
#more-tax-desc p:nth-last-child(1) {
    margin: 0;
}
#more-tax-desc > h1,
#more-tax-desc > h2,
#more-tax-desc > h3,
#more-tax-desc > h4,
#more-tax-desc > h5,
#more-tax-desc > h6 {
    margin: 0;
    margin-bottom: clamp(12px, 1vw, 16px);
    font-family: var(--Medium);
}
/** Page Numbers **/
ul.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: clamp(24px, 4vw, 48px);
    gap: clamp(8px, 2vw, 12px);
}
.page-numbers .page-numbers {
    width: clamp(32px, 3vw, 48px);
    height: clamp(32px, 3vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray2);
    color: var(--black);
    border-radius: 50%;
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1;
    transition: 0.4s;
    padding-top: 4px;
    &:hover,
    &.current {
        background: var(--color2);
        color: var(--black);
    }
}
.prev.page-numbers,
.next.page-numbers {
    font-size: 14px;
    padding: 0;
    background: var(--black);
    color: #fff;
}
/** Archive Posts **/
.mt-40 {
    margin-top: 40px !important;
}
.s-intro-blog {
    padding-bottom: clamp(174px, 16vw, 252px);
}
.archive--blog {
    margin-top: clamp(48px, 7vw, 100px);
}
.archive--blog .row {
    row-gap: clamp(24px, 3vw, 40px);
}
.post-categories {
    margin-block: -196px clamp(48px, 5vw, 74px);
}
.category-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: clamp(16px, 2vw, 20px);
    padding: 10px;
    background-color: var(--blackcart);
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    transition: 0.4s;
    & span {
        font-size: clamp(14px, 2vw, 16px);
        font-family: var(--Medium);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        line-height: 30px;
        & i {
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 0;
            font-size: 0;
            transition: 0.4s;
        }
    }
    & img {
        border-radius: 14px;
        width: 100%;
    }
    &:hover {
        color: var(--color2);
    }
    &:hover span i {
        width: 18px;
        font-size: 9px;
    }
}
.single-content,
.modular-content {
    border: 1px solid var(--gray4);
    padding-block: clamp(16px, 2vw, 28px);
    border-radius: 2rem;
    padding-inline: clamp(16px, 2vw, 24px);
}
/** Archive Product **/
/* CSS For ALLwidget & sidebar  */
.s-shop .s-title {
    padding: 0;
    &:before {
        content: none;
    }
}
.product-archive-category {
    margin-top: -54px;
    & .cat-slider {
        margin-bottom: 52px;
        background: var(--color3);
        padding: 8px;
        border-radius: 16px;
    }
    & .tab-title {
        padding: 10px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        justify-content: center;
        min-height: clamp(80px, 6vw, 90px);
        border-radius: 12px;
        padding: 12px;
        font-size: clamp(14px, 2vw, 16px);
    }
    & .tab-title:hover {
        background: var(--color1);
        color: white;
    }
    & .cat-icon .cat-icon-img,
    & .cat-icon {
        width: clamp(28px, 3vw, 32px);
        height: clamp(28px, 3vw, 32px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(22px, 2vw, 28px);
        color: var(--gray3);
    }
    & .tab-title:hover .cat-icon {
        color: white;
    }
    & .tab-title:hover .cat-icon-img {
        filter: brightness(2);
    }
}
.orderby-form {
    background: white;
    box-shadow: 0px 4px 25.2px 0px #C1C1C140;
    margin-bottom: 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    & .woocommerce-ordering {
        display: flex;
        align-items: center;
        gap: 20px;
        & .orderby-list {
            display: flex;
            gap: clamp(8px, 2vw, 16px);
            & button {
                font-size: 12px;
                font-family: var(--Regular);
                color: var(--gray4);
                padding: 0;
                transition: 0.4s;
                &.selected,
                &:hover {
                    color: var(--color1);
                }
            }
        }
    }
    & .woocommerce-ordering__title {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-family: var(--Medium);
        & i {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--color2);
        }
    }
    & .product-count {
        font-size: 12px;
        font-family: var(--Regular);
    }
}
.sidebar-shop {
    border: 0px solid var(--gray2);
    padding: 0 20px;
    border-radius: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    & .widget-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-family: var(--Medium);
    }
}
.sidebar-shop.open {
    max-height: max-content;
    padding-block: 24px;
    border-width: 1px;
}
.title-side {
    background: var(--gray2);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(14px, 2vw, 16px);
    font-family: var(--Medium);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
    &:before {
        content: "\e907";
        font-family: icomoon;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 16px;
        font-size: 10px;
        transition: 0.4s;
    }
    &.open:before {
        transform: rotate(180deg);
    }
}
.sidebar-shop > div:not(:nth-last-child(1)) {
    border-bottom: 1px solid var(--gray2);
    padding-bottom: 22px;
    margin-bottom: 22px;
}
.filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    & .switch {
        position: relative;
        display: inline-block;
        width: 46px;
        height: 24px;
        & input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        & .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--black);
            border-radius: 24px;
            transition: .4s;
            &:before {
                position: absolute;
                content: "";
                height: 18px;
                width: 18px;
                right: 3px;
                bottom: 3px;
                background-color: white;
                border-radius: 50%;
                transition: .4s;
            }
        }
    }
    & input:checked + .slider {
        background-color: var(--color1);
    }
    & input:checked + .slider.red {
        background-color: #c62828;
    }
    & input:checked + .slider:before {
        transform: translateX(-22px);
    }
}
@media (max-width: 768px) {
    .sidebar-shop {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease;
        padding: 20px;
        overflow-y: auto;
        max-height: none !important;
        z-index: 9999;
        border-radius: 16px 0 0 16px;
    }
    .sidebar-shop.show-canvas {
        right: 0;
    }
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 9998;
    }
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
@media only screen and (max-width: 768px) {
    .orderby-form {
        max-width: 140px;
        font-size: 12px !important;
        position: absolute;
        top: -83px;
        left: 16px;
        border-radius: 10px;
    }
    .woocommerce-ordering .orderby-list {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: 0.4s ease;
        background: var(--gray2);
        width: 100%;
        top: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        z-index: 2;
        padding: 10px 20px;
        max-height: 290px;
        overflow: auto;
        margin: 0 0 0 -1px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        left: 0;
        border-radius: 12px;
    }
    .orderby-form:hover .orderby-list {
        visibility: visible;
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    .woocommerce-ordering .orderby-list button {
        all: unset;
        cursor: pointer;
        text-align: right;
        transition: 0.4s;
    }
    .woocommerce-ordering .orderby-list button:hover {
        color: var(--color1);
    }
    #sidebar-0 {
        max-width: 140px;
        margin-bottom: 32px;
    }
}
.widget_categories.widget-side {
    width: 100%;
    position: relative;
}
.widget-side li a {
    color: var(--black);
    font-size: 16px;
    transition: 0.4s;
    display: flex;
    margin-bottom: 12px;
    font-family: var(--Regular);
    line-height: 26px;
    transition: 0.4s ease;
    &:hover {
        color: var(--color1) !important;
    }
}
.widget_categories .widget-title {
    transition: .4s;
    font-size: 16px;
    line-height: normal;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px 0;
}
.cat-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 100%;
}
.widget-side .children {
    padding: 0 8px 6px 0;
    margin: 0 !important;
    & .cat-item > a {
        display: block;
        transition: 0.4s ease;
        color: var(--gray3);
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 22px;
    }
}
.widget-side .children li {
    border: 0;
}
.caticon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    width: 18px;
    height: 18px;
    font-size: 10px;
    padding-top: 3px;
    color: var(--color1);
}
.caticon:before {
    content: "\e907";
    font-family: icomoon;
    font-size: 10px;
    display: inline-block;
    z-index: 0;
    transition: 0.4s ease;
}
.caticon.active {
    transform: rotate(180deg);
}
.post-categories .cat-item:not(.children .cat-item) {
    padding-block: 18px;
}
.post-categories .children .cat-item {
    padding: 14px;
}
.post-categories .children .cat-item .children li {
    padding: 14px 0 0;
}
@media (min-width: 62em) {
    .post-categories .widget_categories > ul {
        display: flex !important;
        align-items: center !important;
        align-items: stretch;
        gap: 2rem;
    }
    .widget_categories .widget-title {
        margin-left: 1.5rem;
    }
    .post-categories .widget-side.widget_categories {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    .post-categories .widget_categories .widget-title .caticon {
        display: none;
    }
    .post-categories .widget-side > ul > .cat-item > ul.children {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: 0.4s ease;
        background: var(--gray2);
        width: 300px;
        top: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        z-index: 500;
        padding: 0px;
        max-height: 290px;
        overflow: auto;
        margin: 0 0 0 -1px;
        display: block !important;
    }
    .post-categories .widget-side > ul > .cat-item:hover > ul.children {
        visibility: visible;
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}
.woocommerce-widget-layered-nav-list,
.widget-side:not(.woocommerce-widget-layered-nav) ul {
    display: none;
    margin-top: 12px;
}
@media only screen and (min-width: 992px) {
    .post-categories h3:before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 20px;
        width: 1px;
        background: var(--gray4);
        left: -24px;
    }
    .subcategories-list {
        transition: 0.4s;
        display: none !important;
        position: absolute;
        background: white;
        min-width: 10rem;
        right: 50%;
        transform: translateX(50%);
        top: 100%;
        padding: 10px 14px;
        z-index: 1;
        box-shadow: 0px 0px 7px 0px #cecece73;
    }
    .has-subcategories:hover .subcategories-list {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
    }
    .has-subcategories:after {
        content: "\e900";
        font-family: 'icomoon';
        position: absolute;
        left: 0;
        top: 56%;
        transform: translateY(-50%);
        font-size: 10px;
        width: 12px;
        height: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sidebar-header {
        position: relative;
        padding-left: 1.5rem;
    }
    .sidebar-header:before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 20px;
        width: 1px;
        background: var(--gray4);
        left: 0px;
    }
}
@media only screen and (max-width: 768px) {
    .categories-wrapper {
        align-items: start;
        background: none;
        flex-direction: column;
        min-width: 12rem;
        gap: 1.5rem;
    }
    .categories-menu {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .categories-wrapper h3 {
        width: 100%;
    }
    .categories-wrapper .accordion-title:before {
        content: "\e91b";
        font-family: 'icomoon';
        position: absolute;
        left: 8px;
        width: 20px;
        height: 20px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        transform: translateY(-50%);
    }
    .category-item.has-subcategories.wrap-ft-menu .accordion-title:before {
        top: 60%;
    }
    .category-item.has-subcategories {
        width: 100%;
    }
    .post-categories {
        padding: 40px 0;
    }
    .badge {
        top: 12px;
    }
}
.woocommerce-widget-layered-nav a:before {
    content: ' ';
    width: 20px !important;
    height: 20px !important;
    background: #aaa0 !important;
    margin: 1px 0 0 8px !important;
    border: 1px solid var(--gray1) !important;
    display: inline-block;
    border-radius: 5px;
}
/************ **/
li.woocommerce-widget-layered-nav-list__item a:hover:after, li.woocommerce-widget-layered-nav-list__item.chosen a:after {
    opacity: 1 !important;
    visibility: visible !important;
}
li.woocommerce-widget-layered-nav-list__item a:hover:before, li.woocommerce-widget-layered-nav-list__item.chosen a:before {
    border-color: var(--color1) !important;
    color: var(--color1) !important;
    content: "\e935";
    font-family: 'icomoon';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.widget_layered_nav_filters .chosen a:before {
    content: ' ';
    width: 20px !important;
    height: 20px !important;
    background: #aaa0 !important;
    margin: 1px 0 0 8px !important;
    border: 1px solid var(--color1) !important;
    display: inline-block;
    border-radius: 5px;
    color: var(--color1) !important;
    content: "\e935";
    font-family: 'icomoon';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: 0.4s;
}
li.woocommerce-widget-layered-nav-list__item.chosen a:hover:before,
.widget_layered_nav_filters .chosen a:hover:before {
    content: "\e91e";
    padding: 2px 0px 0px 2px;
}
/** Section Intro **/
.section-intro {
    min-height: 480px;
    position: relative;
    padding-top: 36px;
}
.img-intro {
    position: absolute;
    top: 0;
    right: 1rem;
    width: calc(100% - 2rem);
    height: 100%;
}
.img-intro.active:before {
    content: none;
}
.img-intro.active {
    z-index: 1;
}
.img-intro video,
.img-intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 2rem 2rem;
}
.img-intro:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(180deg, white, transparent);
}
.section-intro .desc {
    margin-top: 1.5rem;
}
.intro-video-btn {
    background: #DCCDC9;
    width: clamp(32px, 4vw, 52px);
    height: clamp(32px, 4vw, 52px);
    font-size: clamp(32px, 4vw, 52px);
    position: absolute;
    bottom: 130px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color2);
    cursor: pointer;
}
@media only screen and (max-width: 768px) {
    .section-intro {
        padding-top: 0;
    }
    .img-intro {
        right: .5rem;
        width: calc(100% - 1rem);
        border-radius: 1.5rem;
    }
    .img-intro img {
        border-radius: 1.5rem;
    }
    .intro-content {
        padding-inline: 8px;
    }
}
/* route-bar */
.route-bar {
    position: relative;
    margin: 0 0 30px 0;
    user-select: none;
}
.route-bar:before {
    content: "";
    position: absolute;
    top: 30px;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: var(--gray4);
}
.route-bar .step-box .wrapper {
    text-align: center;
}
.route-bar .step-box .title a:hover {
    color: var(--color1);
}
.route-bar .step-box .title,
.route-bar .step-box .title a {
    margin: 0;
    color: #363636;
}
.route-bar .step-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid var(--gray4);
    border-radius: 50%;
    margin: 0 auto 5px auto;
    background: #fff;
}
.route-bar .step-box .icon-svg {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin: 0;
    border-radius: 0 !important;
}
.woocommerce-cart .route-bar .first-step .icon,
.woocommerce-checkout .route-bar .first-step .icon,
.woocommerce-checkout .route-bar .second-step .icon,
.woocommerce-order-pay .route-bar .first-step .icon,
.woocommerce-order-pay .route-bar .second-step .icon,
.woocommerce-order-pay .route-bar .third-step .icon,
.woocommerce-order-received .route-bar .first-step .icon,
.woocommerce-order-received .route-bar .second-step .icon,
.woocommerce-order-received .route-bar .third-step .icon,
.woocommerce-order-received .route-bar .fourth-step .icon {
    background-color: var(--color1);
    border-color: var(--color1);
}
.woocommerce-cart .route-bar .first-step .icon-svg,
.woocommerce-checkout .route-bar .first-step .icon-svg,
.woocommerce-checkout .route-bar .second-step .icon-svg,
.woocommerce-order-pay .route-bar .first-step .icon-svg,
.woocommerce-order-pay .route-bar .second-step .icon-svg,
.woocommerce-order-pay .route-bar .third-step .icon-svg,
.woocommerce-order-received .route-bar .first-step .icon-svg,
.woocommerce-order-received .route-bar .second-step .icon-svg,
.woocommerce-order-received .route-bar .third-step .icon-svg,
.woocommerce-order-received .route-bar .fourth-step .icon-svg {
    filter: brightness(0) invert(1);
}
.product-list-table {
    width: 100%;
}
.inner-intro.general-intro {
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.banner-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-top: 1rem;
}
.banner-sidebar img {
    transition: 0.4s;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
}
.banner-sidebar:hover img {
    transform: scale(1.05);
}
input#min_price, input#max_price {
    border: 1px solid #E3E3E3;
    background: transparent;
    min-height: 35px;
    padding: 0 12px;
    color: #121212;
    width: 100%;
    margin-bottom: 14px;
}
.price_slider_wrapper {
    position: relative;
    margin: 1.25rem 0 1rem;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    position: relative;
    height: 3px;
    margin: 18px 18px 65px 5px;
    background: #4E505133
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    background: var(--color1)
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    border-radius: 1em
}
.price_slider_wrapper .ui-slider .ui-slider-handle {
    z-index: 2;
    width: 20px;
    height: 20px;
    cursor: ew-resize;
    outline: 0;
    top: -10px;
    margin-left: -5px;
    background: var(--color1);
    border-radius: 100%;
    position: absolute;
    transition: all 0.3s;
    left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center
}
.price_slider_amount {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 14px
}
.price_slider-text {
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    overflow-wrap: normal !important;
    padding: 0;
    position: absolute !important;
    width: 1px;
}
.price_slider_wrapper button {
    height: 40px;
    margin: 0;
    background: var(--color1);
    color: #fff;
    border: 1px solid var(--color1) !important;
    border-radius: 12px !important;
    font-family: var(--Regular);
}
.price_label {
    position: absolute;
    top: 22px;
    font-size: 12px;
    display: flex;
    gap: 8px;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.widget_layered_nav_filters .chosen a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.4s;
}
.widget_layered_nav_filters .widget-title {
    min-width: 7rem;
}
.must-log-in {
    background: #EFF7FA;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 4rem !important;
    text-align: center !important;
}
.must-log-in a {
    background: var(--color2);
    border-radius: 5px;
    margin-inline: 4px;
    padding-inline: 4px;
    color: white;
}
.no-sale-products {
    background: var(--color2);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}
.selected_products {
    margin-block: clamp(24px, 2vw, 32px) 32px;
    & .s-title {
        font-size: clamp(20px, 2vw, 28px);
    }
}
/** Section Download **/
.item-download {
    border: 1px solid var(--gray1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 24px;
    padding: 24px clamp(8px, 2vw, 16px) 16px;
    transition: 0.4s;
    & .icon-download-item {
        width: clamp(48px, 3vw, 56px);
        height: clamp(48px, 3vw, 56px);
        background: var(--gray1);
        align-items: center;
        justify-content: center;
        display: flex;
        border-radius: 50%;
        margin-bottom: clamp(20px, 2vw, 28px);
        color: var(--black);
        font-size: 21px;
        transition: 0.4s;
    }
    & .title-download {
        margin-bottom: clamp(4px, 1vw, 8px);
        font-size: clamp(16px, 2vw, 20px);
        font-family: var(--Medium);
        color: var(--black);
    }
    & .desc-download {
        font-size: clamp(14px, 2vw, 16px);
        color: var(--gray4);
        line-height: 30px;
        font-family: var(--Light);
    }
    &:hover .icon-download-item {
        background: var(--color1);
        color: white;
    }
}
.banner-sidebar-single {
    display: flex;
    align-items: flex-end;
    margin-top: 20px;
    position: relative;
    width: 100%;
    &:before {
        content: "";
        width: 100%;
        position: absolute;
        bottom: 0;
        right: 0;
        height: calc(100% - 15px);
        background-color: var(--color2);
        z-index: -1;
        border-radius: clamp(16px, 2vw, 20px);
        background-image: url(../img/back-cta.webp);
    }
    img {
        max-width: 150px;
    }
    .title {
        font-size: 20px;
        font-family: var(--Medium);
        text-align: center;
    }
    .wrap-support {
        padding: 0 0px 24px 20px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .div-support {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: rgb(255 255 255 / 40%);
        border-radius: 12px;
        padding: 8px 14px;
        gap: 4px;
        .support {
            display: flex;
            gap: 12px;
            font-size: 14px;
            font-family: var(--Medium);
            color: var(--color1);
        }
        .call {
            font-size: 14px;
            font-family: var(--Medium);
            color: var(--color1);
        }
    }
}
.wishlist-item.loading {
    pointer-events: none;
    position: relative;
}
.wishlist-item.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border: 2px solid var(--color1);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    transform: translate(-50%, -50%);
    background: var(--gray2);
    padding: 4px;
}
.wishlist-item.wished.loading:after {
    background: var(--color1);
    border-color: white;
    border-top-color: transparent;
}
@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.list-products .woocommerce-Price-currencySymbol:before {
    font-size: clamp(10px, 1vw, 14px) !important;
}
.list-products .product-item .product-price del {
    font-size: clamp(10px, 1vw, 12px) !important;
}
.list-products .product-item .product-price ins {
    font-size: clamp(12px, 2vw, 14px) !important;
    .woocommerce-Price-currencySymbol:before {
        font-size: clamp(10px, 1vw, 14px) !important;
    }
}
.archive.woocommerce-page #main .s-space {
    margin-top: 0;
}
.woocommerce-page #main {
    /*   z-index: 99;*/
    position: relative;
}
#mask_search {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 11;
    display: none;
}
body.top_bar_popup #mask_search {
    height: calc(100% - 140px);
}