@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
    font-family: "Nunito", sans-serif;
    line-height: 23px;
    font-size: 16px;
}
:root {
    --primary: #f6851d;
    --second: #ffcb08;
}
.scrollbar {
    overflow-y: overlay;
}

.scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

.scrollbar::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #d62929;
}
.clamp-1 {
    text-overflow: ellipsis;
    line-height: 20px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp-2 {
    text-overflow: ellipsis;
    line-height: 20px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp-3 {
    text-overflow: ellipsis;
    line-height: 20px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shadowC {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.slider_nav_up {
    animation: slider_nav_up 0.7s;
}
ul.dropdown {
    animation: slider_nav_up 0.7s;
    -webkit-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -moz-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

ul.dropdown li a {
    display: block;
    padding: 10px;
    color: #333333;
    border-bottom: 1px solid #dddddd;
}

ul.dropdown li:last-child a {
    border-bottom: 0px !important;
}

@-webkit-keyframes slider_nav_up {
    0% {
        transform: perspective(600px) rotateX(-90deg);
    }

    100% {
        transform: perspective(600px) rotateX(0deg);
    }
}

@keyframes slider_nav_up {
    0% {
        transform: perspective(600px) rotateX(-90deg);
    }

    100% {
        transform: perspective(600px) rotateX(0deg);
    }
}

.menu-header a.active {
    color: var(--primary);
}
.menu-header-child li:last-child {
    border-bottom: 0px;
}
.menu-header-child {
    -moz-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 0;
    visibility: hidden;
}
.menu-header li:hover .menu-header-child {
    opacity: 1;
    visibility: visible;
}
.evo_sidebar_search,
#offcanvas-cart {
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1),
        visibility 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    touch-action: manipulation;
}
.evo_sidebar_search.active,
#offcanvas-cart.active {
    visibility: visible;
    transform: translateX(0);
}
.evo_sidebar_search button {
    border-radius: 0.25em;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.backdrop__body-backdrop___1rvky {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.backdrop__body-backdrop___1rvky.active {
    visibility: visible;
    opacity: 0.5;
}
.owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.owl-carousel button.owl-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 100%;
    margin: 0px 2px;
    opacity: 0.5;
}
.owl-carousel button.owl-dot.active {
    opacity: 1;
}
.zoom-effect img {
    ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.zoom-effect:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.item-product {
    border-bottom: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2;
}
#js_data_product_filter .item-product,
.slider-product .item-product {
    border-bottom: 0px solid #f2f2f2;
    border-left: 0px solid #f2f2f2;
}
.item-product:nth-child(5n) {
    border-right: 1px solid #f2f2f2;
}
.item-product img + img {
    transform: translateY(20px);
}
.item-product img {
    transition: opacity 0.3s;
}
.item-product:hover img {
    opacity: 0;
}
.item-product:hover img + img {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
}
.item-product img + img {
    visibility: hidden;
    transition: all 500ms;
    transform: translateY(20px);
}
a {
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}
.h2_why::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0px;
    width: 100px;
    height: 5px;
    background: var(--primary);
    transform: translateX(-50%);
}
.payment-title:before {
    content: "";
    height: 1px;
    width: 100%;
    left: 0;
    position: absolute;
    background-color: #777;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 0;
}
#cart-show-header {
    height: calc(100vh - 100px);
}
.titleH2::before {
    content: "";
    height: 3px;
    width: 200px;
    left: 0;
    position: absolute;
    background-color: var(--primary);
    bottom: -1px;
    z-index: 0;
}
.acc__card:last-child {
    border-bottom: 0px;
}
