.home-slider {
    border-radius: var(--radius-default);
    height: 100%;
    opacity: 0;
    transition: opacity .3s ease
}

.home-slider.is-ready {
    opacity: 1
}

.home-slider .swiper-slide {
    overflow: hidden
}

.home-slider .swiper-slide .slider-bg-image {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: #0000000a
}

.ltr .home-slider .swiper-slide .slider-bg-image {
    left: 0
}

.rtl .home-slider .swiper-slide .slider-bg-image {
    right: 0
}

.home-slider .slide-content {
    position: absolute;
    top: 0;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center
}

.home-slider .slide-content.align-left {
    justify-content: flex-start
}

.ltr .home-slider .slide-content.align-left {
    left: 0
}

.rtl .home-slider .slide-content.align-left {
    right: 0
}

.ltr .home-slider .slide-content.align-left .captions {
    margin-left: 60px;
    text-align: left
}

.rtl .home-slider .slide-content.align-left .captions {
    margin-right: 60px;
    text-align: right
}

.ltr .home-slider .slide-content.align-left .captions .caption-2 {
    margin-right: 90px
}

.rtl .home-slider .slide-content.align-left .captions .caption-2 {
    margin-left: 90px
}

.home-slider .slide-content.align-right {
    justify-content: flex-end
}

.ltr .home-slider .slide-content.align-right {
    right: 0
}

.rtl .home-slider .slide-content.align-right {
    left: 0
}

.ltr .home-slider .slide-content.align-right .captions {
    margin-right: 60px;
    text-align: right
}

.rtl .home-slider .slide-content.align-right .captions {
    margin-left: 60px;
    text-align: left
}

.ltr .home-slider .slide-content.align-right .captions .caption-2 {
    margin-left: 90px
}

.rtl .home-slider .slide-content.align-right .captions .caption-2 {
    margin-right: 90px
}

.home-slider .slide-content .captions {
    width: 460px
}

.home-slider .slide-content .caption {
    display: block
}

.home-slider .slide-content .caption-1 {
    font-size: 48px;
    font-weight: var(--font-light);
    line-height: 48px;
    color: var(--color-black)
}

.home-slider .slide-content .caption-2 {
    font-size: 16px;
    line-height: 26px;
    color: var(--color-gray);
    margin-top: 20px
}

@media screen and (max-width: 767px) {
    .home-slider .slide-content .caption-1 {
        font-size: 38px;
        line-height: 38px
    }

    .home-slider .slide-content .caption-2 {
        font-size: 15px;
        line-height: 25px;
        margin-top: 15px
    }
}

@media screen and (max-width: 576px) {
    .ltr .home-slider .slide-content.align-left .captions {
        margin: 0 50px 0 40px
    }

    .rtl .home-slider .slide-content.align-left .captions {
        margin: 0 40px 0 50px
    }

    .ltr .home-slider .slide-content.align-left .captions .caption-2 {
        margin-right: 0
    }

    .rtl .home-slider .slide-content.align-left .captions .caption-2 {
        margin-left: 0
    }

    .ltr .home-slider .slide-content.align-right .captions {
        margin: 0 40px 0 50px
    }

    .rtl .home-slider .slide-content.align-right .captions {
        margin: 0 50px 0 40px
    }

    .ltr .home-slider .slide-content.align-right .captions .caption-2 {
        margin-left: 0
    }

    .rtl .home-slider .slide-content.align-right .captions .caption-2 {
        margin-right: 0
    }

    .home-slider .slide-content .caption-1 {
        font-size: 28px;
        line-height: 28px
    }

    .home-slider .slide-content .caption-2 {
        font-size: 14px;
        line-height: 24px
    }
}

@media screen and (max-width: 450px) {

    .home-slider .slide-content.align-left .captions,
    .home-slider .slide-content.align-right .captions {
        margin: 0 30px !important
    }
}

.home-section-wrap {
    width: 100%
}

.home-section-inner {
    width: 100%;
    height: auto
}

.home-section-inner .home-slider-wrap .swiper-slide {
    border-radius: 12px
}

.home-section-inner .home-slider-wrap .swiper-slide img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.rtl .home-section-inner .home-slider-wrap .swiper-pagination {
    left: 0 !important;
    right: auto
}

.features {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-default)
}

.features .swiper-button-next,
.features .swiper-button-prev {
    height: 25px;
    width: 25px;
    background: var(--color-primary-alpha-30);
    border-radius: 50%;
    top: 50%;
    bottom: 0;
    transform: translateY(-50%);
    margin: 0;
    transition: var(--transition-150)
}

.features .swiper-button-next:after,
.features .swiper-button-prev:after {
    font-size: 8px;
    font-weight: 500;
    margin-top: -1px;
    color: var(--color-white)
}

.features .swiper-button-next:hover,
.features .swiper-button-prev:hover {
    background: var(--color-primary)
}

.features .swiper-button-next.swiper-button-disabled,
.features .swiper-button-prev.swiper-button-disabled {
    background: var(--color-primary-alpha-30)
}

.ltr .features .swiper-button-next {
    right: -35px
}

.rtl .features .swiper-button-next {
    left: -35px
}

.ltr .features .swiper-button-next:after {
    padding-left: 2px
}

.rtl .features .swiper-button-next:after {
    padding-right: 2px
}

.ltr .features .swiper-button-prev {
    left: -35px
}

.rtl .features .swiper-button-prev {
    right: -35px
}

.ltr .features .swiper-button-prev:after {
    padding-right: 2px
}

.rtl .features .swiper-button-prev:after {
    padding-left: 2px
}

.features:hover .swiper-button-prev {
    display: flex
}

.ltr .features:hover .swiper-button-prev {
    left: 15px
}

.rtl .features:hover .swiper-button-prev {
    right: 15px
}

.features:hover .swiper-button-next {
    display: flex
}

.ltr .features:hover .swiper-button-next {
    right: 15px
}

.rtl .features:hover .swiper-button-next {
    left: 15px
}

.features:not(.swiper-initialized) .feature-list .single-feature {
    width: 20%
}

@media screen and (max-width: 1400px) {
    .features:not(.swiper-initialized) .feature-list .single-feature {
        width: 25%
    }
}

@media screen and (max-width: 1180px) {
    .features:not(.swiper-initialized) .feature-list .single-feature {
        width: 33.33%
    }
}

@media screen and (max-width: 780px) {
    .features:not(.swiper-initialized) .feature-list .single-feature {
        width: 50%
    }
}

@media screen and (max-width: 576px) {
    .features:not(.swiper-initialized) .feature-list .single-feature {
        width: 100%
    }
}

.features-wrap {
    margin-top: 50px
}

.features-wrap .feature-list {
    padding: 30px 0
}

.features-wrap .single-feature {
    position: relative;
    display: flex;
    padding: 0 15px;
    justify-content: center
}

.features-wrap .single-feature:last-child:after {
    width: 0
}

.features-wrap .single-feature:after {
    position: absolute;
    content: "";
    top: 0;
    height: 42px;
    width: 1px;
    background: var(--border-color)
}

.ltr .features-wrap .single-feature:after {
    right: 0
}

.rtl .features-wrap .single-feature:after {
    left: 0
}

@media screen and (max-width: 991px) {
    .features-wrap {
        margin-top: 30px
    }
}

@media screen and (max-width: 576px) {
    .features-wrap .feature-list .single-feature {
        justify-content: flex-start;
        padding: 0 30px
    }

    .features-wrap .feature-list .single-feature:after {
        content: none
    }
}

.featured-categories-wrap {
    margin-top: 50px
}

.featured-categories-wrap .featured-categories-header {
    display: flex
}

.featured-categories-wrap .featured-category-products {
    margin-left: -6px;
    margin-right: -6px
}

.featured-categories-text {
    width: 650px;
    max-width: 100%
}

.ltr .featured-categories-text {
    padding-right: 30px
}

.rtl .featured-categories-text {
    padding-left: 30px
}

.featured-categories-text .title {
    font-weight: var(--font-normal)
}

.featured-categories-text .excerpt {
    font-weight: var(--font-light);
    line-height: 24px;
    display: block;
    margin-top: 10px;
    color: var(--color-gray)
}

.featured-categories-text .title,
.featured-categories-text .excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

@media screen and (max-width: 1090px) {
    .ltr .featured-categories-text {
        padding-right: 0
    }

    .rtl .featured-categories-text {
        padding-left: 0
    }
}

.featured-categories-tabs {
    display: flex
}

.ltr .featured-categories-tabs {
    padding-left: 0;
    margin-left: auto
}

.rtl .featured-categories-tabs {
    padding-right: 0;
    margin-right: auto
}

.featured-categories-tabs .tab-item {
    display: flex;
    height: 150px;
    width: 160px;
    padding: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--color-gray-lite);
    border-radius: var(--radius-default);
    cursor: pointer;
    z-index: 0;
    transition: var(--transition-150);
    overflow: hidden
}

.ltr .featured-categories-tabs .tab-item {
    margin-left: 20px
}

.rtl .featured-categories-tabs .tab-item {
    margin-right: 20px
}

.ltr .featured-categories-tabs .tab-item:first-child {
    margin-left: 0
}

.rtl .featured-categories-tabs .tab-item:first-child {
    margin-right: 0
}

.featured-categories-tabs .tab-item.active {
    border-color: var(--color-primary-alpha-80);
    cursor: default
}

.featured-categories-tabs .tab-item.loading {
    border-color: var(--color-primary-alpha-30);
    cursor: default
}

.featured-categories-tabs .tab-item.loading:hover {
    border-color: var(--color-primary-alpha-30)
}

.featured-categories-tabs .tab-item:hover {
    border-color: var(--color-primary-alpha-80)
}

.featured-categories-tabs .featured-category-image {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 50%
}

.featured-categories-tabs .featured-category-image>img {
    position: absolute;
    top: 50%;
    max-height: 100%;
    max-width: 100%
}

.ltr .featured-categories-tabs .featured-category-image>img {
    left: 50%;
    transform: translate(-50%, -50%)
}

.rtl .featured-categories-tabs .featured-category-image>img {
    right: 50%;
    transform: translate(50%, -50%)
}

.featured-categories-tabs .featured-category-image .image-placeholder {
    height: 45px;
    width: 45px
}

.featured-categories-tabs .featured-category-name {
    font-size: 14px;
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

@media screen and (max-width: 1300px) {
    .featured-categories-text {
        width: 100%
    }

    .featured-categories-wrap .featured-categories-header {
        flex-direction: column
    }
}

@media screen and (max-width: 450px) {
    .swiper-wrapper .swiper-slide .product-card {
        min-height: 260px
    }

    .swiper-wrapper .swiper-slide .product-card .product-name span,
    .swiper-wrapper .swiper-slide .product-card .product-price {
        font-size: 13px;
        line-height: 17px
    }
}

@media screen and (max-width: 350px) {
    .swiper-wrapper .swiper-slide .product-card {
        min-height: 240px
    }
}

@media screen and (max-width: 1800px) {
    .featured-categories-wrap .tabs .tab-item {
        height: 140px;
        width: 150px
    }
}

@media screen and (max-width: 1650px) {
    .featured-categories-wrap .tabs .tab-item {
        height: 130px;
        width: 140px
    }
}

@media screen and (max-width: 1600px) {
    .featured-categories-wrap .tabs .tab-item {
        height: 120px;
        width: 130px
    }
}

@media screen and (max-width: 1550px) {
    .featured-categories-wrap .tabs .tab-item {
        height: 110px;
        width: 120px
    }
}

@media screen and (max-width: 1300px) {
    .featured-categories-wrap .featured-categories-header {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center
    }

    .featured-categories-wrap .tabs {
        margin: 30px -10px -20px;
        flex-wrap: wrap;
        justify-content: center
    }

    .featured-categories-wrap .tabs .tab-item {
        margin: 0 10px 20px !important
    }
}

@media screen and (max-width: 991px) {
    .featured-categories-wrap {
        margin-top: 30px
    }

    .featured-categories-wrap .tab-content .featured-category-products {
        padding-top: 25px
    }

    .featured-categories-wrap .tabs .tab-item {
        margin: 0 7.5px 15px !important
    }
}

.three-column-full-width-banner {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #0000000a
}

.banner-wrap {
    margin-top: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

.banner-wrap.m-t-0 {
    margin-top: 0
}

.banner-wrap.three-column-full-width-banner,
.banner-wrap.one-column-banner {
    margin-top: 50px
}

.banner-wrap.three-column-banner .banner {
    background: #0000000a;
    padding-bottom: 40%
}

.banner-wrap.three-column-banner .banner img {
    position: absolute;
    top: 0
}

.ltr .banner-wrap.three-column-banner .banner img {
    left: 0
}

.rtl .banner-wrap.three-column-banner .banner img {
    right: 0
}

.banner-wrap.one-column-banner .banner {
    background: #0000000a;
    padding-bottom: 22%
}

.banner-wrap.one-column-banner .banner img {
    position: absolute;
    top: 0
}

.ltr .banner-wrap.one-column-banner .banner img {
    left: 0
}

.rtl .banner-wrap.one-column-banner .banner img {
    right: 0
}

.banner-wrap.two-column-banner .banner {
    background: #0000000a;
    padding-bottom: 31%
}

.banner-wrap.two-column-banner .banner img {
    position: absolute;
    top: 0
}

.ltr .banner-wrap.two-column-banner .banner img {
    left: 0
}

.rtl .banner-wrap.two-column-banner .banner img {
    right: 0
}

@media screen and (max-width: 991px) {
    .three-column-full-width-banner {
        padding-top: 40px;
        padding-bottom: 40px
    }
}

@media screen and (max-width: 767px) {
    .three-column-full-width-banner .row>div:first-child .banner {
        margin-top: 0
    }

    .three-column-full-width-banner .row>div .banner {
        margin-top: 15px
    }

    .two-column-banner .row>.col-md-9:last-child .banner {
        margin-top: 15px
    }

    .three-column-banner .row>.col-md-6:first-child .banner {
        margin-top: 0
    }

    .three-column-banner .row>.col-md-6 .banner {
        margin-top: 15px
    }
}

@keyframes effect-height {
    0% {
        height: 0;
        opacity: 1;
        visibility: visible
    }

    to {
        height: 100%;
        opacity: 0;
        visibility: hidden
    }
}

@keyframes effect-width {
    0% {
        width: 0;
        opacity: 1;
        visibility: visible
    }

    to {
        width: 100%;
        opacity: 0;
        visibility: hidden
    }
}

.landscape-tab-products-wrap {
    margin-top: 30px;
    padding: 0 10px
}

.landscape-tab-products-wrap .tab-products-header {
    display: flex;
    justify-content: space-between
}

.landscape-tab-products-wrap .tab-products-header .tabs {
    display: flex !important
}

.ltr .landscape-tab-products-wrap .tab-products-header .tabs {
    padding-left: 0
}

.rtl .landscape-tab-products-wrap .tab-products-header .tabs {
    padding-right: 0
}

.landscape-tab-products-wrap .tab-products-header .tabs .tab-item {
    white-space: nowrap
}

.landscape-tab-products-wrap .tab-products-header hr {
    display: none
}

.landscape-tab-products-wrap .section-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding: 8px 0;
    margin: 0
}

.blog-posts-inner,
.landscape-right-tab-products-inner,
.landscape-left-tab-products-inner {
    overflow: hidden;
    margin: 0 -10px -50px;
    padding: 0 10px 50px
}

.landscape-right-tab-products {
    margin-left: -6px;
    margin-right: -6px;
    overflow: unset
}

.blog-posts {
    margin-left: -10px;
    margin-right: -10px;
    overflow: unset
}

.landscape-left-tab-products {
    margin-left: -6px;
    margin-right: -6px;
    overflow: unset;
    position: relative
}

.landscape-left-tab-products .swiper-slide {
    width: 248px !important
}

.ltr .landscape-left-tab-products .swiper-slide {
    margin-right: 15px !important
}

.rtl .landscape-left-tab-products .swiper-slide {
    margin-left: 15px !important
}

.landscape-left-tab-products .swiper-button-prev,
.landscape-left-tab-products .swiper-button-next {
    height: 40px;
    width: 40px;
    background: #000000a3;
    border-radius: 50%;
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
    margin: 0;
    border: none
}

.landscape-left-tab-products .swiper-button-prev:after,
.landscape-left-tab-products .swiper-button-next:after {
    font-size: 14px;
    font-weight: 500;
    margin-top: -1px;
    color: var(--color-white);
    -webkit-text-stroke: 0
}

.landscape-left-tab-products .swiper-button-prev:hover,
.landscape-left-tab-products .swiper-button-next:hover {
    background: var(--color-primary)
}

.landscape-left-tab-products .swiper-button-prev.swiper-button-disabled,
.landscape-left-tab-products .swiper-button-next.swiper-button-disabled {
    background: #00000057
}

.ltr .landscape-left-tab-products .swiper-button-prev {
    left: 12px;
    right: auto
}

.rtl .landscape-left-tab-products .swiper-button-prev,
.ltr .landscape-left-tab-products .swiper-button-next {
    right: 12px;
    left: auto
}

.rtl .landscape-left-tab-products .swiper-button-next {
    left: 12px;
    right: auto
}

.landscape-left-tab-products .swiper-pagination {
    display: none
}

.daily-deals .swiper-button-prev,
.daily-deals .swiper-button-next {
    top: unset;
    bottom: 9px
}

.ltr .daily-deals .swiper-button-prev,
.ltr .daily-deals .swiper-button-next {
    right: 53px;
    left: unset
}

.rtl .daily-deals .swiper-button-prev,
.rtl .daily-deals .swiper-button-next {
    left: 53px;
    right: unset
}

.ltr .daily-deals .swiper-button-prev {
    right: unset;
    left: 58px
}

.rtl .daily-deals .swiper-button-prev {
    left: unset;
    right: 58px
}

@media screen and (max-width: 767px) {
    .landscape-left-tab-products .swiper-pagination {
        display: block;
        top: unset;
        bottom: 0
    }

    .landscape-left-tab-products .swiper-button-next,
    .landscape-left-tab-products .swiper-button-prev {
        display: none !important
    }

    .landscape-left-tab-products.mobile-list-view {
        overflow: visible;
        margin-left: 0;
        margin-right: 0
    }

    .landscape-left-tab-products.mobile-list-view .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        transform: translateZ(0) !important
    }

    .landscape-left-tab-products.mobile-list-view .swiper-slide {
        width: 100% !important;
        flex: 1 1 auto !important;
        height: auto;
        margin-bottom: 15px
    }

    .landscape-left-tab-products.mobile-list-view .swiper-pagination {
        display: none !important
    }

    .landscape-tab-products-wrap {
        padding: 0
    }

    .landscape-tab-products-wrap .tab-products-header {
        text-align: center;
        border-bottom: unset;
        flex-direction: column
    }

    .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow {
        overflow: auto;
        padding-bottom: 10px;
        display: flex;
        position: relative
    }

    .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow::-webkit-scrollbar {
        width: 0px;
        height: 0px
    }

    .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow::-webkit-scrollbar-track,
    .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow::-webkit-scrollbar-thumb,
    .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow::-webkit-scrollbar-thumb:hover {
        background: transparent
    }

    .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow .tabs {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        border-bottom: 1px solid #e5e5e5
    }

    .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow .tabs .tab-item:after {
        bottom: -8px;
        z-index: 1
    }

    .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow .tabs .tab-item:before {
        bottom: -1px;
        z-index: 1
    }

    .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow hr {
        display: block;
        height: 0;
        background: transparent;
        position: absolute;
        width: 100%;
        top: 41px;
        border: unset;
        border-bottom: 1px solid #e5e5e5;
        opacity: 1
    }

    .ltr .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow hr {
        left: 0
    }

    .rtl .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow hr {
        right: 0
    }

    .landscape-tab-products-wrap .tab-products-header .section-title {
        margin: 0 0 10px;
        padding-top: 15px
    }

    .ltr .landscape-tab-products-wrap .tab-products-header .section-title:after {
        left: 50%;
        transform: translate(-50%)
    }

    .rtl .landscape-tab-products-wrap .tab-products-header .section-title:after {
        right: 50%;
        transform: translate(50%)
    }

    .landscape-tab-products-wrap .tab-products-header .tabs {
        display: block;
        margin-top: 5px;
        text-align: center
    }

    .landscape-tab-products-wrap .tab-products-header .tabs .tab-item {
        display: inline-block
    }
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 1.5rem;
    align-items: start
}

.product-list-card .product-card {
    margin: 0 4px
}

@media (min-width: 2560px) {
    .product-list-grid {
        grid-template-columns: repeat(7, 1fr)
    }
}

@media (max-width: 1200px) {
    .product-list-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (max-width: 992px) {
    .product-list-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 768px) {
    .product-list-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 480px) {
    .product-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        -moz-column-gap: .5rem;
        column-gap: .5rem;
        row-gap: 1rem
    }

    .product-list-item {
        width: 100%
    }

    .product-list-card .product-card {
        margin: 0 2px
    }
}

.product-list-item {
    width: 100%
}

.mobile-products-slider {
    position: relative;
    margin: 0 -6px;
    overflow: visible
}

.mobile-products-slider .swiper-slide {
    width: 160px !important
}

.ltr .mobile-products-slider .swiper-slide {
    margin-right: 12px !important
}

.rtl .mobile-products-slider .swiper-slide {
    margin-left: 12px !important
}

.mobile-products-slider .swiper-button-prev,
.mobile-products-slider .swiper-button-next {
    height: 36px;
    width: 36px;
    background: #000000a3;
    border-radius: 50%;
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
    margin: 0;
    border: none
}

.mobile-products-slider .swiper-button-prev:after,
.mobile-products-slider .swiper-button-next:after {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-white);
    -webkit-text-stroke: 0
}

.mobile-products-slider .swiper-button-prev:hover,
.mobile-products-slider .swiper-button-next:hover {
    background: var(--color-primary)
}

.mobile-products-slider .swiper-button-prev.swiper-button-disabled,
.mobile-products-slider .swiper-button-next.swiper-button-disabled {
    background: #00000057
}

.ltr .mobile-products-slider .swiper-button-prev {
    left: 8px;
    right: auto
}

.rtl .mobile-products-slider .swiper-button-prev,
.ltr .mobile-products-slider .swiper-button-next {
    right: 8px;
    left: auto
}

.rtl .mobile-products-slider .swiper-button-next {
    left: 8px;
    right: auto
}

.mobile-grid-view {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px
}

.mobile-grid-view .grid-view-products-item {
    width: 50%;
    padding: 4px
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.grid-products-wrap {
    margin-top: 30px
}

.grid-products-wrap .grid-products-wrap-inner {
    overflow: hidden;
    padding: 0 10px 40px;
    margin: 0 -10px -40px
}

.grid-products-wrap .grid-products-wrap-inner .swiper-button-next:after,
.grid-products-wrap .grid-products-wrap-inner .swiper-button-prev:after {
    transform: translateY(-1px)
}

.grid-products-wrap .tabs {
    display: flex
}

.ltr .grid-products-wrap .tabs {
    padding-left: 0
}

.rtl .grid-products-wrap .tabs {
    padding-right: 0
}

.grid-products-wrap .tabs .tab-item {
    font-size: 15px;
    line-height: 26px;
    padding: 15px 3px;
    color: var(--color-gray);
    font-weight: var(--font-normal)
}

.grid-products-wrap .tabs .tab-item.active:after {
    opacity: 1
}

.grid-products-wrap .tab-products-header {
    position: relative
}

.grid-products-wrap .tab-products-header hr {
    display: none
}

.grid-products {
    margin-left: -6px;
    margin-right: -6px;
    overflow: unset;
    padding-bottom: 15px;
    padding-top: 14px !important
}

.grid-products .swiper-pagination {
    padding-top: 10px
}

.grid-products.swiper-grid-column>.swiper-wrapper {
    flex-direction: row
}

.grid-products .swiper-button-prev,
.grid-products .swiper-button-next {
    top: -50px
}

.ltr .grid-products .arrow-prev {
    right: 69px
}

.rtl .grid-products .arrow-prev {
    left: 69px
}

.ltr .grid-products .arrow-next {
    right: -3px
}

.rtl .grid-products .arrow-next {
    left: -3px
}

.grid-products .swiper-slide {
    height: auto !important
}

.grid-products .grid-products-item {
    padding: 6px;
    height: 100%
}

.grid-products .grid-products-item .product-card {
    margin: 0;
    height: 100%;
    justify-content: stretch
}

.grid-products .swiper-slide-skeleton {
    padding: 6px
}

.grid-products .product-card-skeleton {
    margin: 0
}

.grid-products.swiper:not(.swiper-initialized) .swiper-wrapper {
    flex-wrap: wrap
}

.grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(16)~.swiper-slide {
    display: none
}

@media screen and (max-width: 1760px) {
    .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper {
        flex-wrap: wrap
    }

    .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(14)~.swiper-slide {
        display: none
    }
}

@media screen and (max-width: 1400px) {
    .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(12)~.swiper-slide {
        display: none
    }
}

@media screen and (max-width: 1200px) {
    .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(10)~.swiper-slide {
        display: none
    }
}

@media screen and (max-width: 991px) {
    .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(8)~.swiper-slide {
        display: none
    }
}

@media screen and (max-width: 830px) {
    .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(6)~.swiper-slide {
        display: none
    }
}

@media screen and (max-width: 576px) {
    .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(4)~.swiper-slide {
        display: none
    }
}

@media screen and (max-width: 991px) {
    .grid-products .grid-products-item {
        padding: 6px
    }
}

@media screen and (max-width: 767px) {
    .grid-products {
        padding-bottom: 25px;
        padding-top: 4px !important
    }

    .grid-products .swiper-pagination {
        display: block;
        top: unset;
        bottom: 0
    }

    .grid-products .swiper-button-next,
    .grid-products .swiper-button-prev {
        display: none
    }

    .grid-products-wrap {
        margin-bottom: 0
    }

    .grid-products-wrap .tabs {
        display: flex;
        text-align: center
    }

    .grid-products-wrap .tabs .tab-item {
        display: inline-block
    }

    .grid-products-wrap .tabs .tab-item.active:after {
        opacity: 1 !important
    }

    .grid-products-wrap .tabs .tab-item:after {
        bottom: -8px
    }

    .grid-products-wrap .tabs .tab-item:before {
        bottom: -1px;
        z-index: 1
    }

    .grid-products-wrap .tab-products-header {
        overflow: auto;
        padding-bottom: 10px;
        border-bottom: unset;
        display: flex
    }

    .grid-products-wrap .tab-products-header .tabs {
        display: flex !important;
        border-bottom: 1px solid #e5e5e5;
        justify-content: center;
        margin-left: auto;
        margin-right: auto
    }

    .grid-products-wrap .tab-products-header hr {
        display: block;
        height: 0;
        background: transparent;
        position: absolute;
        width: 100%;
        top: 40px;
        border: unset;
        border-bottom: 1px solid #e5e5e5;
        opacity: 1
    }

    .ltr .grid-products-wrap .tab-products-header hr {
        left: 0
    }

    .rtl .grid-products-wrap .tab-products-header hr {
        right: 0
    }

    .grid-products-wrap .tab-products-header::-webkit-scrollbar {
        width: 0px;
        height: 0px
    }

    .grid-products-wrap .tab-products-header::-webkit-scrollbar-track,
    .grid-products-wrap .tab-products-header::-webkit-scrollbar-thumb,
    .grid-products-wrap .tab-products-header::-webkit-scrollbar-thumb:hover {
        background: transparent
    }
}

.top-brands {
    position: relative;
    margin-top: 10px;
    white-space: nowrap
}

@media (max-width: 991.98px) {
    .top-brands {
        margin-top: 16px
    }
}

.top-brands .top-brand-item {
    border-radius: var(--radius-default);
    width: 100px;
    position: relative;
    box-shadow: 0 2.4px 12px #0000000d
}

@media (max-width: 991.98px) {
    .top-brands .top-brand-item {
        width: 80px
    }
}

.top-brands .top-brand-item>img {
    position: absolute;
    top: 20px;
    max-height: 100%;
    max-width: 100%;
    transition: var(--transition-200)
}

@media (max-width: 991.98px) {
    .top-brands .top-brand-item>img {
        top: 10px
    }
}

.top-brands .swiper-button-next,
.top-brands .swiper-button-prev {
    transition: var(--transition-150);
    height: 40px;
    width: 40px;
    background: #000000a3;
    border-radius: 50%;
    top: 50%;
    bottom: 0;
    transform: translateY(-50%);
    margin: 0
}

.top-brands .swiper-button-next:after,
.top-brands .swiper-button-prev:after {
    font-size: 14px;
    font-weight: 500;
    margin-top: -1px;
    color: var(--color-white)
}

.top-brands .swiper-button-next:hover,
.top-brands .swiper-button-prev:hover {
    background: var(--color-primary)
}

.top-brands .swiper-button-next.swiper-button-disabled,
.top-brands .swiper-button-prev.swiper-button-disabled {
    background: #00000057
}

.ltr .top-brands .swiper-button-next {
    right: 15px
}

.rtl .top-brands .swiper-button-next {
    left: 15px
}

.ltr .top-brands .swiper-button-next:after {
    padding-left: 2px
}

.rtl .top-brands .swiper-button-next:after {
    padding-right: 2px
}

.ltr .top-brands .swiper-button-prev {
    left: 15px
}

.rtl .top-brands .swiper-button-prev {
    right: 15px
}

.ltr .top-brands .swiper-button-prev:after {
    padding-right: 2px
}

.rtl .top-brands .swiper-button-prev:after {
    padding-left: 2px
}

.top-categories .swiper-slide.top-category-item {
    flex: 0 0 auto;
    width: 110px;
    padding: 8px 4px
}

.top-category-item .category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.category-logo {
    width: 50px;
    height: 50px
}

.category-title {
    color: #000;
    font-size: 13px;
    line-height: 1.2;
    min-height: 2.6em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center
}

.text-is-new {
    font-size: 8.4px;
    padding: 3px 6px
}

.blog-post {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gray-lite);
    border-radius: var(--radius-default);
    transition: var(--transition-150)
}

.blog-post:hover {
    border-color: var(--color-white-lite);
    box-shadow: 0 5px 15px #0000001a;
    z-index: 1
}

.ltr .blog-post:hover .blog-post-featured-image>img,
.ltr .blog-post:hover .blog-post-featured-image .image-placeholder>img {
    transform: scale(1.08) rotate(-2deg)
}

.rtl .blog-post:hover .blog-post-featured-image>img,
.rtl .blog-post:hover .blog-post-featured-image .image-placeholder>img {
    transform: scale(1.08) rotate(2deg)
}

.blog-post .blog-post-featured-image {
    position: relative;
    padding-bottom: 56%
}

.blog-post .blog-post-featured-image>img {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: var(--radius-default) var(--radius-default) 0 0;
    -o-object-fit: cover;
    object-fit: cover;
    transition: var(--transition-200)
}

.blog-post .blog-post-featured-image .image-placeholder {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-white-dark);
    border-bottom: none;
    border-radius: var(--radius-default) var(--radius-default) 0 0
}

.ltr .blog-post .blog-post-featured-image .image-placeholder {
    left: 0
}

.rtl .blog-post .blog-post-featured-image .image-placeholder {
    right: 0
}

.blog-post .blog-post-featured-image .image-placeholder>img {
    height: 100px;
    width: 100px;
    transition: var(--transition-200)
}

.blog-post .blog-post-meta {
    display: flex;
    margin-bottom: 10px
}

.blog-post .blog-post-meta>li {
    font-size: 14px;
    font-weight: var(--font-light);
    color: var(--color-gray)
}

.ltr .blog-post .blog-post-meta>li {
    margin-left: 25px
}

.rtl .blog-post .blog-post-meta>li {
    margin-right: 25px
}

.ltr .blog-post .blog-post-meta>li:first-child {
    margin-left: 0
}

.rtl .blog-post .blog-post-meta>li:first-child {
    margin-right: 0
}

.blog-post .blog-post-meta>li>i {
    font-size: 16px;
    color: var(--color-primary)
}

.ltr .blog-post .blog-post-meta>li>i {
    margin: -1px 5px 0 0
}

.rtl .blog-post .blog-post-meta>li>i {
    margin: -1px 0 0 5px
}

.blog-post .blog-post-body {
    padding: 20px 20px 25px
}

.blog-post .blog-post-title {
    max-height: 60px
}

.blog-post .blog-post-title>a {
    color: var(--color-black);
    font-weight: var(--font-medium);
    font-size: 16px;
    line-height: 18px;
    display: -webkit-box;
    max-width: 100%;
    margin-bottom: 13px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration-line: underline;
    text-decoration-color: transparent;
    transition: var(--transition-150)
}

.blog-post .blog-post-title>a:hover {
    text-decoration-color: var(--color-black)
}

.blog-post .blog-post-read-more {
    font-size: 14px;
    color: var(--color-primary)
}

.blog-post .blog-post-read-more i {
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-150)
}

.blog-post .blog-post-read-more:hover {
    color: var(--color-primary-hover)
}

.blog-post .blog-post-read-more:hover i {
    opacity: 1;
    visibility: visible
}

.ltr .blog-post .blog-post-read-more:hover i {
    transform: translate(5px)
}

.rtl .blog-post .blog-post-read-more:hover i {
    transform: translate(-5px)
}

.blog-posts-wrap {
    margin-top: 44px
}

.blog-posts-wrap .swiper {
    padding-top: 20px
}

.blog-posts-wrap .blog-posts-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color-lite)
}

.blog-posts-wrap .blog-posts-header .section-title {
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 14px
}

.blog-posts-wrap .blog-posts-header .view-all {
    margin-top: 2px;
    color: var(--color-gray)
}

.blog-posts-wrap .blog-posts-header .view-all:hover {
    color: var(--color-primary)
}

.blog-posts .blog-post-card {
    margin: 0 10px;
    height: 100%
}

.blog-posts-wrap .blog-posts:not(.swiper-initialized) .swiper-slide {
    max-width: 20%
}

@media screen and (max-width: 1700px) {
    .blog-posts-wrap .blog-posts:not(.swiper-initialized) .swiper-slide {
        max-width: 25%
    }
}

@media screen and (max-width: 1300px) {
    .blog-posts-wrap .blog-posts:not(.swiper-initialized) .swiper-slide {
        max-width: 33.33%
    }
}

@media screen and (max-width: 920px) {
    .blog-posts-wrap .blog-posts:not(.swiper-initialized) .swiper-slide {
        max-width: 50%
    }
}

@media screen and (max-width: 640px) {
    .blog-posts-wrap .blog-posts:not(.swiper-initialized) .swiper-slide {
        max-width: 100%
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.ltr .popup-overlay {
    left: 0
}

.rtl .popup-overlay {
    right: 0
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible
}

.popup-overlay.active .popup-modal {
    transform: scale(1)
}

.popup-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 95vw;
    height: 790px;
    display: flex;
    flex-direction: row;
    box-shadow: 0 20px 60px #0000004d;
    position: relative;
    overflow: hidden;
    transform: scale(.9);
    transition: all .3s ease
}

.close-btn {
    position: absolute;
    top: 20px;
    width: 48px;
    height: 48px;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    font-size: 20px;
    color: #4a5568;
    z-index: 100
}

.close-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db
}

.left-section {
    width: 280px;
    flex-shrink: 0;
    background: #f9fafb;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.product-image-large-popup {
    width: 220px;
    height: 220px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.product-image-large-popup img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.view-full-details {
    color: #2d3748;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s
}

.view-full-details:hover {
    color: #0d6efd
}

.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.content-header {
    border: none
}

.ltr .content-header {
    padding: 30px 40px 20px 10px
}

.rtl .content-header {
    padding: 30px 10px 20px 40px
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.4
}

.ltr .product-title {
    padding-right: 60px
}

.rtl .product-title {
    padding-left: 60px
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-ct-blue);
    margin-bottom: 8px
}

.product-price-sidebar {
    font-size: 14px;
    color: var(--color-ct-blue) !important
}

.volume-text {
    font-size: 14px;
    color: #9ca3af
}

.view-details-link {
    color: #0d6efd;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    margin-top: 8px
}

.view-details-link:hover {
    text-decoration: underline
}

.table-wrapper {
    flex: 1;
    overflow-x: auto;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    height: 100%;
    background: #fff;
    box-shadow: 0 1px 2px #1018280f, 0 1px 3px #1018281a
}

.content-section {
    padding: 10px;
    height: 65%;
    flex: 1
}

.variations-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed
}

.variations-table thead th {
    background: #f9fafb;
    color: #475467;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap
}

.ltr .variations-table thead th {
    text-align: left
}

.rtl .variations-table thead th {
    text-align: right
}

.variations-table thead th:first-child {
    width: 30%;
    min-width: 250px
}

.variations-table thead th:nth-child(2) {
    width: 15%;
    min-width: 180px
}

.variations-table thead th:nth-child(3) {
    width: 10%;
    min-width: 100px;
    text-align: center
}

.variations-table thead th:nth-child(4) {
    width: 12%;
    min-width: 110px;
    text-align: center
}

.variations-table thead th:nth-child(5) {
    width: 13%;
    min-width: 130px;
    text-align: center
}

.variations-table thead th:nth-child(6) {
    width: 10%;
    min-width: 100px;
    text-align: center
}

.variations-table thead th:nth-child(7) {
    width: 10%;
    min-width: 90px;
    text-align: center
}

.variations-table tbody tr {
    border-bottom: 1px solid #e5e7eb
}

.variations-table tbody tr:hover {
    background: #fafafa
}

.variations-table td {
    padding: 16px;
    vertical-align: middle;
    overflow: hidden
}

.variations-table td:nth-child(2) {
    overflow: visible
}

.variations-table td:nth-child(3) {
    text-align: center
}

.variations-table td:nth-child(4) {
    text-align: center
}

.variations-table td:nth-child(5) {
    text-align: center
}

.variations-table td:nth-child(6) {
    text-align: center
}

.variations-table td:nth-child(7) {
    text-align: center
}

.variation-cell {
    display: flex;
    align-items: center;
    gap: 14px
}

.variation-thumb {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.variation-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.variation-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: #101828;
    margin-bottom: 4px;
    line-height: 1.43
}

.variation-details {
    font-size: 12px;
    color: #475467;
    line-height: 1.5
}

.quantity-cell {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    max-width: 100%;
    flex-wrap: nowrap;
    position: relative
}

.help-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.ltr .help-icon {
    left: -32px
}

.rtl .help-icon {
    right: -32px
}

.help-icon-wrapper {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    pointer-events: auto;
    width: 16px;
    height: 16px
}

.ltr .help-icon-wrapper {
    left: -5px
}

.rtl .help-icon-wrapper {
    right: -5px
}

.p-help-icon {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
    position: relative;
    top: 20px !important
}

.ltr .p-help-icon {
    right: 210px
}

.rtl .p-help-icon {
    left: 210px
}

.help-icon:hover,
.p-help-icon:hover {
    color: #6b7280
}

.help-icon:hover .volume-pricing-tooltip,
.help-icon:hover .p-volume-pricing-tooltip,
.p-help-icon:hover .volume-pricing-tooltip,
.p-help-icon:hover .p-volume-pricing-tooltip {
    opacity: 1;
    visibility: visible
}

.ltr .help-icon:hover .volume-pricing-tooltip,
.ltr .help-icon:hover .p-volume-pricing-tooltip,
.ltr .p-help-icon:hover .volume-pricing-tooltip,
.ltr .p-help-icon:hover .p-volume-pricing-tooltip {
    transform: translate(-50%)
}

.rtl .help-icon:hover .volume-pricing-tooltip,
.rtl .help-icon:hover .p-volume-pricing-tooltip,
.rtl .p-help-icon:hover .volume-pricing-tooltip,
.rtl .p-help-icon:hover .p-volume-pricing-tooltip {
    transform: translate(50%)
}

.volume-pricing-tooltip,
.p-volume-pricing-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px #00000026;
    padding: 20px;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: none
}

.ltr .volume-pricing-tooltip,
.ltr .p-volume-pricing-tooltip {
    left: 50%;
    transform: translate(-50%, 8px)
}

.rtl .volume-pricing-tooltip,
.rtl .p-volume-pricing-tooltip {
    right: 50%;
    transform: translate(50%, 8px)
}

.volume-pricing-tooltip:before,
.p-volume-pricing-tooltip:before {
    content: "";
    position: absolute;
    bottom: -6px;
    width: 12px;
    height: 12px;
    background: #fff
}

.ltr .volume-pricing-tooltip:before,
.ltr .p-volume-pricing-tooltip:before {
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    box-shadow: 2px 2px 4px #0000000d
}

.rtl .volume-pricing-tooltip:before,
.rtl .p-volume-pricing-tooltip:before {
    right: 50%;
    transform: translate(50%) rotate(-45deg);
    box-shadow: -2px 2px 4px #0000000d
}

tr:nth-of-type(-n+2) .volume-pricing-tooltip {
    top: calc(100% + 12px);
    bottom: auto
}

.ltr tr:nth-of-type(-n+2) .volume-pricing-tooltip {
    transform: translate(-50%, -8px)
}

.rtl tr:nth-of-type(-n+2) .volume-pricing-tooltip {
    transform: translate(50%, -8px)
}

tr:nth-of-type(-n+2) .volume-pricing-tooltip:before {
    top: -6px;
    bottom: auto
}

.ltr tr:nth-of-type(-n+2) .volume-pricing-tooltip:before {
    box-shadow: -2px -2px 4px #0000000d
}

.rtl tr:nth-of-type(-n+2) .volume-pricing-tooltip:before {
    box-shadow: 2px -2px 4px #0000000d
}

.ltr tr:nth-of-type(-n+2) .help-icon:hover .volume-pricing-tooltip {
    transform: translate(-50%)
}

.rtl tr:nth-of-type(-n+2) .help-icon:hover .volume-pricing-tooltip {
    transform: translate(50%)
}

.p-volume-pricing-tooltip {
    top: -235px;
    bottom: auto
}

.ltr .p-volume-pricing-tooltip {
    transform: translate(-50%)
}

.rtl .p-volume-pricing-tooltip {
    transform: translate(50%)
}

.tooltip-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    color: #4a5568;
    flex-direction: column
}

.tooltip-header span {
    font-weight: 500
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f3f4f6;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px
}

.pricing-row:first-child {
    background: #e5e7eb
}

.pricing-qty {
    font-weight: 600;
    color: #2d3748
}

.pricing-price {
    font-weight: 600;
    color: #4a5568
}

.quantity-control {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    gap: 18px;
    flex-shrink: 0
}

.quantity-loading-overlay {
    position: absolute;
    inset: 0;
    background: #ffffffd9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    z-index: 10
}

.quantity-loading-overlay .spinner-border-sm {
    width: 1.2rem;
    height: 1.2rem;
    border-width: .15em;
    color: #4a5568
}

.btn-quantity {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #4a5568;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    font-weight: 400
}

.btn-quantity:disabled {
    opacity: .3;
    cursor: not-allowed
}

.quantity-display {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    min-width: 30px;
    text-align: center
}

.delete-icon {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 18px;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
    min-width: 32px
}

.popup-footer {
    padding: 8px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    gap: 8px;
    height: 96px
}

.popup-footer .tax-note-mobile {
    display: none !important
}

.delete-icon:hover {
    color: #dc3545
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center
}

.footer-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: auto
}

.footer-middle-confirm {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%
}

.confirm-text {
    font-size: 12px;
    font-weight: 400;
    color: #475467;
    line-height: 1.5;
    margin: 0;
    text-align: center
}

.btn-confirm-remove {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 187px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: #d63832;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    box-shadow: 0 1px 2px #1018280d
}

.btn-confirm-remove i {
    font-size: 20px
}

.btn-confirm-remove:hover {
    background: #fef3f2;
    border-color: #d63832
}

.btn-cancel-remove {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: #475467;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer
}

.btn-cancel-remove:hover {
    background: #f9fafb;
    color: #344054
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 274px
}

.btn-view-cart {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 140px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 500;
    color: #d63832;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 1px 2px #1018280d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.btn-view-cart:hover {
    background: #d63832;
    color: #fafafa;
    text-decoration: none
}

.btn-remove-all-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: #475467;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer
}

.btn-remove-all-desktop i {
    font-size: 20px
}

.btn-remove-all-desktop:hover {
    background: #f9fafb;
    color: #344054
}

.btn-remove-all-desktop.loading {
    cursor: not-allowed;
    opacity: .7
}

.btn-remove-all-desktop.loading .spinner-border {
    width: 20px;
    height: 20px;
    border-width: 2px;
    color: #475467
}

.total-items-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.total-items-number {
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    line-height: 1.5
}

.total-items-label {
    font-size: 14px;
    font-weight: 400;
    color: #475467;
    line-height: 1.43
}

.product-subtotal-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px
}

.ltr .product-subtotal-box {
    text-align: right
}

.rtl .product-subtotal-box {
    text-align: left
}

.product-subtotal {
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    line-height: 1.5
}

.subtotal-label {
    font-size: 14px;
    font-weight: 400;
    color: #475467;
    line-height: 1.43
}

.tax-note {
    font-size: 10px;
    font-weight: 400;
    color: #475467;
    line-height: 1.8;
    margin-top: 0
}

.ltr .tax-note {
    text-align: right
}

.rtl .tax-note {
    text-align: left
}

.price-cell {
    font-size: 15px;
    color: var(--color-ct-blue);
    font-weight: 500
}

.total-cell {
    font-size: 18px;
    color: var(--color-ct-blue);
    font-weight: 700
}

.suggest-price-cell {
    font-size: 14px;
    color: #475467;
    font-weight: 400
}

.gross-profit-cell,
.margin-cell {
    font-size: 14px;
    color: #101828;
    font-weight: 400
}

.total-summary {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 4px
}

.table-wrapper::-webkit-scrollbar {
    width: 8px
}

.table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #a0aec0
}

.product-pricing-info {
    display: flex;
    align-items: center;
    gap: 10px
}

.product-pricing-info .special-price {
    font-weight: 600
}

.product-pricing-info .has-sale {
    color: #d63832 !important
}

.product-pricing-info .previous-price {
    color: #667085 !important;
    text-decoration: line-through !important;
    font-size: .8em
}

.text-tooltip {
    display: none
}

@media (min-width: 1440px) {
    .popup-footer {
        padding: 24px 40px
    }
}

@media (min-width: 992px) {
    .popup-footer {
        padding: 10px
    }
}

@media (max-width: 991.98px) {
    .popup-overlay {
        align-items: flex-end
    }

    .popup-modal {
        transform: translateY(100%);
        transition: transform .4s cubic-bezier(.4, 0, .2, 1)
    }

    .popup-overlay.active .popup-modal {
        transform: translateY(0)
    }

    .popup-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 12px;
        gap: 8px;
        height: auto;
        flex-shrink: 0;
        display: flex !important;
        align-items: stretch;
        box-shadow: 0 0 10px #00000040;
        background: #fff;
        z-index: 10
    }

    .popup-footer .footer-summary-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        width: 100%
    }

    .popup-footer .summary-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        justify-content: center;
        gap: 0
    }

    .popup-footer .summary-value {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.5;
        color: #101828
    }

    .popup-footer .summary-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.428571;
        color: #475467
    }

    .popup-footer .tax-note-mobile {
        display: block !important;
        width: 100%;
        text-align: center !important;
        font-size: 10px;
        font-weight: 400;
        line-height: 1.8;
        color: #475467
    }

    .popup-footer .footer-buttons-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%
    }

    .popup-footer .btn-view-cart {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: auto;
        padding: 8px 20px;
        min-height: 44px;
        background: #fff;
        border: 1px solid #d0d5dd;
        border-radius: 9999px;
        font-size: 16px;
        font-weight: 500;
        color: #d63832;
        text-decoration: none;
        transition: all .2s;
        box-shadow: 0 1px 2px #1018280d;
        white-space: normal;
        text-align: center;
        line-height: 1.2
    }

    .popup-footer .btn-view-cart:hover {
        background: #d63832;
        color: #fafafa;
        text-decoration: none
    }

    .popup-footer .btn-remove-all {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 0;
        border: none;
        border-radius: 9999px;
        background: transparent;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.428571;
        color: #475467;
        cursor: pointer;
        transition: all .2s ease
    }

    .popup-footer .btn-remove-all i {
        font-size: 20px
    }

    .popup-footer .btn-remove-all:hover {
        color: #344054
    }

    .popup-footer .footer-confirm-remove-mobile {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        padding: 12px 16px;
        background: #fff
    }

    .popup-footer .confirm-text-mobile {
        margin: 0;
        text-align: center;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.5;
        color: #344054
    }

    .popup-footer .confirm-buttons-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%
    }

    .popup-footer .btn-confirm-remove-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 10px 16px;
        border: 1px solid #d0d5dd;
        border-radius: 9999px;
        background: #fff;
        box-shadow: 0 1px 2px #1018280d, 0 4px 10px #0000001a;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.428571;
        color: #d63832;
        cursor: pointer;
        transition: all .2s ease
    }

    .popup-footer .btn-confirm-remove-mobile i {
        font-size: 20px
    }

    .popup-footer .btn-confirm-remove-mobile:hover {
        background: #f9fafb
    }

    .popup-footer .btn-cancel-remove-mobile {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        border: none;
        border-radius: 9999px;
        background: transparent;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.428571;
        color: #475467;
        cursor: pointer;
        transition: all .2s ease
    }

    .popup-footer .btn-cancel-remove-mobile:hover {
        color: #344054
    }

    .popup-footer .footer-center,
    .popup-footer .footer-middle,
    .popup-footer .footer-right {
        display: none !important
    }

    .popup-overlay {
        padding: 0
    }

    .popup-modal {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        width: 100%;
        height: 90vh;
        max-height: 90vh;
        max-width: 100%;
        border-radius: 1rem 1rem 0 0;
        overflow: hidden
    }

    .close-btn {
        top: 15px;
        width: 44px;
        height: 44px
    }

    .ltr .close-btn {
        right: 15px
    }

    .rtl .close-btn {
        left: 15px
    }

    .product-pricing-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px
    }

    .left-section {
        display: none
    }

    .content-header {
        display: flex;
        gap: 15px;
        align-items: flex-start
    }

    .mobile-product-image {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
        background: #f9fafb;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .mobile-product-image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    .mobile-product-info {
        flex: 1
    }

    .product-title {
        font-size: 16px;
        margin-bottom: 8px
    }

    .ltr .product-title {
        padding-right: 0
    }

    .rtl .product-title {
        padding-left: 0
    }

    .product-price {
        font-size: 16px;
        margin-bottom: 6px
    }

    .volume-text,
    .view-details-link {
        font-size: 10px
    }

    .right-section {
        padding: 0;
        display: flex;
        flex-direction: column;
        flex: 1;
        overflow: hidden;
        min-height: 0
    }

    .table-wrapper {
        padding: 0 0 200px;
        margin-bottom: 0;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        min-height: 0
    }

    .variations-table {
        display: block;
        table-layout: auto
    }

    .variations-table thead {
        display: block
    }

    .variations-table thead tr {
        display: flex;
        justify-content: space-between
    }

    .variations-table thead th {
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 700;
        min-width: unset;
        width: auto
    }

    .variations-table thead th:first-child {
        width: 100%;
        min-width: unset
    }

    .variations-table thead th:nth-child(2),
    .variations-table thead th:nth-child(3),
    .variations-table thead th:nth-child(4),
    .variations-table thead th:nth-child(5),
    .variations-table thead th:nth-child(6),
    .variations-table thead th:nth-child(7) {
        display: none
    }

    .variations-table tbody {
        display: block
    }

    .variations-table tbody tr {
        display: block;
        padding: 16px 8px;
        margin-bottom: 0;
        border-bottom: 1px solid #e5e7eb
    }

    .variations-table td {
        display: block;
        padding: 0
    }

    .mobile-cell {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%
    }

    .category-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px
    }

    .category-tag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 4px 6px;
        border-radius: 14.55px;
        border: .91px solid #E4E7EC;
        background: #f2f4f7;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.364;
        height: 20px;
        color: #344054
    }

    .product-row {
        display: flex;
        gap: 12px;
        width: 100%
    }

    .variation-thumb {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
        overflow: hidden;
        background: #f9fafb;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .variation-thumb img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    .product-info-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
        min-width: 0
    }

    .product-header {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: flex-start
    }

    .product-header-controls {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 4px;
        width: 111px
    }

    .btn-delete-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
        flex-shrink: 0;
        color: #344054;
        transition: color .2s ease
    }

    .btn-delete-mobile i {
        font-size: 16px
    }

    .btn-delete-mobile:hover {
        color: #d63832
    }

    .product-info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex: 1;
        min-width: 0
    }

    .product-name {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        color: #101828;
        margin: 0
    }

    .product-sku {
        font-size: 12px;
        font-weight: 400;
        line-height: 1.5;
        color: #475467
    }

    .volume-pricing {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 10px;
        font-weight: 400;
        line-height: 1.8;
        color: #667085
    }

    .volume-pricing i {
        font-size: 16px
    }

    .quantity-row-mobile {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        margin-top: 4px
    }

    .quantity-control-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 4.17px;
        width: 136px;
        height: 30px;
        background: #fff;
        border: 1.04px solid #d0d5dd;
        border-radius: 25px;
        flex-shrink: 0
    }

    .quantity-control-mobile .quantity-loading-overlay {
        border-radius: 6px
    }

    .quantity-control-mobile .btn-quantity {
        background: transparent;
        border: none;
        font-size: 16px;
        color: #4a5568;
        cursor: pointer;
        padding: 0;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .2s;
        font-weight: 400
    }

    .quantity-control-mobile .btn-quantity:disabled {
        opacity: .3;
        cursor: not-allowed
    }

    .quantity-control-mobile .quantity-display {
        font-size: 14px;
        font-weight: 500;
        color: #344054;
        min-width: 20px;
        text-align: center;
        line-height: 1.67
    }

    .price-row-mobile {
        display: flex;
        gap: 16px;
        justify-content: space-between;
        align-items: flex-start
    }

    .price-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
        flex: 1
    }

    .price-item:last-child {
        align-items: flex-start
    }

    .ltr .price-item:last-child {
        text-align: right
    }

    .rtl .price-item:last-child {
        text-align: left
    }

    .price-label {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        color: #475467
    }

    .price-value {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.43;
        color: #1e3fba
    }

    .price-value-dark {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.43;
        color: #101828
    }

    .additional-info-box {
        display: flex;
        flex-direction: row;
        justify-content: stretch;
        align-items: stretch;
        gap: 20px;
        padding: 12px;
        background: #f9fafb;
        border-radius: 12px
    }

    .info-item {
        display: flex;
        flex-direction: column;
        gap: 2px;
        flex: 1
    }

    .info-label {
        font-size: 10px;
        font-weight: 400;
        line-height: 1.8;
        color: #475467
    }

    .info-value {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        color: #101828
    }

    .info-divider-vertical {
        width: 1px;
        height: auto;
        background: #e4e7ec
    }

    .total-summary {
        width: 100%;
        justify-content: center;
        gap: 20px;
        margin-bottom: 0
    }

    .total-items-box {
        text-align: center
    }

    .total-items-number {
        font-size: 16px
    }

    .total-items-label {
        font-size: 14px
    }

    .product-subtotal-box {
        text-align: center
    }

    .product-subtotal {
        font-size: 16px;
        text-align: center
    }

    .subtotal-label {
        font-size: 14px
    }

    .tax-note {
        text-align: center;
        margin-top: 0
    }

    .text-tooltip {
        display: block;
        text-decoration: underline;
        font-size: 12px
    }

    .icon-tooltip {
        display: flex;
        align-items: center;
        gap: 6px
    }

    .icon-tooltip i {
        font-size: 18px;
        color: #6b7280
    }

    .quantity-control-mobile .quantity-input {
        font-size: 14px;
        font-weight: 500;
        color: #344054;
        min-width: 20px;
        text-align: center;
        line-height: 1.67;
        border: none;
        box-sizing: border-box;
        min-width: 2ch;
        width: auto;
        max-width: 5ch;
        padding: 0 2px
    }

    .quantity-control-mobile .quantity-input:focus {
        outline: none
    }
}

.quantity-cell .quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #e6e9ef;
    background: #fff;
    box-sizing: border-box;
    height: 30px;
    flex-shrink: 0
}

.quantity-cell .btn-quantity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0
}

.quantity-cell .btn-quantity:disabled {
    opacity: .45;
    cursor: not-allowed
}

.quantity-cell .quantity-input {
    box-sizing: border-box;
    width: 40px;
    max-width: 60px;
    min-width: 30px;
    border: none;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    -moz-appearance: textfield;
    background: #fff;
    margin: 0;
    flex-shrink: 1
}

.quantity-cell .quantity-control .quantity-input {
    width: 40px !important;
    max-width: 60px !important
}

.quantity-cell .quantity-control .quantity-input:focus {
    outline: none
}

.quantity-cell .quantity-input::-webkit-outer-spin-button,
.quantity-cell .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.quantity-cell .delete-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    height: 24px;
    width: 24px;
    min-width: 30px;
    padding: 0;
    color: inherit;
    flex-shrink: 0
}

.ltr .quantity-cell .delete-icon {
    margin-left: 4px
}

.rtl .quantity-cell .delete-icon {
    margin-right: 4px
}

.quantity-cell .quantity-control.pill-input .quantity-input {
    border: none;
    background: transparent;
    width: 64px
}

@media (max-width: 480px) {
    .quantity-cell .quantity-control {
        height: 40px;
        gap: 8px;
        padding: 6px 8px
    }

    .quantity-cell .quantity-input {
        width: 64px;
        max-width: 90px
    }

    .quantity-cell .btn-quantity {
        width: 32px;
        height: 28px;
        font-size: 16px
    }
}

@media screen and (max-height: 850px) and (min-width: 992px) {
    .popup-modal {
        max-height: 80vh !important;
        max-width: 85vw !important
    }
}

.checkout-btn {
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 8px
}

.checkout-btn:hover {
    background: #c82333
}

.custom-modal .modal-dialog {
    max-width: 548px;
    width: 548px;
    margin: 30px auto
}

.custom-modal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px #00000026;
    overflow: hidden
}

.modal-header {
    border: none;
    padding: 40px 0 0;
    position: relative;
    display: flex;
    justify-content: center
}

.modal-dialog-centered-notify {
    display: flex;
    align-items: center;
    min-height: calc(99% - var(--bs-modal-margin) * 2)
}

.close-btn {
    position: absolute;
    top: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #666;
    z-index: 10
}

.ltr .close-btn {
    right: 20px
}

.rtl .close-btn {
    left: 20px
}

.close-btn:hover {
    background: #f5f5f5
}

.alert-icon {
    width: 64px;
    height: 64px;
    background: #ffe6e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px
}

.alert-icon svg {
    width: 32px;
    height: 32px;
    fill: #dc3545
}

.modal-body {
    padding: 0 24px 24px;
    text-align: center
}

.modal-title-custom {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px
}

.modal-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px
}

.modal-text strong {
    color: #475467;
    font-weight: 600
}

.modal-buttons {
    display: flex;
    gap: 12px
}

.btn-cancel {
    flex: 1;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
    border-radius: 50px
}

.btn-cancel:hover {
    background: #f5f5f5;
    color: #1a1a1a
}

.btn-continue {
    flex: 1;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    background: #dc3545;
    color: #fff;
    border: 2px solid #D92D20;
    border-radius: 50px
}

.btn-continue:hover {
    background: #c82333;
    color: #fff
}

.new-arrivals-section {
    background: #f8f9fa;
    padding: 40px 60px;
    margin: -60px -40px
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px
}

.ltr .section-title {
    text-align: left
}

.rtl .section-title {
    text-align: right
}

.volume-text {
    font-size: 12px;
    color: #999
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4a5568;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: #fff;
    font-size: 20px;
    z-index: 5
}

.ltr .carousel-nav {
    right: 0
}

.rtl .carousel-nav {
    left: 0
}

.carousel-nav:hover {
    background: #2d3748
}

@media (max-width: 1200px) {
    .custom-modal .modal-dialog {
        max-width: 80%;
        width: 80%
    }

    .custom-modal .modal-content {
        height: 90vh
    }
}

@media (max-width: 768px) {
    .custom-modal.modal.show {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 12px
    }

    .modal {
        padding: 0 !important
    }

    .custom-modal .modal-dialog {
        width: 90%;
        max-width: 420px;
        margin: 0 auto
    }

    .custom-modal .modal-content {
        max-height: 92vh;
        height: auto;
        display: flex;
        flex-direction: column;
        border-radius: 1rem;
        overflow: hidden
    }

    .custom-modal .modal-header {
        padding-top: 14px
    }

    .custom-modal .close-btn {
        top: 12px;
        width: 32px;
        height: 32px;
        font-size: 16px
    }

    .ltr .custom-modal .close-btn {
        right: 12px
    }

    .rtl .custom-modal .close-btn {
        left: 12px
    }

    .custom-modal .alert-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 12px
    }

    .custom-modal .modal-body {
        padding: 0 16px 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        overflow: hidden
    }

    .custom-modal .modal-title-custom {
        font-size: 16px;
        line-height: 1.25;
        margin-bottom: 8px
    }

    .custom-modal .modal-text {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 16px
    }

    .custom-modal .modal-buttons {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
        margin-bottom: 1rem
    }

    .custom-modal .btn-cancel,
    .custom-modal .btn-continue {
        width: 100%;
        padding: 10px 12px;
        border-radius: 999px
    }

    .custom-modal .popup-product-arrivals {
        margin: -16px;
        padding: 12px 16px 16px;
        border-top: 1px solid #eee;
        background: #fff;
        border-radius: 0 0 1rem 1rem;
        --arrivals-scale: .9;
        transform: scale(var(--arrivals-scale));
        transform-origin: top center;
        width: calc(100% / var(--arrivals-scale));
        overflow: hidden
    }

    .custom-modal .popup-product-arrivals .row {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .custom-modal .popup-product-arrivals [class*=col-] {
        padding-left: 6px !important;
        padding-right: 6px !important
    }

    .custom-modal .popup-product-arrivals .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important
    }

    .custom-modal .popup-product-arrivals .product-card {
        padding: 10px !important;
        border-radius: 10px
    }

    .custom-modal .popup-product-arrivals .product-card__media img {
        width: 100%;
        height: 120px;
        -o-object-fit: cover;
        object-fit: cover;
        display: block
    }

    .custom-modal .popup-product-arrivals .product-card__name {
        font-size: 12px;
        line-height: 1.35;
        margin: 6px 0 4px
    }

    .custom-modal .popup-product-arrivals .product-card__pricing .product-card__price {
        font-size: 14px !important
    }

    .custom-modal .popup-product-arrivals .product-card__price-note {
        font-size: 10px !important
    }

    .custom-modal .popup-product-arrivals .product-card__cta .product-card__cta-btn {
        width: 100%;
        justify-content: center;
        gap: 6px;
        padding: 6px 8px
    }

    .custom-modal .popup-product-arrivals .product-card__note {
        font-size: 10px;
        margin-top: 4px
    }

    .popup-product-arrivals .landscape-tab-products-wrap {
        margin: 0
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 12px
    }

    .volume-text {
        font-size: 11px
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px
    }
}

.tab-content .swiper {
    padding-bottom: 50px;
    margin-bottom: -50px;
    padding-top: 20px
}

@media screen and (max-width: 767px) {
    .tab-content .swiper {
        padding-top: 10px
    }

    .box-brand-logo {
        width: 60px;
        height: 60px
    }

    .box-brand-logo img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain
    }
}

.guide-icon-tooltip {
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0
}

.guide-icon-tooltip:hover {
    opacity: .7
}

.product-tooltip-global .tooltip-content {
    width: -moz-fit-content;
    width: fit-content;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px #00000026;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, .06);
    position: relative
}

.product-tooltip-global .tooltip-content .tooltip-header {
    font-size: 12px;
    color: #374151;
    line-height: 1.25;
    margin-bottom: 4px
}

.product-tooltip-global .tooltip-content .tooltip-pricing {
    border-top: 1px solid #eee;
    padding-top: 4px;
    margin-top: 4px
}

.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px;
    border-radius: 3px
}

.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row.highlighted {
    background-color: #e5e7eb
}

.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .quantity,
.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .price {
    font-size: 12px;
    color: #374151;
    line-height: 1.25
}

.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .quantity {
    min-width: 28px
}

.ltr .product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .quantity {
    padding-right: 10px
}

.rtl .product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .quantity {
    padding-left: 10px
}

.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .price {
    white-space: nowrap
}

.product-tooltip-global .tooltip-content--variants {
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap
}

.product-tooltip-global .tooltip-arrow {
    position: absolute;
    width: 14px;
    height: 8px
}

.ltr .product-tooltip-global .tooltip-arrow {
    left: 50%;
    transform: translate(-50%)
}

.rtl .product-tooltip-global .tooltip-arrow {
    right: 50%;
    transform: translate(50%)
}

.product-tooltip-global .tooltip-arrow svg {
    width: 14px;
    height: 8px;
    display: block
}

.product-tooltip-global[data-arrow-position=bottom] .tooltip-arrow {
    bottom: -8px
}

.product-tooltip-global[data-arrow-position=bottom] .tooltip-arrow svg {
    transform: rotate(0)
}

.product-tooltip-global[data-arrow-position=top] .tooltip-arrow {
    top: -8px
}

.ltr .product-tooltip-global[data-arrow-position=top] .tooltip-arrow svg {
    transform: rotate(180deg)
}

.rtl .product-tooltip-global[data-arrow-position=top] .tooltip-arrow svg {
    transform: rotate(-180deg)
}

.is-new-category {
    background-color: var(--color-primary)
}

.fs-14 {
    font-size: 14px !important
}

.fs-15 {
    font-size: 15px
}

@charset "UTF-8";.flatpickr-calendar {
    background: transparent;
    opacity: 0;
    display: none;
    text-align: center;
    visibility: hidden;
    padding: 0;
    animation: none;
    direction: ltr;
    border: 0;
    font-size: 14px;
    line-height: 24px;
    border-radius: 5px;
    position: absolute;
    width: 307.875px;
    box-sizing: border-box;
    touch-action: manipulation;
    background: #fff;
    box-shadow: 1px 0 #e6e6e6,-1px 0 #e6e6e6,0 1px #e6e6e6,0 -1px #e6e6e6,0 3px 13px #00000014
}

.flatpickr-calendar.open,.flatpickr-calendar.inline {
    opacity: 1;
    max-height: 640px;
    visibility: visible
}

.flatpickr-calendar.open {
    display: inline-block;
    z-index: 99999
}

.flatpickr-calendar.animate.open {
    animation: fpFadeInDown .3s cubic-bezier(.23,1,.32,1)
}

.flatpickr-calendar.inline {
    display: block;
    position: relative;
    top: 2px
}

.flatpickr-calendar.static {
    position: absolute;
    top: calc(100% + 2px)
}

.flatpickr-calendar.static.open {
    z-index: 999;
    display: block
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
    box-shadow: none!important
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
    box-shadow: -2px 0 #e6e6e6,5px 0 #e6e6e6
}

.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.flatpickr-calendar .hasWeeks .dayContainer {
    border-left: 0
}

.flatpickr-calendar.hasTime .flatpickr-time {
    height: 40px;
    border-top: 1px solid #e6e6e6
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
    height: auto
}

.flatpickr-calendar:before,.flatpickr-calendar:after {
    position: absolute;
    display: block;
    pointer-events: none;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    left: 22px
}

.flatpickr-calendar.rightMost:before,.flatpickr-calendar.arrowRight:before,.flatpickr-calendar.rightMost:after,.flatpickr-calendar.arrowRight:after {
    left: auto;
    right: 22px
}

.flatpickr-calendar.arrowCenter:before,.flatpickr-calendar.arrowCenter:after {
    left: 50%;
    right: 50%
}

.flatpickr-calendar:before {
    border-width: 5px;
    margin: 0 -5px
}

.flatpickr-calendar:after {
    border-width: 4px;
    margin: 0 -4px
}

.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after {
    bottom: 100%
}

.flatpickr-calendar.arrowTop:before {
    border-bottom-color: #e6e6e6
}

.flatpickr-calendar.arrowTop:after {
    border-bottom-color: #fff
}

.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after {
    top: 100%
}

.flatpickr-calendar.arrowBottom:before {
    border-top-color: #e6e6e6
}

.flatpickr-calendar.arrowBottom:after {
    border-top-color: #fff
}

.flatpickr-calendar:focus {
    outline: 0
}

.flatpickr-wrapper {
    position: relative;
    display: inline-block
}

.flatpickr-months {
    display: flex
}

.flatpickr-months .flatpickr-month {
    background: transparent;
    color: #000000e6;
    fill: #000000e6;
    height: 34px;
    line-height: 1;
    text-align: center;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    overflow: hidden;
    flex: 1
}

.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    height: 34px;
    padding: 10px;
    z-index: 3;
    color: #000000e6;
    fill: #000000e6
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
    display: none
}

.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i {
    position: relative
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
    left: 0
}

.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
    right: 0
}

.flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover {
    color: #959ea9
}

.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg {
    fill: #f64747
}

.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg {
    width: 14px;
    height: 14px
}

.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path {
    transition: fill .1s;
    fill: inherit
}

.numInputWrapper {
    position: relative;
    height: auto
}

.numInputWrapper input,.numInputWrapper span {
    display: inline-block
}

.numInputWrapper input {
    width: 100%
}

.numInputWrapper input::-ms-clear {
    display: none
}

.numInputWrapper input::-webkit-outer-spin-button,.numInputWrapper input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none
}

.numInputWrapper span {
    position: absolute;
    right: 0;
    width: 14px;
    padding: 0 4px 0 2px;
    height: 50%;
    line-height: 50%;
    opacity: 0;
    cursor: pointer;
    border: 1px solid rgba(57,57,57,.15);
    box-sizing: border-box
}

.numInputWrapper span:hover {
    background: #0000001a
}

.numInputWrapper span:active {
    background: #0003
}

.numInputWrapper span:after {
    display: block;
    content: "";
    position: absolute
}

.numInputWrapper span.arrowUp {
    top: 0;
    border-bottom: 0
}

.numInputWrapper span.arrowUp:after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(57,57,57,.6);
    top: 26%
}

.numInputWrapper span.arrowDown {
    top: 50%
}

.numInputWrapper span.arrowDown:after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(57,57,57,.6);
    top: 40%
}

.numInputWrapper span svg {
    width: inherit;
    height: auto
}

.numInputWrapper span svg path {
    fill: #00000080
}

.numInputWrapper:hover {
    background: #0000000d
}

.numInputWrapper:hover span {
    opacity: 1
}

.flatpickr-current-month {
    font-size: 135%;
    line-height: inherit;
    font-weight: 300;
    color: inherit;
    position: absolute;
    width: 75%;
    left: 12.5%;
    padding: 7.48px 0 0;
    line-height: 1;
    height: 34px;
    display: inline-block;
    text-align: center;
    transform: translateZ(0)
}

.flatpickr-current-month span.cur-month {
    font-family: inherit;
    font-weight: 700;
    color: inherit;
    display: inline-block;
    margin-left: .5ch;
    padding: 0
}

.flatpickr-current-month span.cur-month:hover {
    background: #0000000d
}

.flatpickr-current-month .numInputWrapper {
    width: 6ch;
    width: 7ch�;
    display: inline-block
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: #000000e6
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: #000000e6
}

.flatpickr-current-month input.cur-year {
    background: transparent;
    box-sizing: border-box;
    color: inherit;
    cursor: text;
    padding: 0 0 0 .5ch;
    margin: 0;
    display: inline-block;
    font-size: inherit;
    font-family: inherit;
    font-weight: 300;
    line-height: inherit;
    height: auto;
    border: 0;
    border-radius: 0;
    vertical-align: initial;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

.flatpickr-current-month input.cur-year:focus {
    outline: 0
}

.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover {
    font-size: 100%;
    color: #00000080;
    background: transparent;
    pointer-events: none
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    appearance: menulist;
    background: transparent;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    color: inherit;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    font-weight: 300;
    height: auto;
    line-height: inherit;
    margin: -1px 0 0;
    outline: none;
    padding: 0 0 0 .5ch;
    position: relative;
    vertical-align: initial;
    -webkit-box-sizing: border-box;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    width: auto
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month .flatpickr-monthDropdown-months:active {
    outline: none
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: #0000000d
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    background-color: transparent;
    outline: none;
    padding: 0
}

.flatpickr-weekdays {
    background: transparent;
    text-align: center;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    height: 28px
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
    display: flex;
    flex: 1
}

span.flatpickr-weekday {
    cursor: default;
    font-size: 90%;
    background: transparent;
    color: #0000008a;
    line-height: 1;
    margin: 0;
    text-align: center;
    display: block;
    flex: 1;
    font-weight: bolder
}

.dayContainer,.flatpickr-weeks {
    padding: 1px 0 0
}

.flatpickr-days {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    width: 307.875px
}

.flatpickr-days:focus {
    outline: 0
}

.dayContainer {
    padding: 0;
    outline: 0;
    text-align: left;
    width: 307.875px;
    min-width: 307.875px;
    max-width: 307.875px;
    box-sizing: border-box;
    display: inline-block;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    justify-content: space-around;
    transform: translateZ(0);
    opacity: 1
}

.dayContainer+.dayContainer {
    box-shadow: -1px 0 #e6e6e6
}

.flatpickr-day {
    background: none;
    border: 1px solid transparent;
    border-radius: 150px;
    box-sizing: border-box;
    color: #393939;
    cursor: pointer;
    font-weight: 400;
    width: 14.2857143%;
    flex-basis: 14.2857143%;
    max-width: 39px;
    height: 39px;
    line-height: 39px;
    margin: 0;
    display: inline-block;
    position: relative;
    justify-content: center;
    text-align: center
}

.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus {
    cursor: pointer;
    outline: 0;
    background: #e6e6e6;
    border-color: #e6e6e6
}

.flatpickr-day.today {
    border-color: #959ea9
}

.flatpickr-day.today:hover,.flatpickr-day.today:focus {
    border-color: #959ea9;
    background: #959ea9;
    color: #fff
}

.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay {
    background: #569ff7;
    box-shadow: none;
    color: #fff;
    border-color: #569ff7
}

.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange {
    border-radius: 50px 0 0 50px
}

.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange {
    border-radius: 0 50px 50px 0
}

.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)) {
    box-shadow: -10px 0 #569ff7
}

.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange {
    border-radius: 50px
}

.flatpickr-day.inRange {
    border-radius: 0;
    box-shadow: -5px 0 #e6e6e6,5px 0 #e6e6e6
}

.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay {
    color: #3939394d;
    background: transparent;
    border-color: transparent;
    cursor: default
}

.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover {
    cursor: not-allowed;
    color: #3939391a
}

.flatpickr-day.week.selected {
    border-radius: 0;
    box-shadow: -5px 0 #569ff7,5px 0 #569ff7
}

.flatpickr-day.hidden {
    visibility: hidden
}

.rangeMode .flatpickr-day {
    margin-top: 1px
}

.flatpickr-weekwrapper {
    float: left
}

.flatpickr-weekwrapper .flatpickr-weeks {
    padding: 0 12px;
    box-shadow: 1px 0 #e6e6e6
}

.flatpickr-weekwrapper .flatpickr-weekday {
    float: none;
    width: 100%;
    line-height: 28px
}

.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover {
    display: block;
    width: 100%;
    max-width: none;
    color: #3939394d;
    background: transparent;
    cursor: default;
    border: none
}

.flatpickr-innerContainer {
    display: block;
    display: flex;
    box-sizing: border-box;
    overflow: hidden
}

.flatpickr-rContainer {
    display: inline-block;
    padding: 0;
    box-sizing: border-box
}

.flatpickr-time {
    text-align: center;
    outline: 0;
    display: block;
    height: 0;
    line-height: 40px;
    max-height: 40px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex
}

.flatpickr-time:after {
    content: "";
    display: table;
    clear: both
}

.flatpickr-time .numInputWrapper {
    flex: 1;
    width: 40%;
    height: 40px;
    float: left
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
    border-bottom-color: #393939
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
    border-top-color: #393939
}

.flatpickr-time.hasSeconds .numInputWrapper {
    width: 26%
}

.flatpickr-time.time24hr .numInputWrapper {
    width: 49%
}

.flatpickr-time input {
    background: transparent;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    text-align: center;
    margin: 0;
    padding: 0;
    height: inherit;
    line-height: inherit;
    color: #393939;
    font-size: 14px;
    position: relative;
    box-sizing: border-box;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

.flatpickr-time input.flatpickr-hour {
    font-weight: 700
}

.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second {
    font-weight: 400
}

.flatpickr-time input:focus {
    outline: 0;
    border: 0
}

.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm {
    height: inherit;
    float: left;
    line-height: inherit;
    color: #393939;
    font-weight: 700;
    width: 2%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    align-self: center
}

.flatpickr-time .flatpickr-am-pm {
    outline: 0;
    width: 18%;
    cursor: pointer;
    text-align: center;
    font-weight: 400
}

.flatpickr-time input:hover,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time .flatpickr-am-pm:focus {
    background: #eee
}

.flatpickr-input[readonly] {
    cursor: pointer
}

@keyframes fpFadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.glightbox-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999!important;
    overflow: hidden;
    touch-action: none;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    backface-visibility: hidden;
    outline: none
}

.glightbox-container.inactive {
    display: none
}

.glightbox-container .gcontainer {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden
}

.glightbox-container .gslider {
    transition: transform .4s ease;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex!important;
    justify-content: center;
    align-items: center;
    transform: translateZ(0)
}

.glightbox-container .gslide {
    width: 100%;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0
}

.glightbox-container .gslide.current {
    opacity: 1;
    z-index: 99999;
    position: relative
}

.glightbox-container .gslide.prev {
    opacity: 1;
    z-index: 9999
}

.glightbox-container .gslide-inner-content {
    width: 100%
}

.glightbox-container .ginner-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    margin: auto;
    height: 100vh
}

.glightbox-container .ginner-container.gvideo-container {
    width: 100%
}

.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top {
    flex-direction: column
}

.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right {
    max-width: 100%!important
}

.gslide iframe,.gslide video {
    outline: none!important;
    border: none;
    min-height: 165px;
    -webkit-overflow-scrolling: touch;
    touch-action: auto
}

.gslide:not(.current) {
    pointer-events: none
}

.gslide-image {
    align-items: center
}

.gslide-image img {
    max-height: 100vh;
    display: block;
    padding: 0;
    float: none;
    outline: none;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    max-width: 100vw;
    width: auto;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    touch-action: none;
    margin: auto;
    min-width: 200px
}

.desc-top .gslide-image img,.desc-bottom .gslide-image img {
    width: auto
}

.desc-left .gslide-image img,.desc-right .gslide-image img {
    width: auto;
    max-width: 100%
}

.gslide-image img.zoomable {
    position: relative
}

.gslide-image img.dragging {
    cursor: grabbing!important;
    transition: none
}

.gslide-video {
    position: relative;
    max-width: 100vh;
    width: 100%!important
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
    display: none
}

.gslide-video .gvideo-wrapper {
    width: 100%;
    margin: auto
}

.gslide-video:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff000057;
    display: none
}

.gslide-video.playing:before {
    display: none
}

.gslide-video.fullscreen {
    max-width: 100%!important;
    min-width: 100%;
    height: 75vh
}

.gslide-video.fullscreen video {
    max-width: 100%!important;
    width: 100%!important
}

.gslide-inline {
    background: #fff;
    text-align: left;
    max-height: calc(100vh - 40px);
    overflow: auto;
    max-width: 100%;
    margin: auto
}

.gslide-inline .ginlined-content {
    padding: 20px;
    width: 100%
}

.gslide-inline .dragging {
    cursor: grabbing!important;
    transition: none
}

.ginlined-content {
    overflow: auto;
    display: block!important;
    opacity: 1
}

.gslide-external {
    display: flex;
    width: 100%;
    min-width: 100%;
    background: #fff;
    padding: 0;
    overflow: auto;
    max-height: 75vh;
    height: 100%
}

.gslide-media {
    display: flex;
    width: auto
}

.zoomed .gslide-media {
    box-shadow: none!important
}

.desc-top .gslide-media,.desc-bottom .gslide-media {
    margin: 0 auto;
    flex-direction: column
}

.gslide-description {
    position: relative;
    flex: 1 0 100%
}

.gslide-description.description-left,.gslide-description.description-right {
    max-width: 100%
}

.gslide-description.description-bottom,.gslide-description.description-top {
    margin: 0 auto;
    width: 100%
}

.gslide-description p {
    margin-bottom: 12px
}

.gslide-description p:last-child {
    margin-bottom: 0
}

.zoomed .gslide-description,.glightbox-button-hidden {
    display: none
}

.glightbox-mobile .glightbox-container .gslide-description {
    height: auto!important;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 19px 11px 50px;
    max-width: 100vw!important;
    order: 2!important;
    max-height: 78vh;
    overflow: auto!important;
    background: linear-gradient(to bottom,#0000,#000000bf);
    transition: opacity .3s linear
}

.glightbox-mobile .glightbox-container .gslide-title {
    color: #fff;
    font-size: 1em
}

.glightbox-mobile .glightbox-container .gslide-desc {
    color: #a1a1a1
}

.glightbox-mobile .glightbox-container .gslide-desc a {
    color: #fff;
    font-weight: 700
}

.glightbox-mobile .glightbox-container .gslide-desc * {
    color: inherit
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
    color: #fff;
    opacity: .4
}

.gdesc-open .gslide-media {
    transition: opacity .5s ease;
    opacity: .4
}

.gdesc-open .gdesc-inner {
    padding-bottom: 30px
}

.gdesc-closed .gslide-media {
    transition: opacity .5s ease;
    opacity: 1
}

.greset {
    transition: all .3s ease
}

.gabsolute {
    position: absolute
}

.grelative {
    position: relative
}

.glightbox-desc {
    display: none!important
}

.glightbox-open {
    overflow: hidden
}

.gloader {
    height: 25px;
    width: 25px;
    animation: lightboxLoader .8s infinite linear;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    position: absolute;
    display: block;
    z-index: 9999;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 47%
}

.goverlay {
    width: 100%;
    height: calc(100vh + 1px);
    position: fixed;
    top: -1px;
    left: 0;
    background: #000;
    will-change: opacity
}

.glightbox-mobile .goverlay {
    background: #000
}

.gprev,.gnext,.gclose {
    z-index: 99999;
    cursor: pointer;
    width: 26px;
    height: 44px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.gprev svg,.gnext svg,.gclose svg {
    display: block;
    width: 25px;
    height: auto;
    margin: 0;
    padding: 0
}

.gprev.disabled,.gnext.disabled,.gclose.disabled {
    opacity: .1
}

.gprev .garrow,.gnext .garrow,.gclose .garrow {
    stroke: #fff
}

.gbtn.focused {
    outline: 2px solid #0f3d81
}

iframe.wait-autoplay {
    opacity: 0
}

.glightbox-closing .gnext,.glightbox-closing .gprev,.glightbox-closing .gclose {
    opacity: 0!important
}

.glightbox-clean .gslide-description {
    background: #fff
}

.glightbox-clean .gdesc-inner {
    padding: 22px 20px
}

.glightbox-clean .gslide-title {
    font-size: 1em;
    font-weight: 400;
    font-family: arial;
    color: #000;
    margin-bottom: 19px;
    line-height: 1.4em
}

.glightbox-clean .gslide-desc {
    font-size: .86em;
    margin-bottom: 0;
    font-family: arial;
    line-height: 1.4em
}

.glightbox-clean .gslide-video {
    background: #000
}

.glightbox-clean .gprev,.glightbox-clean .gnext,.glightbox-clean .gclose {
    background-color: #000000bf;
    border-radius: 4px
}

.glightbox-clean .gprev path,.glightbox-clean .gnext path,.glightbox-clean .gclose path {
    fill: #fff
}

.glightbox-clean .gprev {
    position: absolute;
    top: -100%;
    left: 30px;
    width: 40px;
    height: 50px
}

.glightbox-clean .gnext {
    position: absolute;
    top: -100%;
    right: 30px;
    width: 40px;
    height: 50px
}

.glightbox-clean .gclose {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 10px;
    position: absolute
}

.glightbox-clean .gclose svg {
    width: 18px;
    height: auto
}

.glightbox-clean .gclose:hover {
    opacity: 1
}

.gfadeIn {
    animation: gfadeIn .5s ease
}

.gfadeOut {
    animation: gfadeOut .5s ease
}

.gslideOutLeft {
    animation: gslideOutLeft .3s ease
}

.gslideInLeft {
    animation: gslideInLeft .3s ease
}

.gslideOutRight {
    animation: gslideOutRight .3s ease
}

.gslideInRight {
    animation: gslideInRight .3s ease
}

.gzoomIn {
    animation: gzoomIn .5s ease
}

.gzoomOut {
    animation: gzoomOut .5s ease
}

@keyframes lightboxLoader {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes gfadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes gfadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes gslideInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-60%,0,0)
    }

    to {
        visibility: visible;
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes gslideOutLeft {
    0% {
        opacity: 1;
        visibility: visible;
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-60%,0,0);
        opacity: 0;
        visibility: hidden
    }
}

@keyframes gslideInRight {
    0% {
        opacity: 0;
        visibility: visible;
        transform: translate3d(60%,0,0)
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes gslideOutRight {
    0% {
        opacity: 1;
        visibility: visible;
        transform: translateZ(0)
    }

    to {
        transform: translate3d(60%,0,0);
        opacity: 0
    }
}

@keyframes gzoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 1
    }
}

@keyframes gzoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

@media (min-width: 769px) {
    .glightbox-container .ginner-container {
        width:auto;
        height: auto;
        flex-direction: row
    }

    .glightbox-container .ginner-container.desc-top .gslide-description {
        order: 0
    }

    .glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img {
        order: 1
    }

    .glightbox-container .ginner-container.desc-left .gslide-description {
        order: 0
    }

    .glightbox-container .ginner-container.desc-left .gslide-image {
        order: 1
    }

    .gslide-image img {
        max-height: 97vh;
        max-width: 100%
    }

    .gslide-image img.zoomable {
        cursor: zoom-in
    }

    .zoomed .gslide-image img.zoomable {
        cursor: grab
    }

    .gslide-inline {
        max-height: 95vh
    }

    .gslide-external {
        max-height: 100vh
    }

    .gslide-description.description-left,.gslide-description.description-right {
        max-width: 275px
    }

    .glightbox-open {
        height: auto
    }

    .goverlay {
        background: #000000eb
    }

    .glightbox-clean .gslide-media {
        box-shadow: 1px 2px 9px #000000a6
    }

    .glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner {
        position: absolute;
        height: 100%;
        overflow-y: auto
    }

    .glightbox-clean .gprev,.glightbox-clean .gnext,.glightbox-clean .gclose {
        background-color: #00000052
    }

    .glightbox-clean .gprev:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gclose:hover {
        background-color: #000000b3
    }

    .glightbox-clean .gprev,.glightbox-clean .gnext {
        top: 45%
    }
}

@media (min-width: 992px) {
    .glightbox-clean .gclose {
        opacity:.7;
        right: 20px
    }
}

@media screen and (max-height: 420px) {
    .goverlay {
        background:#000
    }
}

@keyframes drift-fadeZoomIn {
    0% {
        transform: scale(1.5);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes drift-fadeZoomOut {
    0% {
        transform: scale(1);
        opacity: 1
    }

    15% {
        transform: scale(1.1);
        opacity: 1
    }

    to {
        transform: scale(.5);
        opacity: 0
    }
}

@keyframes drift-loader-rotate {
    0% {
        transform: translate(-50%,-50%) rotate(0)
    }

    50% {
        transform: translate(-50%,-50%) rotate(-180deg)
    }

    to {
        transform: translate(-50%,-50%) rotate(-360deg)
    }
}

@keyframes drift-loader-before {
    0% {
        transform: scale(1)
    }

    10% {
        transform: scale(1.2) translate(6px)
    }

    25% {
        transform: scale(1.3) translate(8px)
    }

    40% {
        transform: scale(1.2) translate(6px)
    }

    50% {
        transform: scale(1)
    }

    60% {
        transform: scale(.8) translate(6px)
    }

    75% {
        transform: scale(.7) translate(8px)
    }

    90% {
        transform: scale(.8) translate(6px)
    }

    to {
        transform: scale(1)
    }
}

@keyframes drift-loader-after {
    0% {
        transform: scale(1)
    }

    10% {
        transform: scale(1.2) translate(-6px)
    }

    25% {
        transform: scale(1.3) translate(-8px)
    }

    40% {
        transform: scale(1.2) translate(-6px)
    }

    50% {
        transform: scale(1)
    }

    60% {
        transform: scale(.8) translate(-6px)
    }

    75% {
        transform: scale(.7) translate(-8px)
    }

    90% {
        transform: scale(.8) translate(-6px)
    }

    to {
        transform: scale(1)
    }
}

.drift-zoom-pane {
    background: #00000080;
    transform: translateZ(0);
    -webkit-transform: translate3d(0,0,0)
}

.drift-zoom-pane.drift-opening {
    animation: drift-fadeZoomIn .18s ease-out;
    -webkit-animation: drift-fadeZoomIn .18s ease-out
}

.drift-zoom-pane.drift-closing {
    animation: drift-fadeZoomOut .21s ease-in;
    -webkit-animation: drift-fadeZoomOut .21s ease-in
}

.drift-zoom-pane.drift-inline {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 75px;
    box-shadow: 0 6px 18px #0000004d
}

.drift-loading .drift-zoom-pane-loader {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    width: 66px;
    height: 20px;
    animation: drift-loader-rotate 1.8s infinite linear;
    -webkit-animation: drift-loader-rotate 1.8s infinite linear
}

.drift-zoom-pane-loader:before,.drift-zoom-pane-loader:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    border-radius: 20px;
    background: #ffffffe6
}

.drift-zoom-pane-loader:before {
    left: 0;
    animation: drift-loader-before 1.8s infinite linear;
    -webkit-animation: drift-loader-before 1.8s infinite linear
}

.drift-zoom-pane-loader:after {
    right: 0;
    animation: drift-loader-after 1.8s infinite linear;
    -webkit-animation: drift-loader-after 1.8s infinite linear;
    animation-delay: -.9s;
    -webkit-animation-delay: -.9s
}

.drift-bounding-box {
    background-color: #0006
}

.drift-bounding-box {
    background: var(--color-primary-alpha-30);
    z-index: 7
}

.drift-zoom-pane {
    background: var(--color-white);
    border-radius: var(--radius-default);
    box-shadow: 0 0 3px #00000026;
    z-index: 7
}

.ltr .drift-zoom-pane {
    left: 100%
}

.rtl .drift-zoom-pane {
    right: 100%
}

.drift-zoom-pane-loader:before,.drift-zoom-pane-loader:after {
    background: var(--color-primary)
}

.rtl .drift-zoom-pane.mobile-drift-zoom-pane {
    right: auto
}

.rtl .drift-zoom-pane img {
    left: 0
}

.custom-page-content h1,.custom-page-content h2,.custom-page-content h3,.custom-page-content h4,.custom-page-content h5,.custom-page-content h6 {
    margin-bottom: 14px
}

.custom-page-content p {
    line-height: 24px;
    color: var(--color-gray)
}

.custom-page-content ul,.custom-page-content ol {
    overflow: hidden
}

.ltr .custom-page-content ul,.ltr .custom-page-content ol {
    padding-left: 16px
}

.rtl .custom-page-content ul,.rtl .custom-page-content ol {
    padding-right: 16px
}

.custom-page-content ul li,.custom-page-content ol li {
    margin-bottom: 9px;
    color: var(--color-gray)
}

.custom-page-content b,.custom-page-content strong,.custom-page-content em {
    font-weight: var(--font-medium)
}

.custom-page-content a {
    color: var(--color-primary)
}

.custom-page-content a:hover {
    color: var(--color-primary-hover)
}

.custom-page-content img {
    height: auto;
    max-width: 100%;
    max-height: 100%
}

.custom-page-content iframe {
    border: none;
    max-width: 100%
}

.custom-page-content table {
    border: 1px solid var(--color-gray-lite);
    max-width: 100%
}

.custom-page-content th {
    font-weight: var(--font-medium);
    padding: 12px 15px;
    border-bottom: 1px solid var(--color-gray-lite)
}

.ltr .custom-page-content th {
    border-right: 1px solid var(--color-gray-lite)
}

.rtl .custom-page-content th {
    border-left: 1px solid var(--color-gray-lite)
}

.custom-page-content td {
    padding: 12px 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--color-gray-lite)
}

.ltr .custom-page-content td {
    border-right: 1px solid var(--color-gray-lite)
}

.rtl .custom-page-content td {
    border-left: 1px solid var(--color-gray-lite)
}

.custom-page-wrap,.description {
    padding-top: 46px
}

@media screen and (max-width: 991px) {
    .description {
        padding-top:25px
    }
}

@media screen and (max-width: 767px) {
    .custom-page-content img {
        width:100%
    }
}

.product-details-top {
    margin-bottom: 20px
}

.product-details-top>div {
    position: relative
}

.product-details-top .right-sidebar {
    width: 285px;
    min-width: 285px
}

.ltr .product-details-top .right-sidebar {
    padding-left: 15px
}

.rtl .product-details-top .right-sidebar {
    padding-right: 15px
}

.product-details-top .right-sidebar .feature-list {
    flex-direction: column;
    margin-top: 0
}

.product-details-top .right-sidebar .feature-list .single-feature {
    margin-bottom: 20px;
    justify-content: flex-start
}

.product-details-top .right-sidebar .feature-list .single-feature:last-child {
    margin-bottom: 0
}

@media screen and (max-width: 1350px) {
    .product-details-top .right-sidebar {
        display:none
    }
}

@media screen and (max-width: 991px) {
    .product-details-top {
        margin-bottom:20px
    }

    .product-details-top>div {
        position: unset
    }
}

.product-gallery {
    width: 60%;
    top: 0;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 15px;
    align-items: stretch
}

.ltr .product-gallery {
    padding-right: 0
}

.rtl .product-gallery {
    padding-left: 0
}

.product-gallery .drift-zoom-pane {
    top: 1px;
    height: 500px;
    width: 67%;
    border-radius: unset
}

.ltr .product-gallery .drift-zoom-pane {
    left: 23%
}

.rtl .product-gallery .drift-zoom-pane {
    right: 23%
}

@media (max-width: 1160px) {
    .product-gallery .drift-zoom-pane {
        display:none
    }
}

.product-gallery .drift-zoom-pane.drift-opening,.product-gallery .drift-zoom-pane.drift-closing {
    animation: noop 1ms
}

.product-gallery-preview-wrap {
    flex: 1;
    border: 1px solid var(--color-gray-lite);
    border-radius: var(--radius-default)
}

.product-gallery-preview-wrap.visible-variation-image .product-gallery-preview {
    opacity: 0;
    visibility: hidden
}

.product-gallery-preview-wrap .variation-image {
    position: absolute;
    top: 50%;
    max-height: 100%;
    max-width: 100%;
    z-index: 1
}

.ltr .product-gallery-preview-wrap .variation-image {
    left: 50%;
    transform: translate(-50%,-50%)
}

.rtl .product-gallery-preview-wrap .variation-image {
    right: 50%;
    transform: translate(50%,-50%)
}

.product-gallery-preview {
    transition: var(--transition-150)
}

.product-gallery-preview .swiper-button-next,.product-gallery-preview .swiper-button-prev {
    transition: var(--transition-150);
    height: 30px;
    width: 30px;
    background: var(--color-primary);
    border-radius: 50%;
    top: 50%;
    bottom: 0;
    transform: translateY(-50%);
    margin: 0
}

.ltr .product-gallery-preview .swiper-button-next,.ltr .product-gallery-preview .swiper-button-prev {
    left: 15px
}

.rtl .product-gallery-preview .swiper-button-next,.rtl .product-gallery-preview .swiper-button-prev {
    right: 15px
}

.product-gallery-preview .swiper-button-next:after,.product-gallery-preview .swiper-button-prev:after {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-white)
}

.ltr .product-gallery-preview .swiper-button-next:after,.ltr .product-gallery-preview .swiper-button-prev:after {
    padding-right: 2px
}

.rtl .product-gallery-preview .swiper-button-next:after,.rtl .product-gallery-preview .swiper-button-prev:after {
    padding-left: 2px
}

.ltr .product-gallery-preview .swiper-button-next {
    left: unset;
    right: 15px
}

.rtl .product-gallery-preview .swiper-button-next {
    right: unset;
    left: 15px
}

.ltr .product-gallery-preview .swiper-button-next:after {
    padding-right: unset;
    padding-left: 2px
}

.rtl .product-gallery-preview .swiper-button-next:after {
    padding-left: unset;
    padding-right: 2px
}

.product-gallery-preview .gallery-preview-slide {
    position: relative
}

.product-gallery-preview .gallery-preview-item {
    position: relative;
    display: flex;
    width: 100%;
    height: 500px;
    background: var(--color-white);
    transition: none;
    cursor: crosshair
}

.product-gallery-preview .gallery-preview-item>img {
    position: absolute;
    top: 50%;
    max-height: 100%;
    max-width: 100%
}

.ltr .product-gallery-preview .gallery-preview-item>img {
    left: 50%;
    transform: translate(-50%,-50%)
}

.rtl .product-gallery-preview .gallery-preview-item>img {
    right: 50%;
    transform: translate(50%,-50%)
}

.product-gallery-preview .gallery-preview-item>video {
    position: absolute;
    top: 50%;
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.ltr .product-gallery-preview .gallery-preview-item>video {
    left: 50%;
    transform: translate(-50%,-50%)
}

.rtl .product-gallery-preview .gallery-preview-item>video {
    right: 50%;
    transform: translate(50%,-50%)
}

.product-gallery-preview .gallery-preview-item .image-placeholder {
    width: 130px
}

.product-gallery-preview .video-slide .gallery-preview-item {
    cursor: default
}

.product-gallery-preview .gallery-view-icon {
    position: absolute;
    top: 15px;
    height: 30px;
    width: 30px;
    display: none;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: var(--radius-full);
    z-index: 1;
    transition: none;
    cursor: pointer
}

.ltr .product-gallery-preview .gallery-view-icon {
    right: 15px;
    transform: rotateY(180deg)
}

.rtl .product-gallery-preview .gallery-view-icon {
    left: 15px;
    transform: rotateY(-180deg)
}

.product-gallery-preview .gallery-view-icon>i {
    font-size: 16px;
    transition: none
}

.product-gallery-preview-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0 0;
    min-height: 12px
}

.product-gallery-preview-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0;
    background: var(--color-gray-300);
    opacity: 1;
    transition: background var(--transition-150)
}

.product-gallery-preview-pagination .swiper-pagination-bullet-active {
    background: var(--color-gray-900)
}

.product-gallery-thumbnail {
    width: 90px;
    flex-shrink: 0;
    position: relative;
    align-self: stretch;
    overflow: hidden;
    --fade-height: 180px;
    --fade-color: #fff;
    --fade-duration: .22s;
    --fade-ease: ease
}

.product-gallery-thumbnail:not(.swiper-initialized) {
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.product-gallery-thumbnail:not(.swiper-initialized) .swiper-slide {
    width: 100%;
    margin: 0
}

.product-gallery-thumbnail:not(.swiper-initialized) .swiper-button-next,.product-gallery-thumbnail:not(.swiper-initialized) .swiper-button-prev {
    display: none
}

.product-gallery-thumbnail:before,.product-gallery-thumbnail:after {
    content: "";
    position: absolute;
    width: 100%;
    height: var(--fade-height);
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: opacity var(--fade-duration) var(--fade-ease)
}

.ltr .product-gallery-thumbnail:before,.ltr .product-gallery-thumbnail:after {
    left: 0
}

.rtl .product-gallery-thumbnail:before,.rtl .product-gallery-thumbnail:after {
    right: 0
}

@media (max-width: 991px) {
    .product-gallery-thumbnail:before,.product-gallery-thumbnail:after {
        content:none
    }
}

.product-gallery-thumbnail:before {
    top: 0;
    background: linear-gradient(0deg,rgba(255,255,255,0) 0%,var(--fade-color) 100%)
}

.product-gallery-thumbnail:after {
    bottom: 0
}

.ltr .product-gallery-thumbnail:after {
    background: linear-gradient(180deg,rgba(255,255,255,0) 0%,var(--fade-color) 100%)
}

.rtl .product-gallery-thumbnail:after {
    background: linear-gradient(-180deg,rgba(255,255,255,0) 0%,var(--fade-color) 100%)
}

@supports selector(:has(*)) {
    .product-gallery-thumbnail:has(.swiper-button-prev.swiper-button-disabled):before {
        opacity: 0
    }

    .product-gallery-thumbnail:has(.swiper-button-next.swiper-button-disabled):after {
        opacity: 0
    }
}

.product-gallery-thumbnail.prev-disabled:before {
    opacity: 0
}

.product-gallery-thumbnail.next-disabled:after {
    opacity: 0
}

.product-gallery-thumbnail .swiper-wrapper {
    height: 100%
}

.product-gallery-thumbnail .swiper-slide {
    height: auto
}

.ltr .product-gallery-thumbnail .swiper-slide {
    margin-right: 0
}

.rtl .product-gallery-thumbnail .swiper-slide {
    margin-left: 0
}

.product-gallery-thumbnail .swiper-button-next,.product-gallery-thumbnail .swiper-button-prev {
    transition: var(--transition-150);
    height: 36px;
    width: 36px;
    background: #fff;
    border-radius: 50%;
    margin: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-300)
}

.ltr .product-gallery-thumbnail .swiper-button-next,.ltr .product-gallery-thumbnail .swiper-button-prev {
    left: 50%
}

.rtl .product-gallery-thumbnail .swiper-button-next,.rtl .product-gallery-thumbnail .swiper-button-prev {
    right: 50%
}

.product-gallery-thumbnail .swiper-button-next:after,.product-gallery-thumbnail .swiper-button-prev:after {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-700)
}

.product-gallery-thumbnail .swiper-button-prev {
    top: 8px;
    bottom: unset
}

.ltr .product-gallery-thumbnail .swiper-button-prev {
    transform: translate(-50%)
}

.rtl .product-gallery-thumbnail .swiper-button-prev {
    transform: translate(50%)
}

@media (max-width: 991px) {
    .ltr .product-gallery-thumbnail .swiper-button-prev {
        transform:translate(0) translateY(-50%) rotate(-90deg)!important
    }

    .rtl .product-gallery-thumbnail .swiper-button-prev {
        transform: translate(0) translateY(-50%) rotate(90deg)!important
    }
}

.ltr .product-gallery-thumbnail .swiper-button-prev:after {
    transform: rotate(90deg)
}

.rtl .product-gallery-thumbnail .swiper-button-prev:after {
    transform: rotate(-90deg)
}

.product-gallery-thumbnail .swiper-button-next {
    bottom: 8px;
    top: unset
}

.ltr .product-gallery-thumbnail .swiper-button-next {
    transform: translate(-50%)
}

.rtl .product-gallery-thumbnail .swiper-button-next {
    transform: translate(50%)
}

@media (max-width: 991px) {
    .ltr .product-gallery-thumbnail .swiper-button-next {
        transform:translate(0) translateY(-50%) rotate(-90deg)!important
    }

    .rtl .product-gallery-thumbnail .swiper-button-next {
        transform: translate(0) translateY(-50%) rotate(90deg)!important
    }
}

.ltr .product-gallery-thumbnail .swiper-button-next:after {
    transform: rotate(90deg)
}

.rtl .product-gallery-thumbnail .swiper-button-next:after {
    transform: rotate(-90deg)
}

.product-gallery-thumbnail .swiper-slide-active:only-child .gallery-thumbnail-item {
    border-color: var(--color-primary)
}

.product-gallery-thumbnail .swiper-slide-thumb-active .gallery-thumbnail-item {
    border-color: var(--color-primary)
}

.product-gallery-thumbnail .gallery-thumbnail-item {
    position: relative;
    padding-bottom: 100%;
    border: 1px solid var(--color-gray-lite);
    border-radius: var(--radius-default);
    overflow: hidden;
    transition: var(--transition-150);
    cursor: pointer
}

.product-gallery-thumbnail .gallery-thumbnail-item.active {
    border-color: var(--color-primary)
}

.product-gallery-thumbnail .gallery-thumbnail-item img {
    position: absolute;
    top: 50%;
    max-height: 100px;
    max-width: 100px
}

.ltr .product-gallery-thumbnail .gallery-thumbnail-item img {
    left: 50%;
    transform: translate(-50%,-50%)
}

.rtl .product-gallery-thumbnail .gallery-thumbnail-item img {
    right: 50%;
    transform: translate(50%,-50%)
}

.product-gallery-thumbnail .gallery-thumbnail-item video {
    position: absolute;
    top: 50%;
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.ltr .product-gallery-thumbnail .gallery-thumbnail-item video {
    left: 50%;
    transform: translate(-50%,-50%)
}

.rtl .product-gallery-thumbnail .gallery-thumbnail-item video {
    right: 50%;
    transform: translate(50%,-50%)
}

.product-gallery-thumbnail .gallery-thumbnail-item .image-placeholder {
    max-height: 60%;
    max-width: 60%
}

.product-gallery-thumbnail .gallery-thumbnail-item.video-thumbnail .video-play-icon {
    position: absolute;
    top: 50%;
    z-index: 2;
    pointer-events: none;
    color: var(--color-white);
    background: #0009;
    border-radius: var(--radius-full);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ltr .product-gallery-thumbnail .gallery-thumbnail-item.video-thumbnail .video-play-icon {
    left: 50%;
    transform: translate(-50%,-50%)
}

.rtl .product-gallery-thumbnail .gallery-thumbnail-item.video-thumbnail .video-play-icon {
    right: 50%;
    transform: translate(50%,-50%)
}

.product-gallery-thumbnail .gallery-thumbnail-item.video-thumbnail .video-play-icon svg {
    width: 16px;
    height: 16px
}

@media screen and (min-width: 992px) {
    .product-gallery-thumbnail {
        height:100%;
        max-height: 100%
    }
}

@media screen and (max-width: 991px) {
    .product-gallery {
        width:100%;
        position: unset!important;
        z-index: unset;
        flex-direction: column-reverse;
        gap: 12px
    }

    .ltr .product-gallery {
        padding-right: unset
    }

    .rtl .product-gallery {
        padding-left: unset
    }

    .product-gallery-thumbnail {
        width: 100%;
        padding: 0;
        height: auto
    }

    .product-gallery-thumbnail:not(.swiper-initialized) {
        flex-direction: row;
        gap: 0;
        margin-right: -5px;
        margin-left: -5px
    }

    .product-gallery-thumbnail:not(.swiper-initialized) .swiper-slide {
        max-width: calc(14.285% - 10px);
        width: auto;
        margin-right: 5px!important;
        margin-left: 5px
    }

    .product-gallery-thumbnail .swiper-button-next,.product-gallery-thumbnail .swiper-button-prev {
        top: 50%;
        bottom: unset;
        transform: translateY(-50%)
    }

    .ltr .product-gallery-thumbnail .swiper-button-next,.ltr .product-gallery-thumbnail .swiper-button-prev {
        left: 10px
    }

    .rtl .product-gallery-thumbnail .swiper-button-next,.rtl .product-gallery-thumbnail .swiper-button-prev {
        right: 10px
    }

    .product-gallery-thumbnail .swiper-button-prev:after {
        transform: none
    }

    .product-gallery-thumbnail .swiper-button-next,.product-gallery-thumbnail .swiper-button-prev {
        display: flex
    }

    .product-gallery-thumbnail .swiper-button-next:after {
        transform: none
    }

    .ltr .product-gallery-thumbnail .swiper-button-next {
        left: unset;
        right: 10px
    }

    .rtl .product-gallery-thumbnail .swiper-button-next {
        right: unset;
        left: 10px
    }

    .product-gallery-preview .gallery-view-icon {
        display: flex
    }
}

@media screen and (max-width: 600px) {
    .product-gallery {
        width:100%;
        min-width: 100%
    }

    .ltr .product-gallery {
        padding-right: 0
    }

    .rtl .product-gallery {
        padding-left: 0
    }
}

@media screen and (max-width: 576px) {
    .product-gallery-thumbnail:not(.swiper-initialized) .swiper-slide {
        max-width:calc(16.66% - 10px)
    }

    .product-gallery-preview-wrap {
        border: unset
    }

    .product-gallery-preview .gallery-view-icon {
        top: 0
    }

    .ltr .product-gallery-preview .gallery-view-icon {
        right: 0
    }

    .rtl .product-gallery-preview .gallery-view-icon {
        left: 0
    }
}

@media screen and (max-width: 450px) {
    .product-gallery-thumbnail:not(.swiper-initialized) .swiper-slide {
        max-width:calc(25% - 10px)
    }
}

.product-details-info {
    padding: 0 15px;
    width: 40%
}

.product-details-info .details-info-top {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ltr .product-details-info .details-info-top {
    text-align: left
}

.rtl .product-details-info .details-info-top {
    text-align: right
}

.product-details-info .product-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px
}

.product-details-info .product-detail-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 20px;
    min-height: 24px;
    font-family: Poppins,sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1em;
    text-align: center;
    text-decoration: none
}

.product-details-info .product-detail-badge .badge-label {
    color: #000
}

.product-details-info .product-detail-badge .badge-value {
    white-space: nowrap
}

.product-details-info .product-detail-badge.brand-badge {
    background: #eef5fb
}

.product-details-info .product-detail-badge.brand-badge .brand-value {
    color: #0068e1
}

.product-details-info .product-detail-badge.brand-badge:hover {
    opacity: .9
}

.product-details-info .product-detail-badge.origin-badge {
    background: #eef5fb
}

.product-details-info .product-detail-badge.origin-badge .badge-label {
    color: #0068e1
}

.product-details-info .product-detail-badge.origin-badge .origin-value {
    color: #000
}

.product-details-info .product-detail-badge.category-badge {
    background: #fdf0ed;
    padding: 4px 8px
}

.product-details-info .product-detail-badge.category-badge .category-value {
    color: #e41e27
}

.product-details-info .product-detail-badge.category-badge:hover {
    opacity: .9
}

.product-details-info .product-name {
    font-size: 24px;
    line-height: 32px
}

.product-details-info .product-rating {
    font-size: 16px;
    margin-bottom: 9px
}

.product-details-info .product-rating .rating-count {
    font-size: 14px;
    margin-top: 3px
}

.product-details-info .product-rating+.brief-description {
    margin-top: 10px
}

.product-details-info .product-rating+.details-info-top-actions {
    margin-top: 8px
}

.product-details-info .availability {
    margin-bottom: 14px
}

.product-details-info .availability.in-stock {
    color: var(--color-green)
}

.product-details-info .availability.out-of-stock {
    color: var(--color-red)
}

.product-details-info .availability+.details-info-top-actions {
    margin-top: -2px
}

.product-details-info .brief-description {
    margin-bottom: 12px;
    color: var(--color-gray)
}

.product-details-info .details-info-top-actions {
    display: flex;
    align-items: center
}

.product-details-info .details-info-top-actions .btn {
    padding: 0;
    color: var(--color-gray);
    display: flex;
    align-items: center
}

.product-details-info .details-info-top-actions .btn:hover {
    color: var(--color-primary)
}

.product-details-info .details-info-top-actions .btn>svg {
    width: 16px;
    height: 16px
}

.ltr .product-details-info .details-info-top-actions .btn>svg {
    margin-right: 5px
}

.rtl .product-details-info .details-info-top-actions .btn>svg {
    margin-left: 5px
}

.ltr .product-details-info .details-info-top-actions .btn-wishlist {
    margin-right: 25px
}

.rtl .product-details-info .details-info-top-actions .btn-wishlist {
    margin-left: 25px
}

.product-details-info .details-info-top-actions .btn-wishlist,.product-details-info .details-info-top-actions .btn-compare {
    font-weight: var(--font-medium)
}

.product-details-info .product-price {
    display: flex;
    align-items: center;
    gap: 12px
}

.product-details-info .product-price .previous-price {
    font-size: 24px;
    font-weight: var(--font-medium);
    line-height: 1;
    color: var(--color-primary);
    text-decoration: none
}

.product-details-info .product-price .special-price {
    font-size: 32px;
    font-weight: var(--font-semibold);
    line-height: 24px;
    max-width: 100%;
    display: inline-block;
    white-space: nowrap;
    color: var(--color-brand-secondary-600)
}

.ltr .product-details-info .product-price .special-price {
    margin-right: 0
}

.rtl .product-details-info .product-price .special-price {
    margin-left: 0
}

.product-details-info .product-price .special-price+.previous-price {
    font-size: 20px;
    font-weight: var(--font-normal);
    line-height: 22.5px;
    color: var(--color-gray);
    text-decoration: line-through
}

.product-details-info .product-price.has-sale .special-price {
    font-family: Poppins,sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.267;
    color: #d63832
}

.product-details-info .product-price.has-sale .previous-price {
    font-family: Poppins,sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.125;
    color: #6e6e6e;
    text-decoration: line-through
}

.product-details-info .product-price.has-sale .sale-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 6px 2px;
    background-color: #e41e27;
    border-radius: 4px;
    font-family: Poppins,sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.8;
    color: #fff;
    text-transform: uppercase
}

.product-details-info .product-variants {
    padding-bottom: 10px
}

.product-details-info .product-variants .form-group .extra-price {
    font-weight: var(--font-medium);
    color: var(--color-gray)
}

.ltr .product-details-info .product-variants .form-group .form-custom-radio .extra-price {
    margin-left: 4px
}

.rtl .product-details-info .product-variants .form-group .form-custom-radio .extra-price {
    margin-right: 4px
}

.product-details-info .product-variants .form-group.variant-select .col-lg-18:last-child {
    width: -moz-max-content;
    width: max-content;
    max-width: 100%
}

.product-details-info .product-variants .form-group.variant-select .col-lg-18:last-child>div {
    position: relative;
    width: -moz-max-content;
    width: max-content
}

.product-details-info .product-variants .form-group.variant-select .col-lg-18:last-child>div:after {
    content: "";
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" class="feather feather-chevron-down" fill="none" height="18" width="18" stroke="grey" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24"><polyline points="6 9 12 15 18 9"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.ltr .product-details-info .product-variants .form-group.variant-select .col-lg-18:last-child>div:after {
    right: 10px
}

.rtl .product-details-info .product-variants .form-group.variant-select .col-lg-18:last-child>div:after {
    left: 10px
}

.product-details-info .product-variants .form-group.variant-select .col-lg-18 .form-control {
    width: auto;
    max-width: 100%;
    line-height: 1
}

.ltr .product-details-info .product-variants .form-group.variant-select .col-lg-18 .form-control {
    padding-right: 35px
}

.rtl .product-details-info .product-variants .form-group.variant-select .col-lg-18 .form-control {
    padding-left: 35px
}

.product-details-info .product-variants .variant-check {
    margin: -1px 0 7px
}

.product-details-info .product-variants .variant-check .error-message {
    margin: -7px 0 8px
}

.product-details-info .product-variants .variant-radio {
    margin: -2px 0 8px
}

.product-details-info .product-variants .variant-radio .error-message {
    margin: -6px 0 7px
}

.product-details-info .product-variants .variant-input textarea {
    height: 100px
}

.product-details-info .product-variants .variant-input,.product-details-info .product-variants .variant-select {
    margin-bottom: 20px
}

.product-details-info .product-variants .variant-input label,.product-details-info .product-variants .variant-select label {
    padding-top: 12px
}

.product-details-info .product-variants .variant-input .error-message,.product-details-info .product-variants .variant-select .error-message {
    margin: 6px 0 -5px
}

.product-details-info .product-variants .variant-custom-selection {
    margin-bottom: 10px
}

.product-details-info .product-variants .variant-custom-selection .variation-label {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--color-dark)
}

.ltr .product-details-info .product-variants .variant-custom-selection .variation-label {
    padding-left: 5px
}

.rtl .product-details-info .product-variants .variant-custom-selection .variation-label {
    padding-right: 5px
}

.product-details-info .product-variants .variant-custom-selection .error-message {
    margin: -4px 0 5px
}

.product-details-info .product-variants .custom-selection {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px
}

.product-details-info .product-variants .custom-selection>li {
    font-size: 12px;
    min-width: 50px;
    position: relative;
    display: flex;
    flex: 0 0 calc(25% - 5px);
    padding: 8px;
    color: var(--color-dark);
    justify-content: start;
    box-shadow: 0 0 0 1px var(--border-color-5);
    border-radius: var(--radius-default);
    transition: .1s ease-in-out;
    overflow: hidden;
    cursor: pointer
}

.ltr .product-details-info .product-variants .custom-selection>li:last-child {
    margin-right: 0
}

.rtl .product-details-info .product-variants .custom-selection>li:last-child {
    margin-left: 0
}

.ltr .product-details-info .product-variants .custom-selection>li:nth-child(2n) {
    margin-right: 0
}

.rtl .product-details-info .product-variants .custom-selection>li:nth-child(2n) {
    margin-left: 0
}

.product-details-info .product-variants .custom-selection>li:hover {
    box-shadow: 0 0 0 2px var(--color-primary-alpha-80)
}

.product-details-info .product-variants .custom-selection>li.active {
    cursor: default;
    box-shadow: 0 0 0 2px var(--color-primary-alpha-80)
}

.product-details-info .product-variants .custom-selection>li.disabled {
    opacity: .6
}

.product-details-info .product-variants .custom-selection>li.variation-color {
    height: 40px;
    width: 40px;
    min-width: auto;
    padding: 0;
    border-radius: var(--radius-default)
}

.product-details-info .product-variants .custom-selection>li.variation-color>div {
    position: absolute;
    top: 50%;
    height: 36px;
    width: 36px;
    border-radius: 6px
}

.ltr .product-details-info .product-variants .custom-selection>li.variation-color>div {
    left: 50%;
    transform: translate(-50%,-50%)
}

.rtl .product-details-info .product-variants .custom-selection>li.variation-color>div {
    right: 50%;
    transform: translate(50%,-50%)
}

.product-details-info .product-variants .custom-selection>li.variation-image {
    height: 50px;
    width: 50px;
    min-width: auto;
    padding: 0
}

.product-details-info .product-variants .custom-selection>li.variation-image img {
    position: absolute;
    top: 50%;
    max-height: 100%;
    max-width: 100%
}

.ltr .product-details-info .product-variants .custom-selection>li.variation-image img {
    left: 50%;
    transform: translate(-50%,-50%)
}

.rtl .product-details-info .product-variants .custom-selection>li.variation-image img {
    right: 50%;
    transform: translate(50%,-50%)
}

.product-details-info .product-variants .custom-selection>.variation-text {
    display: flex;
    flex-direction: column
}

.product-details-info .product-variants .custom-selection>.variation-text .previous-price {
    font-weight: var(--font-medium);
    color: var(--color-dark);
    text-decoration: none
}

.product-details-info .product-variants .custom-selection>.variation-text .special-price {
    color: var(--color-dark);
    font-weight: var(--font-medium)
}

.product-details-info .product-variants .custom-selection>.variation-text .special-price+.previous-price {
    font-weight: 400;
    line-height: 1;
    color: var(--color-gray-500);
    text-decoration: line-through
}

.product-details-info .details-info-middle-actions {
    display: flex
}

.product-details-info .details-info-middle-actions .btn-add-to-cart {
    flex-grow: 1;
    text-transform: uppercase;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: var(--font-semibold)
}

.ltr .product-details-info .details-info-middle-actions .btn-add-to-cart>i {
    margin-right: 6px
}

.rtl .product-details-info .details-info-middle-actions .btn-add-to-cart>i {
    margin-left: 6px
}

.product-details-info .details-info-middle-actions .btn-add-to-cart:disabled {
    background: #efeef1;
    color: #cac7d1
}

.product-details-info .details-info-middle-actions .btn-add-to-cart.btn-loading:after {
    width: 20px;
    height: 20px;
    -webkit-mask: radial-gradient(farthest-side,transparent calc(100% - 1.3px),#fff 0);
    mask: radial-gradient(farthest-side,transparent calc(100% - 1.3px),#fff 0)
}

.product-details-info .details-info-middle-actions .product-quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    border-radius: 9999px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary, #204396);
    box-shadow: 0 1px 2px #1018280d
}

.product-details-info .details-info-middle-actions .product-quantity-wrapper>span {
    color: var(--White, #FFF);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px
}

.product-details-info .details-info-middle-actions .product-quantity-wrapper .btn-number {
    padding: 4px 22px
}

.product-details-info .number-picker-lg {
    display: inline-flex;
    align-items: center
}

.product-details-info .number-picker-lg label {
    font-weight: var(--font-medium)
}

.ltr .product-details-info .number-picker-lg label {
    margin-right: 20px
}

.rtl .product-details-info .number-picker-lg label {
    margin-left: 20px
}

.product-details-info .number-picker-lg .input-group-quantity {
    position: relative
}

.product-details-info .number-picker-lg .input-group-quantity .input-quantity {
    font-size: 15px;
    height: 45px;
    width: 100px;
    text-align: center
}

.ltr .product-details-info .number-picker-lg .input-group-quantity .input-quantity {
    padding: 10px 39px 10px 10px
}

.rtl .product-details-info .number-picker-lg .input-group-quantity .input-quantity {
    padding: 10px 10px 10px 39px
}

.product-details-info .number-picker-lg .input-group-quantity .input-quantity:focus {
    outline: 0;
    border-color: var(--color-gray-lite)
}

.product-details-info .number-picker-lg .input-group-quantity .input-quantity[disabled] {
    color: var(--color-gray-dark)
}

.product-details-info .number-picker-lg .input-group-quantity .btn-wrapper {
    position: absolute;
    top: 0
}

.ltr .product-details-info .number-picker-lg .input-group-quantity .btn-wrapper {
    right: 0
}

.rtl .product-details-info .number-picker-lg .input-group-quantity .btn-wrapper {
    left: 0
}

.product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-number {
    position: absolute;
    width: 30px;
    padding: 0;
    line-height: 18px;
    background: none;
    border: 1px solid var(--color-gray-lite);
    border-radius: 0
}

.ltr .product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-number {
    right: 0
}

.rtl .product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-number {
    left: 0
}

.product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-number:hover {
    color: var(--color-primary)
}

.product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-number[disabled],.product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-number[disabled]:hover {
    color: var(--color-gray-dark)
}

.product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-plus {
    top: 0;
    height: 24px
}

.ltr .product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-plus {
    border-top-right-radius: var(--radius-default)
}

.rtl .product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-plus {
    border-top-left-radius: var(--radius-default)
}

.product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-minus {
    top: 23px;
    height: 22px
}

.ltr .product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-minus {
    border-bottom-right-radius: var(--radius-default)
}

.rtl .product-details-info .number-picker-lg .input-group-quantity .btn-wrapper .btn-minus {
    border-bottom-left-radius: var(--radius-default)
}

.product-details-info .details-info-bottom {
    margin-top: 16px
}

.product-details-info .details-info-bottom img {
    width: 100%;
    height: auto
}

.product-details-info .additional-info {
    display: flex;
    flex-direction: column;
    padding: 5px 0
}

.ltr .product-details-info .additional-info {
    margin: 0 0 -6px -12px
}

.rtl .product-details-info .additional-info {
    margin: 0 -12px -6px 0
}

.product-details-info .additional-info li {
    margin-bottom: 4px;
    padding: 0 12px
}

.product-details-info .additional-info li:last-child {
    margin-bottom: 0
}

.product-details-info .additional-info li label {
    margin-bottom: 0
}

.ltr .product-details-info .additional-info li label {
    margin-right: 5px
}

.rtl .product-details-info .additional-info li label {
    margin-left: 5px
}

.product-details-info .additional-info li a {
    color: var(--color-primary)
}

.product-details-info .additional-info li a:hover {
    color: var(--color-primary-hover)
}

.product-details-info .additional-info .sku {
    color: var(--color-primary)
}

.product-details-info .additional-info .sku label {
    color: var(--color-black)
}

.product-details-info .social-share {
    display: flex;
    align-items: center
}

.product-details-info .social-share label {
    margin-bottom: 0
}

.ltr .product-details-info .social-share .social-links {
    margin-left: 15px
}

.rtl .product-details-info .social-share .social-links {
    margin-right: 15px
}

@media screen and (max-width: 1350px) {
    .ltr .product-details-info {
        padding-left:15px;
        padding-right: 0
    }

    .rtl .product-details-info {
        padding-right: 15px;
        padding-left: 0
    }
}

@media screen and (max-width: 991px) {
    .product-details-info {
        width:100%;
        margin-top: 34px
    }

    .ltr .product-details-info {
        padding-left: 0
    }

    .rtl .product-details-info {
        padding-right: 0
    }

    .product-details-info .product-name {
        font-size: 22px;
        line-height: 26px
    }

    .product-details-info .product-variants {
        margin-top: -5px
    }

    .product-details-info .product-variants .variant-custom-selection label {
        padding-top: 0
    }

    .product-details-info .product-variants .variant-check,.product-details-info .product-variants .variant-radio {
        margin-top: 0
    }

    .product-details-info .product-variants .variant-check label,.product-details-info .product-variants .variant-radio label {
        margin-bottom: 8px
    }

    .product-details-info .product-variants .variant-input label,.product-details-info .product-variants .variant-select label {
        padding-top: 0
    }
}

@media screen and (max-width: 400px) {
    .product-details-info .product-name {
        font-size:20px;
        line-height: 24px
    }

    .product-details-info .number-picker-lg label {
        display: none
    }

    .product-details-info .btn-add-to-cart {
        width: 100%
    }

    .ltr .product-details-info .btn-add-to-cart {
        margin-left: 15px
    }

    .rtl .product-details-info .btn-add-to-cart {
        margin-right: 15px
    }
}

.section-wrapper .title {
    color: var(--Text-Black, #0D0C0D);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px
}

.section-wrapper .product-description .image {
    text-align: start;
    padding: 0 8%
}

.section-wrapper .product-description .image img {
    width: 100%;
    height: auto
}

.section-wrapper .product-description p {
    margin-top: 24px
}

.section-wrapper .product-description p strong {
    font-weight: var(--font-semibold)
}

.section-wrapper .product-reviews-wrapper .product-reviews {
    display: flex;
    position: relative;
    z-index: 0;
    --fade-width: 144px;
    --fade-color: #fff;
    --fade-duration: .22s;
    --fade-ease: ease
}

.section-wrapper .product-reviews-wrapper .product-reviews:before,.section-wrapper .product-reviews-wrapper .product-reviews:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: var(--fade-width);
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: opacity var(--fade-duration) var(--fade-ease)
}

@media (max-width: 991px) {
    .section-wrapper .product-reviews-wrapper .product-reviews:before,.section-wrapper .product-reviews-wrapper .product-reviews:after {
        content:none
    }
}

.ltr .section-wrapper .product-reviews-wrapper .product-reviews:before {
    left: 0;
    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,var(--fade-color) 100%)
}

.rtl .section-wrapper .product-reviews-wrapper .product-reviews:before {
    right: 0;
    background: linear-gradient(-270deg,rgba(255,255,255,0) 0%,var(--fade-color) 100%)
}

.ltr .section-wrapper .product-reviews-wrapper .product-reviews:after {
    right: 0;
    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,var(--fade-color) 100%)
}

.rtl .section-wrapper .product-reviews-wrapper .product-reviews:after {
    left: 0;
    background: linear-gradient(-90deg,rgba(255,255,255,0) 0%,var(--fade-color) 100%)
}

@supports selector(:has(*)) {
    .section-wrapper .product-reviews-wrapper .product-reviews:has(.swiper-button-prev.swiper-button-disabled):before {
        opacity: 0
    }

    .section-wrapper .product-reviews-wrapper .product-reviews:has(.swiper-button-next.swiper-button-disabled):after {
        opacity: 0
    }
}

.section-wrapper .product-reviews-wrapper .product-reviews.prev-disabled:before {
    opacity: 0
}

.section-wrapper .product-reviews-wrapper .product-reviews.next-disabled:after {
    opacity: 0
}

.section-wrapper .product-reviews-wrapper .product-reviews .swiper-button-next,.section-wrapper .product-reviews-wrapper .product-reviews .swiper-button-prev {
    height: 36px;
    width: 36px;
    background: var(--White, #FFF);
    border: 1px solid var(--color-gray-300);
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 1;
    visibility: visible;
    transition: var(--transition-150);
    box-shadow: 0 1px 2px #1018280d
}

.section-wrapper .product-reviews-wrapper .product-reviews .swiper-button-next:after,.section-wrapper .product-reviews-wrapper .product-reviews .swiper-button-prev:after {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 12px;
    font-weight: 500;
    -webkit-text-stroke: 1.5px var(--color-gray-700)
}

.section-wrapper .product-reviews-wrapper .product-reviews .swiper-button-next.swiper-button-disabled,.section-wrapper .product-reviews-wrapper .product-reviews .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    visibility: hidden
}

.section-wrapper .product-reviews-wrapper .product-review-card {
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    background: #fff;
    overflow: hidden;
    height: 144px;
    width: 320px;
    display: flex;
    gap: 12px
}

.section-wrapper .product-reviews-wrapper .product-review-card .product-review-left {
    flex: 0 0 40%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden
}

.section-wrapper .product-reviews-wrapper .product-review-card .product-review-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.section-wrapper .product-reviews-wrapper .product-review-card .product-review-right {
    flex: 0 0 60%
}

.ltr .section-wrapper .product-reviews-wrapper .product-review-card .product-review-right {
    padding: 16px 20px 0 0
}

.rtl .section-wrapper .product-reviews-wrapper .product-review-card .product-review-right {
    padding: 16px 0 0 20px
}

.section-wrapper .product-reviews-wrapper .product-review-card .product-review-right .reviewer-info {
    display: flex;
    gap: 4px
}

.section-wrapper .product-reviews-wrapper .product-review-card .product-review-right .reviewer-info img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.section-wrapper .description-ingredients {
    align-items: flex-start;
    --sticky-card-offset: clamp(80px, 5vw + 40px, 120px)
}

.section-wrapper .description-card {
    overflow: hidden;
    flex-grow: 1
}

.section-wrapper .ingredients-card {
    --sticky-card-offset: 142px ;
    position: sticky;
    top: var(--sticky-card-offset);
    flex-grow: 0;
    flex-shrink: 0;
    width: 30%;
    max-width: 360px;
    height: -moz-fit-content;
    height: fit-content
}

@media (max-width: 991.98px) {
    .section-wrapper .ingredients-card {
        position:static;
        top: auto;
        width: 100%;
        max-width: none
    }
}

#fullReviewsModal .modal-header {
    padding: 24px 24px 0;
    border-bottom: 0
}

@media (max-width: 991.98px) {
    #fullReviewsModal .modal-header {
        padding:16px 16px 0
    }
}

#fullReviewsModal .modal-body {
    padding: 0 24px;
    max-height: 75vh;
    overflow: auto
}

@media (max-width: 1199.98px) {
    #fullReviewsModal .modal-body {
        max-height:65vh;
        padding: 0 16px
    }
}

@media (max-width: 991.98px) {
    #fullReviewsModal .modal-body {
        max-height:45vh;
        padding: 0 16px
    }
}

#fullReviewsModal .modal-body .review-detail-wrapper {
    border-bottom: 1px solid var(--color-gray-200)
}

#fullReviewsModal .modal-body .review-detail-wrapper:last-of-type {
    border-bottom: none
}

#fullReviewsModal .modal-body .review-detail-wrapper .review-detail-header {
    display: flex;
    gap: 6px
}

#fullReviewsModal .modal-body .review-detail-wrapper .review-detail-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

#fullReviewsModal .modal-body .review-detail-wrapper .review-detail-content .img-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

#fullReviewsModal .modal-body .review-detail-wrapper .review-detail-content .img-list img {
    width: 104px;
    height: 104px;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

#fullReviewsModal .modal-footer {
    border-top: 1px solid var(--Gray-100, #F2F4F7);
    background: #fff;
    box-shadow: 0 32px 64px -12px #0a0d1224;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap
}

#fullReviewsModal .modal-footer>* {
    margin: unset
}

#fullReviewsModal .modal-footer img {
    width: 40px;
    height: 40px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

#fullReviewsModal .modal-footer .product-info {
    flex-grow: 1
}

#fullReviewsModal .modal-footer .product-info .product-price {
    display: flex;
    align-items: center;
    gap: 8px
}

#fullReviewsModal .modal-footer .product-info .product-price .previous-price {
    font-size: 14px;
    font-weight: var(--font-medium);
    color: var(--color-red);
    text-decoration: none
}

#fullReviewsModal .modal-footer .product-info .product-price .special-price {
    font-size: 14px;
    font-weight: var(--font-semibold);
    max-width: 100%;
    display: inline-block;
    white-space: nowrap;
    color: var(--color-red)
}

.ltr #fullReviewsModal .modal-footer .product-info .product-price .special-price {
    margin-right: 0
}

.rtl #fullReviewsModal .modal-footer .product-info .product-price .special-price {
    margin-left: 0
}

#fullReviewsModal .modal-footer .product-info .product-price .special-price+.previous-price {
    font-size: 12px;
    font-weight: var(--font-normal);
    color: var(--color-gray);
    text-decoration: line-through
}

#sharePopupModal .modal-content {
    padding: 24px 24px 32px
}

@media (max-width: 991.98px) {
    #sharePopupModal .modal-content {
        padding:16px 16px 20px
    }
}

#sharePopupModal .modal-header {
    padding: 0;
    border-bottom: 0
}

#sharePopupModal .modal-body {
    padding: 0
}

#sharePopupModal .modal-footer {
    border-top: 0;
    background: #fff;
    padding: 0
}

.product-details-bottom {
    display: flex
}

.product-details-bottom .vertical-products {
    margin-top: 14px
}

.product-details-bottom .left-sidebar {
    width: 285px;
    min-width: 285px
}

.ltr .product-details-bottom .left-sidebar {
    padding-right: 15px
}

.rtl .product-details-bottom .left-sidebar {
    padding-left: 15px
}

.product-details-bottom .left-sidebar .banner {
    margin-top: 40px;
    position: relative
}

.product-details-bottom .left-sidebar .banner img {
    width: 100%;
    border-radius: 8px;
    transition: .8s ease
}

.product-details-bottom .product-details-bottom-inner {
    width: calc(100% - 282px)
}

.ltr .product-details-bottom .product-details-bottom-inner {
    padding-left: 15px
}

.rtl .product-details-bottom .product-details-bottom-inner {
    padding-right: 15px
}

.product-details-bottom .product-details-bottom-inner .landscape-products .swiper-slide {
    width: 16.66%
}

.product-details-bottom .product-details-bottom-inner .landscape-products .product-card {
    min-height: 240px
}

.product-details-tab hr {
    display: none;
    z-index: 1
}

.product-details-tab .description .content {
    height: auto;
    max-height: 400px;
    overflow-y: hidden;
    position: relative
}

.product-details-tab .description .content:after {
    content: "";
    display: block;
    width: 100%;
    height: 120px;
    position: absolute;
    bottom: 0
}

.ltr .product-details-tab .description .content:after {
    background: linear-gradient(180deg,#fff0 0,#fff);
    left: 0
}

.rtl .product-details-tab .description .content:after {
    background: linear-gradient(-180deg,#fff0 0,#fff);
    right: 0
}

.product-details-tab .description .content.active {
    height: auto;
    max-height: unset
}

.product-details-tab .description .content.active:after {
    display: none
}

.product-details-tab .description .content.less-content:after {
    display: none
}

.product-details-tab .description .btn-show-more {
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    padding: 4px 18px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    display: block;
    border: 1px solid var(--color-primary)
}

.product-details-tab .description .btn-show-more.show {
    opacity: 1;
    visibility: visible
}

.product-details-tab .tabs {
    justify-content: center;
    border-bottom: 1px solid var(--color-gray-lite)
}

.product-details-tab .tabs .nav-item {
    margin: 0 26px
}

.product-details-tab .tabs .nav-item.active .nav-link:before {
    width: 100%
}

.product-details-tab .tabs .nav-item.active .nav-link:after {
    opacity: 1
}

.product-details-tab .tabs .nav-link {
    font-size: 20px;
    font-weight: var(--font-medium);
    padding: 15px 3px;
    color: var(--color-black)
}

.product-details-tab .tabs .nav-link:after,.product-details-tab .tabs .nav-link:before {
    z-index: 2;
    transition: var(--transition-150)
}

@media screen and (max-width: 1600px) {
    .product-details-bottom .product-details-bottom-inner .landscape-products .swiper-slide {
        width:20%
    }
}

@media screen and (max-width: 1300px) {
    .product-details-bottom .product-details-bottom-inner .landscape-products .swiper-slide {
        width:25%
    }
}

@media screen and (max-width: 1100px) {
    .product-details-bottom .product-details-bottom-inner .landscape-products .swiper-slide {
        width:33.33%
    }
}

@media screen and (max-width: 991px) {
    .product-details-bottom .left-sidebar {
        width:100%;
        min-width: 0
    }

    .product-details-bottom .left-sidebar .vertical-products {
        margin-top: 44px
    }

    .product-details-bottom .product-details-bottom-inner {
        width: 100%
    }

    .ltr .product-details-bottom .product-details-bottom-inner {
        padding-left: 0
    }

    .rtl .product-details-bottom .product-details-bottom-inner {
        padding-right: 0
    }

    .product-details-bottom .product-details-bottom-inner .landscape-products .swiper-slide {
        width: 25%
    }

    .product-details-bottom .product-details-tab {
        margin-bottom: -15px
    }
}

@media screen and (max-width: 880px) {
    .product-details-bottom .product-details-bottom-inner .landscape-products .swiper-slide {
        width:33.33%
    }
}

@media screen and (max-width: 767px) {
    .product-details-tab {
        position:relative
    }

    .product-details-tab .product-details-tab-overflow {
        overflow: auto;
        padding-bottom: 10px
    }

    .product-details-tab .product-details-tab-overflow::-webkit-scrollbar {
        width: 0px;
        height: 0px
    }

    .product-details-tab .product-details-tab-overflow::-webkit-scrollbar-track,.product-details-tab .product-details-tab-overflow::-webkit-scrollbar-thumb,.product-details-tab .product-details-tab-overflow::-webkit-scrollbar-thumb:hover {
        background: transparent
    }

    .product-details-tab .product-details-tab-overflow .nav-tabs {
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: unset;
        margin-left: auto;
        margin-right: auto;
        width: -moz-max-content;
        width: max-content;
        position: relative;
        z-index: 2
    }

    .product-details-tab .product-details-tab-overflow .nav-tabs .nav-item {
        white-space: nowrap
    }

    .product-details-tab .product-details-tab-overflow hr {
        display: block;
        height: 0;
        background: transparent;
        position: absolute;
        width: 100%;
        top: 39px;
        border: unset;
        border-bottom: 1px solid #e5e5e5;
        opacity: 1
    }

    .ltr .product-details-tab .product-details-tab-overflow hr {
        left: 0
    }

    .rtl .product-details-tab .product-details-tab-overflow hr {
        right: 0
    }
}

@media screen and (max-width: 640px) {
    .product-details-bottom .product-details-bottom-inner .landscape-products .swiper-slide {
        width:50%
    }
}

.specification {
    padding-top: 51px
}

.specification .specification-inner {
    border: 1px solid var(--color-gray-lite);
    border-radius: var(--radius-default);
    overflow: hidden
}

.specification .title {
    padding: 15px 20px;
    background: var(--color-white-dark)
}

.specification-list {
    padding: 25px 20px!important
}

.specification-list li {
    display: flex;
    margin-bottom: 18px
}

.specification-list li:last-child {
    margin-bottom: 0
}

.specification-list label {
    font-weight: var(--font-medium);
    line-height: 23px;
    width: 190px;
    min-width: 190px;
    margin-bottom: 0
}

.specification-list span {
    line-height: 23px;
    color: var(--color-gray)
}

@media screen and (max-width: 991px) {
    .specification {
        padding:25px 0 15px
    }
}

@media screen and (max-width: 767px) {
    .specification-list li {
        flex-direction:column
    }

    .specification-list label {
        margin-bottom: 3px
    }
}

.product-details-tab .reviews {
    padding-top: 45px
}

.product-details-tab .reviews .pagination {
    margin-top: 11px
}

.review-form .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 28px
}

.review-form .rating-input {
    font-size: 26px;
    line-height: 20px;
    position: relative;
    display: flex;
    margin: -1px 0 -2px;
    flex-direction: row-reverse;
    justify-content: flex-end
}

.review-form .rating-input label {
    font-size: 20px;
    margin-bottom: 0;
    color: var(--color-gray-lite);
    cursor: pointer;
    transition: var(--transition-150)
}

.review-form .rating-input label:hover,.review-form .rating-input label:focus {
    color: var(--color-yellow)
}

.review-form .rating-input label:hover~label,.review-form .rating-input label:focus~label {
    color: var(--color-yellow)
}

.review-form .rating-input input[type=radio] {
    display: none
}

.review-form .rating-input input[type=radio]:checked~label {
    color: var(--color-yellow)
}

.review-form #comment {
    height: 100px
}

.review-form .btn-submit {
    padding: 7px 30px;
    font-size: 14px
}

.user-review-wrap {
    margin-top: 4px;
    margin-bottom: 25px
}

.user-review-wrap.loading:after {
    border-width: 2px
}

.user-review-wrap .empty-message {
    display: flex;
    padding: 35px 0 40px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center
}

.user-review-wrap .empty-message svg {
    height: 80px;
    width: 80px;
    margin-bottom: 16px
}

.user-review-wrap .empty-message svg path {
    stroke-width: 3px;
    fill: var(--color-primary);
    stroke: var(--color-primary)
}

.user-review-wrap .empty-message>span {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    display: block
}

.user-review {
    margin-bottom: 27px
}

.user-review .user-review-header {
    display: flex;
    margin-bottom: 10px
}

.user-review .user-review-header .user-avatar {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--color-primary);
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1
}

.ltr .user-review .user-review-header .user-avatar {
    margin-right: 12px
}

.rtl .user-review .user-review-header .user-avatar {
    margin-left: 12px
}

.user-review .user-review-header .user-review-top {
    width: calc(100% - 50px)
}

.user-review .user-review-header .product-rating .back-stars i {
    font-size: 14px
}

.user-review .user-name {
    font-size: 16px;
    margin-top: 1px;
    margin-bottom: 3px
}

.user-review .reviewer-message {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 7px
}

.ltr .user-review .reviewer-message {
    padding-left: 52px
}

.rtl .user-review .reviewer-message {
    padding-right: 52px
}

.user-review .review-date,.user-review .review-approval {
    font-size: 13px;
    color: var(--color-gray-dark);
    display: block
}

.ltr .user-review .review-date,.ltr .user-review .review-approval {
    padding-left: 52px
}

.rtl .user-review .review-date,.rtl .user-review .review-approval {
    padding-right: 52px
}

@media screen and (max-width: 1199px) {
    .user-review-wrap {
        margin:48px 0 25px
    }
}

@media screen and (max-width: 991px) {
    .product-details-tab .reviews {
        padding-top:20px
    }
}

@media (max-width: 639px) {
    .landscape-left-tab-products .swiper-wrapper {
        display:grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 0;
        transform: translateZ(0)!important
    }

    .landscape-left-tab-products .swiper-slide {
        width: 100%!important;
        margin-bottom: 15px
    }
}

[x-cloak] {
    display: none!important
}

.price-cell .special-price-wrapper,.price-item .special-price-wrapper,.price-row-mobile .special-price-wrapper {
    display: flex;
    gap: 6px
}

.price-cell .special-price-wrapper.flex-column,.price-item .special-price-wrapper.flex-column,.price-row-mobile .special-price-wrapper.flex-column {
    flex-direction: column
}

.price-cell .special-price-wrapper.align-items-start,.price-item .special-price-wrapper.align-items-start,.price-row-mobile .special-price-wrapper.align-items-start {
    align-items: flex-start
}

.price-cell .special-price-wrapper.align-items-center,.price-item .special-price-wrapper.align-items-center,.price-row-mobile .special-price-wrapper.align-items-center {
    align-items: center
}

.price-cell .special-price-wrapper.flex-wrap,.price-item .special-price-wrapper.flex-wrap,.price-row-mobile .special-price-wrapper.flex-wrap {
    flex-wrap: wrap
}

.price-cell .price-special,.price-item .price-special,.price-row-mobile .price-special {
    color: #d63832!important;
    font-size: 14px!important;
    line-height: 1.43!important
}

.price-cell .price-previous,.price-item .price-previous,.price-row-mobile .price-previous {
    color: #667085!important;
    font-size: 12px!important;
    line-height: 1.5!important;
    text-decoration: line-through!important
}

@media (min-width: 1024px) {
    .price-cell .price-special,.price-item .price-special,.price-row-mobile .price-special {
        font-size:15px!important
    }

    .price-cell .price-previous,.price-item .price-previous,.price-row-mobile .price-previous {
        font-size: 13px!important
    }
}

.invisible {
    visibility: hidden!important
}

.product-details-wrap {
    margin-top: 50px
}

.guide-icon-tooltip {
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0
}

.guide-icon-tooltip:hover {
    opacity: .7
}

.product-tooltip-global .tooltip-content {
    width: -moz-fit-content;
    width: fit-content;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px #00000026;
    padding: 8px 12px;
    border: 1px solid rgba(0,0,0,.06);
    position: relative
}

.product-tooltip-global .tooltip-content .tooltip-header {
    font-size: 12px;
    color: #374151;
    line-height: 1.25;
    margin-bottom: 4px
}

.product-tooltip-global .tooltip-content .tooltip-pricing {
    border-top: 1px solid #eee;
    padding-top: 4px;
    margin-top: 4px
}

.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px;
    border-radius: 3px
}

.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row.highlighted {
    background-color: #e5e7eb
}

.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .quantity,.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .price {
    font-size: 12px;
    color: #374151;
    line-height: 1.25
}

.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .quantity {
    min-width: 28px
}

.ltr .product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .quantity {
    padding-right: 10px
}

.rtl .product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .quantity {
    padding-left: 10px
}

.product-tooltip-global .tooltip-content .tooltip-pricing .pricing-row .price {
    white-space: nowrap
}

.product-tooltip-global .tooltip-content--variants {
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap
}

.product-tooltip-global .tooltip-arrow {
    position: absolute;
    width: 14px;
    height: 8px
}

.ltr .product-tooltip-global .tooltip-arrow {
    left: 50%;
    transform: translate(-50%)
}

.rtl .product-tooltip-global .tooltip-arrow {
    right: 50%;
    transform: translate(50%)
}

.product-tooltip-global .tooltip-arrow svg {
    width: 14px;
    height: 8px;
    display: block
}

.product-tooltip-global[data-arrow-position=bottom] .tooltip-arrow {
    bottom: -8px
}

.product-tooltip-global[data-arrow-position=bottom] .tooltip-arrow svg {
    transform: rotate(0)
}

.product-tooltip-global[data-arrow-position=top] .tooltip-arrow {
    top: -8px
}

.ltr .product-tooltip-global[data-arrow-position=top] .tooltip-arrow svg {
    transform: rotate(180deg)
}

.rtl .product-tooltip-global[data-arrow-position=top] .tooltip-arrow svg {
    transform: rotate(-180deg)
}

.pdp-row {
    padding: 0 20px
}

@media (min-width: 992px) {
    .pdp-row {
        display:flex;
        align-items: center
    }

    .pdp-row>.col-6:first-child {
        flex: 0 0 33.33%;
        max-width: 33.33%
    }

    .pdp-row>.col-5 {
        flex: 0 0 27.78%;
        max-width: 27.78%;
        display: flex;
        justify-content: center
    }

    .pdp-row>.col-7 {
        flex: 0 0 38.89%;
        max-width: 38.89%
    }
}

.btn-pdp-view-cart,.btn-remove-all,.btn-remove-all-confirm,.btn-cancel-remove-all-confirm {
    padding: 8px 16px;
    border: 1px solid rgb(208,213,221);
    color: #d63832;
    box-shadow: 0 4px 10px #1018280d;
    background-color: #fff;
    border-radius: 999px;
    transition: .3s;
    white-space: nowrap
}

.btn-remove-all-confirm {
    color: #d63832;
    box-shadow: #1018280d;
    border: 1px solid rgb(208,213,221)
}

.btn-remove-all-confirm:hover {
    color: #fff;
    background-color: #d63832;
    border: 1px solid rgb(214,56,50)
}

.btn-remove-all,.btn-cancel-remove-all-confirm {
    border: none;
    color: #475467;
    box-shadow: none
}

.btn-remove-all i,.btn-remove-all-confirm i {
    font-size: 23px;
    align-items: center;
    text-align: center
}

.btn-remove-all:hover,.btn-cancel-remove-all-confirm:hover {
    color: #1c1f24
}

.btn-pdp-view-cart:hover {
    color: #fff;
    background-color: #d63832;
    border: 1px solid rgb(214,56,50)
}

.price-cell span,.total-cell span {
    color: var(--color-brand-secondary-600);
    font-weight: 400
}

.gallery-preview-item {
    height: 570px!important
}

.product-gallery-preview-pagination,.category-item-table-mobile {
    display: none!important
}

@media (min-width: 992px) {
    .product-details-wrap .product-variants-section .table-responsive {
        display:block
    }

    .product-details-wrap .product-variants-section .table {
        table-layout: fixed;
        width: 100%
    }

    .product-details-wrap .product-variants-section .table thead th:nth-child(1),.product-details-wrap .product-variants-section .table tbody td:nth-child(1) {
        width: 33.33%
    }

    .product-details-wrap .product-variants-section .table thead th:nth-child(2),.product-details-wrap .product-variants-section .table tbody td:nth-child(2) {
        width: 27.78%;
        text-align: center
    }

    .product-details-wrap .product-variants-section .table thead th:nth-child(3),.product-details-wrap .product-variants-section .table tbody td:nth-child(3) {
        width: 19.44%
    }

    .product-details-wrap .product-variants-section .table thead th:nth-child(4),.product-details-wrap .product-variants-section .table tbody td:nth-child(4) {
        width: 19.45%
    }

    .product-details-wrap .product-variants-section .quantity-product-desktop-table {
        justify-content: center
    }

    .product-details-wrap .product-variants-section .quantity-product-desktop-table>.d-flex {
        min-width: 160px;
        justify-content: center
    }
}

@media (max-width: 991.98px) {
    .product-details-wrap .product-variants-section {
        border:1px solid #E5E7EB;
        border-radius: .75rem
    }

    .product-details-wrap .product-variants-section .limit-1-line {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .product-details-wrap .product-variants-section:before {
        content: "Variation";
        display: block;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 700;
        color: var(--color-gray-600);
        background-color: #f9fafb;
        border-bottom: 1px solid #E5E7EB
    }

    .product-details-wrap .product-variants-section .table-responsive,.product-details-wrap .product-variants-section .table-responsive .table {
        display: block;
        border: none
    }

    .product-details-wrap .product-variants-section .table-responsive .table thead {
        display: none
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody {
        display: block
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr {
        display: flex;
        flex-wrap: wrap;
        padding: 1.25rem 1rem;
        border-bottom: 1px solid #E5E7EB
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr:last-child {
        border-bottom: none
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td {
        display: block;
        padding: 0!important;
        border: none;
        box-sizing: border-box;
        min-width: 75px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:before {
        content: none
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(1) {
        order: 1;
        width: 100%;
        margin-bottom: .75rem
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(1) .d-flex {
        gap: .5rem!important
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(1) .d-flex img {
        width: 48px!important;
        height: 48px!important;
        border-radius: .25rem;
        -o-object-fit: cover;
        object-fit: cover
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(1) .d-flex>div span {
        font-size: 12px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(1) .d-flex>div span:first-child {
        font-weight: 600;
        color: #1f2937;
        margin-bottom: .25rem;
        line-height: 1.5;
        width: 100%
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(2) {
        order: 2;
        width: 100%;
        margin-top: -10px;
        margin-bottom: .75rem
    }

    .ltr .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(2) {
        margin-left: 55px
    }

    .rtl .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(2) {
        margin-right: 55px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.auth-price-cell {
        order: 3;
        width: 32%;
        margin-bottom: 25px
    }

    .ltr .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.auth-price-cell {
        padding-right: .5rem;
        margin-left: 55px
    }

    .rtl .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.auth-price-cell {
        padding-left: .5rem;
        margin-right: 55px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.auth-price-cell:before {
        content: "Price";
        display: block;
        font-size: 10px;
        color: #6b7280;
        line-height: 1.5;
        margin-bottom: 8px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.auth-price-cell span {
        font-weight: 500;
        color: #1e3fba;
        line-height: 1.5
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.guest-price-cell {
        order: 3;
        width: 32%;
        margin-bottom: 25px
    }

    .ltr .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.guest-price-cell {
        padding-right: .5rem;
        margin-left: 55px
    }

    .rtl .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.guest-price-cell {
        padding-left: .5rem;
        margin-right: 55px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.guest-price-cell:before {
        content: "Price";
        display: block;
        font-size: 10px;
        color: #6b7280;
        line-height: 1.5;
        margin-bottom: 8px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.guest-price-cell a.guest-login-link {
        font-weight: 500;
        line-height: 1.5;
        font-size: 12px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(4) {
        order: 4;
        width: 30%;
        margin-bottom: 25px
    }

    .ltr .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(4) {
        text-align: left;
        padding-left: 55px!important
    }

    .rtl .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(4) {
        text-align: right;
        padding-right: 55px!important
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(4):before {
        content: "Item Total";
        display: block;
        font-size: 10px;
        color: #6b7280;
        line-height: 1.5;
        margin-bottom: 8px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(4) span {
        font-weight: 500;
        color: #1f2937;
        line-height: 1.5
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.guest-srp-cell {
        order: 5;
        width: 45%;
        margin-bottom: .75rem
    }

    .ltr .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.guest-srp-cell {
        padding-right: .5rem;
        padding-left: 55px!important
    }

    .rtl .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.guest-srp-cell {
        padding-left: .5rem;
        padding-right: 55px!important
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.guest-srp-cell:before {
        content: "Suggested Retail Price";
        display: block;
        font-size: 10px;
        color: #6b7280;
        line-height: 1.5;
        margin-bottom: 8px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td.guest-srp-cell span {
        font-weight: 500;
        color: #1f2937;
        line-height: 1.5
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(6) {
        order: 6;
        width: 25%;
        text-align: left;
        margin-bottom: .75rem;
        padding: 0 .25rem;
        border-left: 1px solid rgb(228,231,236);
        padding-left: 10px!important;
        border-right: 1px solid rgb(228,231,236);
        padding-right: 10px!important
    }

    .ltr .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(6) {
        text-align: left
    }

    .rtl .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(6) {
        text-align: right
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(6):before {
        content: "Gross Profit";
        display: block;
        font-size: 10px;
        color: #6b7280;
        line-height: 1.5;
        margin-bottom: 8px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(6) span {
        font-weight: 500;
        color: #1f2937;
        line-height: 1.5
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(7) {
        order: 7;
        width: 25%;
        margin-bottom: 1rem
    }

    .ltr .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(7) {
        text-align: left;
        padding-left: 25px!important
    }

    .rtl .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(7) {
        text-align: right;
        padding-right: 25px!important
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(7):before {
        content: "Margin";
        display: block;
        font-size: 10px;
        color: #6b7280;
        line-height: 1.5;
        margin-bottom: 8px
    }

    .product-details-wrap .product-variants-section .table-responsive .table tbody tr td:nth-child(7) span {
        font-weight: 500;
        color: #1f2937;
        line-height: 1.5
    }

    .product-details-wrap .product-variants-section .guide-icon-tooltip {
        font-size: 10px;
        color: #9ca3af;
        text-decoration: underline;
        align-items: center;
        gap: .375rem;
        margin-top: 0
    }

    .product-details-wrap .product-variants-section .guide-icon-tooltip svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0
    }

    .product-details-wrap .product-variants-section tbody tr td:nth-child(2) .guide-icon-tooltip {
        display: flex!important;
        justify-content: center
    }

    .product-details-wrap .product-variants-section .icon-guide-tooltip {
        display: none!important
    }

    .product-details-wrap .product-variants-section .icon-guide-tooltip-mobi {
        display: flex!important;
        margin-top: 5px;
        margin-bottom: 10px
    }
}

.product-details-wrap .icon-guide-tooltip-mobi {
    display: none!important
}

.product-details-wrap .icon-guide-tooltip-mobi .volume-text {
    font-size: 11x!important
}

.badge-primary {
    background-color: #eef5fb!important
}

.product-details-tags a {
    padding: 5px 10px!important
}

.product-price {
    margin-bottom: 0
}

.product-gallery {
    width: 55%
}

.btn-w-100 {
    width: 100%!important;
    text-align: center
}

.quantity-product-mobile-table {
    display: none!important
}

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -2px 8px #00000014
}

.badge-secondary {
    border: 1px solid rgb(228,231,236);
    background-color: #f2f4f7
}

.category-item-table-mobile,.info-icon-tooltip-mobile {
    display: none!important
}

.limit-1-line {
    color: #101828!important;
    cursor: pointer
}

.popup-modal {
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
    box-sizing: border-box
}

.remove-control {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px
}

.btn-remove-all,.btn-remove-all.loading {
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-remove-all.placeholder {
    visibility: hidden;
    height: 36px
}

.remove-control-desktop {
    display: flex;
    align-items: center;
    gap: 12px
}

.btn-remove-all-desktop,.btn-remove-all-desktop.loading {
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-remove-all-desktop.placeholder {
    visibility: hidden;
    height: 36px
}

.quantity-control,.quantity-control-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 110px;
    justify-content: center;
    white-space: nowrap
}

.variations-table {
    width: 100%;
    table-layout: fixed
}

.quantity-display {
    display: inline-block;
    min-width: 48px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    white-space: nowrap
}

.delete-icon,.btn-delete-mobile {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

tbody#variationsBody tr,.variations-table tbody tr {
    align-items: center;
    min-height: 72px
}

.price-cell span,.total-cell span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media (max-width: 991.98px) {
    .category-item-table-mobile {
        display:flex!important;
        font-weight: 500;
        margin-bottom: 10px
    }

    .product-gallery-thumbnail {
        display: none!important
    }

    .product-gallery {
        display: block
    }

    .product-gallery-preview {
        width: 100%
    }

    .product-gallery-preview .swiper-slide {
        display: flex;
        justify-content: center
    }

    .gallery-preview-slide {
        width: 100%;
        max-width: 100%
    }

    .gallery-preview-item {
        width: 100%;
        background: #fff;
        border-radius: 12px;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .gallery-preview-item img {
        width: 100%;
        height: auto;
        -o-object-fit: contain;
        object-fit: contain
    }

    .product-gallery-preview .swiper-button-next,.product-gallery-preview .swiper-button-prev {
        width: 37px!important;
        height: 37px!important;
        border-radius: 50%!important;
        background: #fff!important;
        box-shadow: 0 0 6px #00000026!important;
        top: 50%!important;
        transform: translateY(-50%)!important;
        border: 1px solid rgb(208,213,221)!important
    }

    .product-gallery-preview .swiper-button-next:after,.product-gallery-preview .swiper-button-prev:after {
        font-size: 16px!important;
        color: #444!important
    }

    .product-gallery-preview-pagination {
        position: static;
        margin-top: 10px;
        text-align: center
    }

    .swiper-pagination-bullet-active {
        background: #000!important
    }

    .ltr .swiper {
        margin-left: 1px!important
    }

    .rtl .swiper {
        margin-right: 1px!important
    }

    .product-gallery {
        width: 100%
    }

    .info-icon-tooltip-mobile {
        display: flex!important
    }
}

.product-name-mobile {
    display: none;
    white-space: nowrap;
    overflow: hidden;
    font-size: 18px;
    white-space: normal
}

.pdp-mobile {
    display: none
}

.pdp-desktop-information {
    display: block
}

.pdp-desktop-information .product-coming-soon {
    font-size: 30px;
    font-weight: 600
}

.product-eta-desktop {
    color: #d63832;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px
}

.btn-select-option-pdp {
    width: 100%;
    padding: 8px 16px;
    border: none;
    color: #fff;
    background-color: #d63832;
    border-radius: 999px;
    transition: .3s;
    margin-top: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px
}

.btn-select-option-pdp:hover {
    background-color: #c8312c
}

.product-specification-title {
    margin-top: 0!important
}

.details-info-middle {
    border-top: 1px solid var(--border-color-lite)!important
}

.product-variants-section tbody tr td:nth-child(2) {
    position: relative
}

.product-variants-section tbody tr td:nth-child(2) .icon-guide-tooltip {
    position: absolute;
    z-index: 1
}

.ltr .product-variants-section tbody tr td:nth-child(2) .icon-guide-tooltip {
    left: 0
}

.rtl .product-variants-section tbody tr td:nth-child(2) .icon-guide-tooltip {
    right: 0
}

@media screen and (max-width: 991px) {
    .pdp-desktop-information,.product-eta-desktop {
        display:none!important
    }

    .pdp-mobile {
        display: block;
        margin-top: 10px
    }

    .pdp-mobile .product-eta {
        color: #d63832;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        padding-bottom: 10px
    }

    .pdp-mobile .product-coming-soon {
        font-size: 24px;
        font-weight: 600
    }

    .text-top-seller {
        font-size: 12px!important
    }

    .shop-more {
        display: none
    }

    .product-specification-pdp {
        margin: 0!important
    }

    .details-info-top {
        margin-bottom: 10px
    }

    .details-info-middle {
        padding: 0!important
    }

    .product-details-wrap {
        margin-top: 20px!important
    }

    .details-info-middle {
        border-top: none!important
    }

    .gallery-preview-item {
        height: 225px!important
    }

    .quantity-product-desktop-table {
        display: none!important
    }

    .quantity-product-mobile-table {
        display: block!important
    }

    .quantity-mobile-wrapper {
        display: flex!important;
        flex-direction: column!important;
        gap: 6px!important;
        align-items: flex-start!important
    }

    .quantity-mobile-wrapper .info-icon-tooltip-mobile {
        order: 1;
        display: flex!important;
        margin-bottom: 0
    }

    .quantity-mobile-wrapper .info-icon-tooltip-mobile.is-hidden-volume {
        display: none!important
    }

    .quantity-mobile-wrapper .quantity-product-desktop-table {
        order: 2;
        width: 100%;
        display: flex!important
    }

    .quantity-mobile-wrapper .quantity-product-desktop-table .icon-guide-tooltip.is-hidden-volume {
        display: none!important
    }

    .quantity-mobile-wrapper .quantity-product-desktop-table .d-flex {
        gap: 6px!important
    }

    .quantity-mobile-wrapper .quantity-product-desktop-table input[type=number] {
        font-size: 14px!important;
        font-weight: 500!important;
        min-width: 50px!important;
        height: 32px!important;
        text-align: center!important;
        padding: 4px 8px!important
    }

    .quantity-mobile-wrapper .quantity-product-desktop-table .btn-inc,.quantity-mobile-wrapper .quantity-product-desktop-table .btn-dec {
        width: 32px!important;
        height: 32px!important;
        font-size: 18px!important;
        display: flex!important;
        align-items: center!important;
        justify-content: center!important
    }

    .quantity-mobile-wrapper .quantity-product-desktop-table .delete-icon {
        width: 32px!important;
        height: 32px!important;
        font-size: 20px!important
    }

    .remove-all-confirm-box {
        flex-direction: column
    }

    .btn-remove-all-confirm {
        width: 100%;
        justify-content: center;
        margin: 5px 0
    }

    .th-quantity-pdp {
        min-width: 0
    }
}

@media screen and (max-width: 767px) {
    .product-name-desktop {
        display:none
    }

    .product-name-mobile {
        display: block
    }
}

.product-list-card .product-card {
    margin: 0
}

.grid-view-products {
    display: flex;
    flex-wrap: wrap
}

.grid-view-products .grid-view-products-item {
    width: 16.66%;
    padding: 6px
}

@media screen and (max-width: 1300px) {
    .grid-view-products .grid-view-products-item {
        width:25%
    }
}

@media screen and (max-width: 1100px) {
    .grid-view-products .grid-view-products-item {
        width:33.33%
    }
}

@media screen and (max-width: 991px) {
    .grid-view-products .grid-view-products-item {
        width:25%
    }
}

@media screen and (max-width: 830px) {
    .grid-view-products .grid-view-products-item {
        width:33.33%;
        padding: 6px
    }

    .product-card__cta span {
        font-size: 12px
    }

    .product-card .btn-add-to-cart svg {
        width: 15px;
        height: 15px
    }
}

@media screen and (max-width: 576px) {
    .grid-view-products .grid-view-products-item {
        width:50%
    }
}

.section-title-category {
    font-weight: 600
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield
}

input[type=number]:focus {
    outline: none
}

input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number],.quantity-control-mobile input[type=number],.table-quick-order input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield
}

.quantity-control-mobile input[type=number]::-webkit-outer-spin-button,.quantity-control-mobile input[type=number]::-webkit-inner-spin-button,.table-quick-order input[type=number]::-webkit-outer-spin-button,.table-quick-order input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.product-is-fresh {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #FEF0C7;
    background: #fff5eb;
    margin-bottom: 24px;
    align-items: center
}

.span-is-fresh {
    display: flex;
    align-items: center;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 5px;
    padding: 2px 8px;
    font-weight: 600
}

.span-note {
    color: #890001
}

@media screen and (max-width: 767px) {
    .product-is-fresh {
        padding:10px 16px
    }

    .span-is-fresh,.span-note {
        font-size: 12px
    }
}
