::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #aaa;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

@font-face {
    src: url("../fonts/LibreBodoni-Bold.ttf");
    font-family: "LibreBodoni";
    font-weight: 700;
}

@font-face {
    src: url("../fonts/LibreBodoni-SemiBold.ttf");
    font-family: "LibreBodoni";
    font-weight: 500;
}

@font-face {
    src: url("../fonts/LibreBodoni-Medium.ttf");
    font-family: "LibreBodoni";
    font-weight: 300;
}

@font-face {
    src: url("../fonts/LibreBodoni-Regular.ttf");
    font-family: "LibreBodoni";
    font-weight: normal;
}

:root {
    --label-color: #E50001;
    --price-color: #ea6b1a;
    --bg-primary: #FAE7F3;
    --font-primary2: "LibreBodoni";
    --color-blue: #007bff;
}

.absolute-footer, html {
    background-color: #fff !important;
}

#wrapper, #main {
    background: #fff !important;
}

ul, li {
    margin-bottom: 0px !important;
}

.row-0 {
    padding: 0px 0px !important;
}

.pd-0 {
    padding: 0px !important;
}

.row-5 {
    padding: 0px 10px !important;
}

.pd-5 {
    padding: 0px 5px 8px 5px !important;
}

.row-20 {
    padding: 0px 0px !important;
}

.pd-20 {
    padding: 0px 20px 20px 20px !important;
}

.pd-35 {
    padding: 0px 35px 20px 35px !important;
}

.row-7 {
    padding: 0px 7px !important;
}

.pd-7 {
    padding: 0px 7px 7px 7px !important;
}

.noPadding {
    padding-bottom: 0px !important;
}

.mr-1 {
    margin-right: 10px !important;
}

.mr-2 {
    margin-right: 20px;
}

.mr-3 {
    margin-right: 30px;
}

.mr-4 {
    margin-right: 40px;
}

.mr-4 {
    margin-right: 50px;
}

.ml-1 {
    margin-left: 10px;
}

.ml-2 {
    margin-left: 20px;
}

.ml-3 {
    margin-left: 30px;
}

.ml-4 {
    margin-left: 40px;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.mb-2 {
    margin-bottom: 20px !important;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.button_style {
    background-color: var(--primary-color);
    color: #fff !important;
    text-align: center;
    padding: 5px 25px;
    font-size: 15px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 9;
    border-radius: 5px;
}

.button_style:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.button_style:hover:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/**back to top**/
.progress-wrap {
    position: fixed;
    display: block;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    text-align: center;
    position: absolute;
    cursor: pointer;
    font-family: 'Font Awesome 6 Pro';
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap {
    bottom: 30px;
    height: 46px;
    width: 46px;
    border-radius: 46px;
    background-color: #ffffff;
    box-shadow: inset 0 0 0 2px #cccccc;
}

.progress-wrap.btn-left-side {
    left: 30px;
}

.progress-wrap.btn-right-side {
    right: 30px;
}

.progress-wrap::after {
    width: 46px;
    height: 46px;
    color: #1f2029;
    font-size: 24px;
    content: '\f341';
    line-height: 46px;
}

.progress-wrap:hover::after {
    color: #1f2029;
}

.progress-wrap svg.progress-circle path {
    stroke: #1f2029;
    stroke-width: 2px;
}

/**menu**/
div#mega-menu-wrap-primary {
    width: 100% !important;
}

#mega-menu-wrap-primary #mega-menu-primary {
    display: flex;
    justify-content: center;
}

div#mega-menu-wrap-primary ul li a {
    color: #000 !important;
    font-weight: normal !important;
    padding: 0 15px !important;
    text-transform: unset !important;
    font-size: 16px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center;
}

div#mega-menu-wrap-primary ul li a:hover {
    color: var(--primary-color) !important;
}

div#mega-menu-wrap-primary ul li.mega-current-menu-item a {
    color: var(--primary-color) !important;
}

div#mega-menu-wrap-primary ul li.mega-current-menu-item a:after {
    width: 100%;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
    -webkit-box-shadow: 0 16px 32px rgba(34, 37, 49, 0.24);
    box-shadow: 0 16px 32px rgba(34, 37, 49, 0.24);
    display: block !important;
    border-top: 3px solid var(--primary-color);
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li {
    padding: 0 !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    height: unset !important;
    padding: 5px 15px !important;
    display: block !important;
    -webkit-transition: .4s;
    transition: .4s;
    font-size: 16px !important;
    color: #000 !important;
    text-transform: unset !important;
    background: #fff !important;
    text-align: left !important;
    font-weight: normal !important;
    border-bottom: 1px solid #f2f2f2 !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
    color: var(--primary-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover:after {
    display: none !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    color: #000 !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    color: #000 !important;
    text-transform: unset !important;
    font-size: 16px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 0px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
    color: var(--primary-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    background: #fff !important;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 10%);
    padding: 15px !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li {
    padding: 0 !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    margin-bottom: 0px !important;
    text-align: left !important;
    padding-bottom: 5px !important;
    padding-left: 0px !important;
    border-bottom: 0 !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu a:after {
    display: none !important;
}

/**widget**/
.widget {
    width: 100%;
    background: rgba(255, 249, 249, 1);
    padding: 20px;
}

.widget-title, span.widget-title, h4.filter-title {
    font-size: 20px !important;
    line-height: 24px !important;
    position: relative !important;
    margin: 0 0 30px 0 !important;
    text-transform: unset !important;
    width: 100% !important;
    display: block;
}

.is-divider.small {
    display: none;
}

.widget-title:after, span.widget-title:after, h4.filter-title:after {
    content: '';
    height: 2px;
    background: var(--primary-color);
    width: 30px;
    display: block;
    margin-top: 10px;
}

.widget-category ul li a {
    color: #333;
    font-size: 15px;
}

.widget-category ul li a:hover {
    color: var(--primary-color)
}

.widget-post-list .widget-post-item {
    width: 100%;
    margin-bottom: 25px;
}

.widget-post-list .widget-post-item:last-child {
    margin: 0;
}

.widget-post-list .widget-post-item {
    display: flex;
    flex-flow: wrap;
}


.widget-post-list .widget-post-item .widget-post-thumbnail {
    width: 100px;
    height: 80px;
}

.widget-post-list .widget-post-item .widget-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-post-list .widget-post-item .widget-post-content {
    width: calc(100% - 120px);
    padding: 0 0 0 10px;
}

.widget-post-list .widget-post-item .widget-post-content .widget-post-title {
    display: inline-block;
    color: #000;
    font-weight: normal;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    font-size: 18px;
    line-height: 26px;
}

.widget-post-list .widget-post-item .widget-post-content .widget-post-title:hover {
    color: var(--color-blue);
}

.widget-post-list .widget-post-item .widget-post-content .product-price {
    font-size: 13px;
}

.widget-post-list .widget-post-item .widget-post-content .product-price ins span {
    color: var(--primary-color) !important;
}

.widget-post-list .widget-post-desc {
    color: rgba(151, 149, 143);
    font-size: 0.75rem;
    line-height: 1rem;
    margin: 10px 0 0 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/**post**/
.post-item {
    width: 100%;
    position: relative;
}

.post-item .post-thumbnail {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.post-item .post-thumbnail:before {
    content: "";
    display: block;
    padding-bottom: 100%;
    overflow: hidden;
    transition: all .3s;
}

.post-item .post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .3s;
    border-radius: 0.375rem;
}

.post-item .post-content {
    border: 1px solid rgba(242, 112, 109, 1);
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    width: 90%;
    margin-top: -30px;
    position: relative;
    z-index: 9;
}

.post-item .post-meta {
    font-size: 14px;
    font-weight: normal;
    margin: 0 0 5px 0;
    color: var(--price-color);
}

.widget-post-meta {
    font-size: 14px;
    font-weight: normal;
    margin: 8px 0 0 0;
    color: var(--primary-color);
}

.post-item .post-title a {
    font-size: 18px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 28px;
    height: 60px;
    font-weight: normal;
}

.post-item .post-title a:hover {
    color: var(--color-blue);
}

.post-item:hover .post-thumbnail img {
    transition: all .3s;
    transform: scale(1.1);
}

.post-item .post-link a {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    border-bottom: 1px solid rgba(197, 197, 197, 1);
    padding-bottom: 3px;
}

/**pagination**/
.pagination {
    width: 100%;
    display: inline-block;
}

.pagination ul li a, .pagination ul li span {
    color: #000;
    border: 1px solid #e9e9e9;
    width: 35px;
    height: 35px;
    padding: 0px;
    line-height: 35px;
    font-weight: normal;
    background: #fff;
    border-radius: 99px !important;
}

.pagination ul li a:hover, .pagination ul li span:hover {
    background: var(--primary-color) !important;
    color: #fff;
    font-weight: normal !important;
    border: 1px solid var(--primary-color) !important;
}

.wp-pagenavi {
    width: 100%;
    display: inline-block;
    margin: 20px 0 0 0;
    text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
    background: #fff;
    border: 1px solid #e9e9e9;
    width: 35px;
    height: 35px;
    padding: 0px;
    line-height: 35px;
    font-weight: normal;
    display: inline-block;
    border-radius: 99px !important;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current, .pagination span.current {
    background: var(--primary-color) !important;
    color: #fff;
    font-weight: normal !important;
    border: 1px solid var(--primary-color) !important;
}

/**alert**/
.alert {
    position: relative;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

.alert-success {
    color: #0f5132 !important;
    background-color: #d1e7dd !important;;
    border-color: #badbcc !important;;
}

.alert-danger {
    color: #842029 !important;
    background-color: #f8d7da !important;
    border-color: #f5c2c7 !important;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf;
}

/**slide**/
.swiper-container {
    position: relative;
}

body .swiper-button-next, body .swiper-button-prev {
    width: 40px;
    height: 40px;
    border: none;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25) !important;
    outline: none;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: .3s;
    transition: .3s;
    transform: translateY(-50%) !important;
    top: 50% !important;
    border-radius: 50% !important;
    color: rgba(0, 0, 0, 1) !important;
    margin: 0;
}

body .swiper-button-prev.swiper-button-disabled,
body .swiper-button-next.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

body .swiper-button-next:after, body .swiper-button-prev:after {
    content: '' !important;
    font-size: 18px;
    color: #fff;
}

body .swiper-button-next {
    right: -15px;
}

body .swiper-button-prev {
    left: -15px;
}

body .swiper-button-next:after, body .swiper-button-prev:after {
    display: none !important;
}

body .swiper-button-next i, body .swiper-button-prev i {
    color: rgba(0, 0, 0, 1) !important;
}

/**category**/
.category-description {
    font-weight: 300;
    font-size: 16px;
}

.entry-content {
    padding: 0 !important;
    font-weight: 300;
    font-size: 16px;
    font-family: var(--font2);
    color: rgba(0, 0, 0, 1);
}

.category-description p
.category-description ul li,
.category-description ol li,
.entry-content p,
.entry-content ul li,
.entry-content ol li {
    margin: 0 0 10px 0 !important;
}

.category-description ul,
.category-description ol,
.entry-content ul,
.entry-content ol {
    margin-left: 15px !important;
}

.category-description table,
.category-description table tr td,
.entry-content table,
.entry-content tr td {
    border-collapse: collapse;
    border: 1px solid #3333;
}

.category-description table tr td,
.category-description table tr th,
.entry-content tr td,
.entry-content tr th {
    padding: 10px;
    color: #333 !important;
}

.entry-content a, .category-description a {
    color: var(--primary-color) !important;
}

/**header**/
.btfw-icon {
    display: inline-block;
    width: 0.7em;
    height: 0.7em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

#header .btfw-icon {
    font-size: 32px;
}

header#header ul.header-nav.header-nav-main {
    display: flex;
    align-items: center;
    gap: 25px;
}

header#header ul.header-nav.header-nav-main li {
    margin: 0 !important;
}

header#header .flex-col.hide-for-medium.flex-right {
    width: 200px !important;
}

.flex-col.hide-for-medium.flex-left.flex-grow {
    width: calc(100% - 400px) !important;
}

/**slide**/
.banner__main h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    margin: 0;
}

.banner__main h2 {
    font-size: 52px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.62px;
    font-family: var(--font-primary2);
    margin: 20px 0;
}

.banner__main .desc {
    color: #333;
    max-width: 426px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
}

/**footer**/
#footer p {
    font-size: 15px;
    margin-bottom: 10px;
    color: #000;
}

#footer .footer-address p {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

#footer a {
    color: #000;
}

#footer a:hover {
    color: #007bff;
}

#footer .footer-title {
    font-size: 16px;
    margin-bottom: 16px;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
}

#footer .footer-menu a {
    min-height: unset;
    padding: 0;
    margin: 0 0 10px 0;
}

#footer .footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#footer .footer-social a {
    background: #fff;
    border-radius: 8px;
    padding: 12px 8px;
    font-size: 12px;
    height: 45px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    transition: 0.3s all;
}

#footer .footer-social a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

#footer .footer-social a:hover {
    border-color: var(--color-blue)
}

/**category**/
.category-item h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 24px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

/**home-title**/
.home-title h3 {
    font-weight: 500;
    letter-spacing: 0.64px;
    font-size: 52px;
    line-height: 62px;
    margin: 0;
    font-family: var(--font-primary2);
}

/**product**/
.product-slide .product-small.col {
    padding: 0 !important;
}

.product-small.col {
    border-radius: 8px;
}

.product-small.col .box-image img {
    border-radius: 8px 8px 0 0;
}

.product-small.col .box-text.box-text-products {
    background: #fff;
    border-radius: 0 0 8px 8px;
    padding: 16px;
}

.product-small.col p.category.uppercase {
    font-size: 12px;
    text-transform: uppercase;
    color: #969696 !important;
    letter-spacing: 1.8px;
}

.product-small.col p.name.product-title.woocommerce-loop-product__title a {
    font-weight: 700;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
    color: #000;
}

.product-small.col p.name.product-title.woocommerce-loop-product__title a:hover {
    color: var(--color-blue) !important;
}

.product-small .price-wrapper ins span, .product-small .price-wrapper b {
    color: var(--price-color) !important;
    font-size: 16px !important;
}

.product-small .price-wrapper del {
    color: #757575;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-left: 8px;
}

.product-small .price-wrapper del span {
    color: #757575;
}

.badge-container.absolute.left.top.z-1 {
    margin: 0;
    width: 100%;
}

.badge-container span.onsale {
    width: 40px;
    height: 40px;
    background: var(--primary-color) !important;
    display: block;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.product-small span.percent-discount {
    border-radius: 4px;
    background: var(--label-color);
    display: inline-block;
    padding: 2px 5px;
    align-items: flex-start;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    color: #fff;
}

.badge-container.absolute.left.top.z-1 {
    display: none;
}

/**abouts**/
.abouts {
    width: 100%;
}

.abouts h3 {
    font-weight: 500;
    letter-spacing: 0.64px;
    font-size: 52px;
    line-height: 62px;
    font-family: var(--font-primary2);
    margin-bottom: 25px;
}

.abouts p {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    margin: 0 0 20px 0;
}

.radius-17 img {
    border-radius: 17px !important;
}

/**wp_collection**/
.collection {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #FFF;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.collection:before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    cursor: pointer;
}

.collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.collection:hover:before {
    -webkit-animation: shineUp 1.1s;
    animation: shineUp 1.1s;
}

@keyframes shineUp {
    100% {
        left: 125%;
    }
}

.absolute-footer {
    display: none;
}

/**tiktok**/
.tiktok {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #FFF;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.tiktok img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

section.breadcrumbs {
    background: #F6F6F6;
    padding: 10px 0;
    font-size: 15px;
}

section.breadcrumbs p {
    margin: 0 !important;
}

nav.woocommerce-breadcrumb.breadcrumbs.uppercase {
    display: none;
}

.product-info {
    padding-top: 0 !important;
}

h1.product-title.product_title.entry-title {
    font-weight: 700;
    font-size: 24px;
}

table.variations .label {
    font-size: 17px !important;
}

.ux-swatch.tooltip.ux-swatch--label {
    border: 1px solid #ccc !important;
    box-shadow: unset !important;
    color: #000;
    font-size: 14px;
    border-radius: 3px;
    overflow: hidden;
}

.ux-swatch.tooltip.ux-swatch--label.tooltipstered.selected {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.ux-swatch.tooltip.ux-swatch--label.tooltipstered.selected:before {
    content: '';
    padding: 4px;
    font-size: 10px;
    line-height: 1;
    position: absolute;
    top: -15px;
    right: -13px;
    background: var(--primary-color);
    width: 26px;
    height: 24px;
    transform: rotate(45deg);
    border-radius: 100%;
}

.ux-swatch.tooltip.ux-swatch--label.tooltipstered.selected:after {
    content: '';
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAHdElNRQfkCw8RJSHXzNuNAAAAfElEQVQoz7WRsQ2CYBQGLwRCaLRkDwqdwcLCSZjCmj2AgtoJXMbEUquzEAz+8Je89r675sGG59ka0ig+0ZFbJDGbgRwoAXemi/hb1QZw793ebB739cPgTdV2qvzZAFY+VL+VwB4nB59j5RLYhBVXcTBZw7NJDAN49LrFyz67GnkMHStx0wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMC0xMS0xNVQxNzozNzozMyswMDowMGfDTJEAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjAtMTEtMTVUMTc6Mzc6MzMrMDA6MDAWnvQtAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0px;
    right: 0;
    width: 6px;
    height: 6px;
}

.product-info .price-wrapper ins span, .product-small .price-wrapper b {
    color: var(--price-color) !important;
    font-size: 20px !important;
}

.product-info .price-wrapper del {
    color: #757575;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-left: 8px;
}

.product-info .price-wrapper del span {
    color: #757575;
}

span.percent-discount {
    border-radius: 4px;
    background: var(--label-color);
    display: inline-block;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    padding: 3px 8px;
    font-weight: bold;
    margin-left: 10px;
    color: #fff;
}

.category-entry {
    margin: 40px 0;
}

.post-related {
    margin: 0 0 30px 0;
}

.qty {
    box-shadow: unset !important;
    width: 80px !important;
    height: 50px !important;
    font-weight: 700;
    border-right: 0 !important;
    border-left: 0 !important;
}

.quantity .button.minus {
    border-radius: 5px 0 0 5px;
    border-right: 0 !important;
}

.quantity .button.minus, .quantity .button.plus {
    background: transparent;
    width: 40px !important;
    height: 50px;
    font-size: 16px;
}

.quantity .button.plus {
    border-left: 0 !important;
    border-radius: 0 5px 5px 0;
}

.woocommerce-billing-fields input {
    box-shadow: unset !important;
    border: 1px solid rgba(255, 226, 226, 1) !important;
    height: 50px !important;
}

p#billing_address_1_field {
    width: 100% !important;
}

textarea#order_comments {
    box-shadow: unset !important;
    border: 1px solid rgba(255, 226, 226, 1) !important;
}

button.button.buy_now_button {
    background: #000 !important;
    height: 45px !important;
    border-radius: 5px;
}

button.single_add_to_cart_button.button.alt {
    width: 100%;
    height: 45px;
    border: 1px solid #000 !important;
    background: transparent !important;
    border-radius: 5px !important;
    color: #000 !important;
}

p.availability {
    display: none;
}

.product-info .price-wrapper {
    margin: 10px 0;
}

.woocommerce-tabs.wc-tabs-wrapper.container.tabbed-content {
    border: 0 !important;
}

ul.tabs.wc-tabs.product-tabs.small-nav-collapse.nav.nav-uppercase.nav-line.nav-left {
    display: flex;
    justify-content: center;
}

ul.tabs.wc-tabs.product-tabs.small-nav-collapse.nav.nav-uppercase.nav-line.nav-left li a:before {
    display: none !important;
}

ul.tabs.wc-tabs.product-tabs.small-nav-collapse.nav.nav-uppercase.nav-line.nav-left li a {
    background: rgba(255, 246, 244, 1);
    padding: 6px 25px;
    border-radius: 99px !important;
    color: #000 !important;
    text-transform: unset !important;
    font-size: 16px;
}

ul.tabs.wc-tabs.product-tabs.small-nav-collapse.nav.nav-uppercase.nav-line.nav-left li.active a,
ul.tabs.wc-tabs.product-tabs.small-nav-collapse.nav.nav-uppercase.nav-line.nav-left li a:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.shop-page-title.category-page-title.page-title {
    display: none;
}

.woocommerce-ordering {
    display: flex !important;
    justify-content: end;
    margin: 0 !important;
}

.product-filter .product-total {
    color: #000;
    font-size: 16px;
}

select.orderby {
    background-color: transparent !important;
    box-shadow: unset !important;
    border: 0 !important;
    width: auto;
    padding-right: 30px;
    color: #000;
    font-size: 16px;
    margin: 0;
}

.yith-wcan-filters {
    background: transparent !important;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > a, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > label > a {
    font-weight: normal;
    color: #000 !important;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item label {
    margin: 0 !important;
}

h4.filter-title {
    margin-bottom: 15px !important;
}

.category-entry .product-small.col .box-text.box-text-products{
    padding: 15px 0 !important;
}