html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@font-face {
    font-family: 'montserrat';
    src: url('../assets/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('../assets/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('../assets/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'poppins';
    src: url('../assets/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Hide scrollbar but allow scrolling */
::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

* {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer/Edge */
}

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

.a-tag-link {
    padding-bottom: 5px;
    border-bottom: solid 1px #fdfaf4;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: fit-content;
}

.a-tag-link h4 {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0.05em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fdfaf4;
}

.a-tag-link .logo {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    background: url(../assets/open-link.svg) no-repeat;
    background-size: contain;
}

.a-tag-link.green {
    border-bottom: solid 1px #0d4d28;
}

.a-tag-link.green h4 {
    color: #0d4d28;
}

.a-tag-link.green .logo {
    background: url(../assets/open-link-green.svg) no-repeat;
}

.a-tag-link.red {
    border-bottom: solid 1px #da252b;
}

.a-tag-link.red h4 {
    color: #da252b;
}

.a-tag-link.red .logo {
    background: url(../assets/open-link-red.svg) no-repeat;
}

.article-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 4px 2px rgba(75, 35, 6, 0.1);
    padding: 20px;
    background-color: #ffffff;
}

.article-card .img {
    width: 100%;
    height: 307px;
    margin-bottom: 20px;
}

.article-card .info {
    display: flex;
    flex-direction: column;
    height: 242px;
}

.article-card .info .title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 10px;
    height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-card .info .date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #a89f99;
    margin-bottom: 20px;
}

.article-card .info .date .icon {
    width: 15px;
    min-width: 15px;
    max-width: 15px;
    height: 15px;
    min-height: 15px;
    max-height: 15px;
    background: url(../assets/calendar-gray.svg) no-repeat;
    background-size: contain;
}

.article-card .info .description {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: auto;
    height: 84px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-card .info a {
    font-size: 500;
    padding-bottom: 0;
    border-bottom: 0;
}

.article-card .info a h4 {
    text-decoration: underline;
    font-weight: 500;
}

.product-item-card {
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px 2px rgba(75, 35, 6, 0.1);
    height: 350px;
}

.product-item-card a {
    text-decoration: none !important;
}
.product-item-card  {
    text-decoration: none !important;
}

.product-item-card img, .product-item-card .img {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 215px;
    min-height: 215px;
    max-height: 215px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    object-fit: cover;
}

.product-item-card h2, .product-item-card .title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 20px;
    height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-item-card span, .product-item-card .price {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
}

.custom-pop-up {
    width: 100vw;
    display: flex;
    background-color: #fdfaf4;
    box-shadow: 0px 4px 4px 0px #4B23061A;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 50;
    display: none;
}

.custom-pop-up .content-wrap {
    margin: 0 auto;
    max-width: 1080px;
    width: 100%;
}

@media (max-width: 768px) {
    .custom-pop-up .content-wrap {
        max-width: 768px;
    }
}

.custom-pop-up .content-wrap .content {
    padding: 50px;
    display: flex;
    justify-content: space-between;
}

.custom-pop-up .content-wrap .content .left {
    display: flex;
    gap: 50px;
}

.custom-pop-up .content-wrap .content .left .cols{
    display: flex;
    flex-direction: column;
}

.custom-pop-up .content-wrap .content .left .cols .title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 30px;
    text-decoration: none;
}

.custom-pop-up .content-wrap .content .left .cols ul li {
    margin-bottom: 20px;
}

.custom-pop-up .content-wrap .content .left .cols ul li a {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    text-decoration: none;
}

.custom-pop-up .content-wrap .content .left .cols ul li a:hover {
    color: #DA252B;
}

.custom-pop-up .content-wrap .content .right .img {
    width: 440px;
    height: 360px;
    margin-bottom: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.woocommerce-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 74px;
    margin-top: 50px;
}

.woocommerce-breadcrumb a {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    text-decoration: none;
}

.woocommerce-breadcrumb {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
}

.woocommerce-breadcrumb .icon {
    width: 20px;
    height: 20px;
    background: url(../assets/next.svg) no-repeat;
    background-size: contain;
}

.article-section {
    margin: 80px 0 100px;
}

.article-section .title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.article-section .title-bar .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
}

.article-section .title-bar .title br{
    display: none;
}

.article-section .grids {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.trash {
    width: 20px;
    height: 20px;
    background: url(../assets/trash.svg) no-repeat;
    background-size: contain;
    cursor: pointer;
}

.check-box {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    background: url(../assets/box.svg) no-repeat;
    background-size: contain;
}

.check-box.checked {
    background: url(../assets/checked-box.svg) no-repeat;
    background-size: contain;
}

/* Hide the checkbox */
.check-input {
    display: none;
}

/* Default unchecked box */
.check-box {
    width: 20px;
    height: 20px;
    background: url(../assets/box.svg) no-repeat center;
    background-size: contain;
    cursor: pointer;
}

/* Change background when checkbox is checked */
.check-input:checked + .check-box {
    background: url(../assets/checked-box.svg) no-repeat center;
    background-size: contain;
}


.container {
    margin: 0 auto;
    max-width: 1080px;
}

@media (max-width: 768px) {
    .container {
        max-width: 768px;
    }
}

body {
    /* Firefox */
    -moz-scrollbars-none: none;
    scrollbar-width: none;
    /* IE and Edge */
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

header {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 80;
}

header .content-wrap {
    max-width: 1240px;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

header .content-wrap .left {
    display: flex;
    align-items: center;
    gap: 40px;
}

header .content-wrap .left .main-logo {
    width: 175px;
    height: 40px;
    background: url(../assets/logo.png) no-repeat;
    background-size: contain;
}

header .content-wrap .left .btns-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

header .content-wrap .left .btns-wrapper a.active{
    color: #DA252B;
    font-weight: 600;
    position: relative;
}

header .content-wrap .left .btns-wrapper a.active::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: #DA252B;
}

header .content-wrap .left .btns-wrapper a {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    text-decoration: none;
}

header .content-wrap .left .btns-wrapper .btn-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 4px;
    padding-top: 4px;
    border-bottom: solid transparent 1px;
    cursor: pointer;
}

header .content-wrap .left .btns-wrapper .btn-wrap h4 {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

header .content-wrap .left .btns-wrapper .btn-wrap .icon {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    background: url(../assets/chev-down.svg) no-repeat;
    background-size: contain;
}

header .content-wrap .left .btns-wrapper .btn-wrap.active {
    border-bottom: solid #da252b 1px;
}

header .content-wrap .right {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .content-wrap .right .search,
header .content-wrap .right .cart,
header .content-wrap .right .icon,
header .content-wrap .right .account {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    cursor: pointer;
}

header .content-wrap .right .search {
    background: url(../assets/search-red.svg) no-repeat;
    background-size: contain;
}

header .content-wrap .right .account {
    background: url(../assets/account.svg) no-repeat;
    background-size: contain;
}

header .content-wrap .right .cart {
    background: url(../assets/cart-red.svg) no-repeat;
    background-size: contain;
}

header .content-wrap .right .auth {
    background-color: #da252b;
    border-radius: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 0 20px;
    text-decoration: none;
}

header .content-wrap .right .auth .icon {
    background: url(../assets/door.svg) no-repeat;
    background-size: contain;
}

header .content-wrap .right .auth h4 {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

footer {
    background-color: #fdfaf4;
}

footer .footer-content {
    margin: 0 auto;
    max-width: 1080px;
    padding-top: 80px;
}

@media (max-width: 768px) {
    footer .footer-content {
        max-width: 768px;
    }
}

footer .footer-content .top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: solid 1px #a89f99;
}

footer .footer-content .top .left {
    display: flex;
    flex-direction: column;
}

footer .footer-content .top .left .main-logo {
    width: 134px;
    height: 30px;
    background: url(../assets/logo.png) no-repeat;
    background-size: contain;
    margin-bottom: 30px;
}

footer .footer-content .top .left .socials .social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

footer .footer-content .top .left .socials .social .icon {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
}

footer .footer-content .top .left .socials .social .icon img {
    background-size: contain;
    width: 100%;
    height: 100%;
}

footer .footer-content .top .left .socials .social a {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    text-decoration: none;
}

footer .footer-content .top .middle {
    display: flex;
    gap: 40px;
}

footer .footer-content .top .middle .col .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 16px;
    text-transform: uppercase;
}

footer .footer-content .top .middle .col ul li a {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    text-decoration: none;
}

footer .footer-content .top .right {
    display: flex;
    gap: 20px;
}

footer .footer-content .top .right .icon {
    height: 60px;
    width: 100%;
    max-width: 70px;
}

footer .footer-content .top .right .icon img {
    object-fit: contain;
    width: 100%;
}

footer .footer-content .bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-content .bottom h4 {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.line-break {
    display: flex;
    align-items: center;
    gap: 10px;
}

.line-break .logo {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    background: url(../assets/apple.svg) no-repeat;
    background-size: contain;
}

.line-break .line {
    width: 100%;
    height: 1px;
    background-color: #da252b;
}

.home-page {
    margin: 0 auto;
    max-width: 1080px;
}

@media (max-width: 768px) {
    .home-page {
        max-width: 768px;
    }
}

.home-page .hero-section, .community-page .hero-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 65px;
}

.home-page .hero-section .left, .community-page .hero-section .left {
    background-color: #da252b;
    padding: 105px 100px 129px 92px;
    border-radius: 20px;
    overflow: hidden;
}

.home-page .hero-section .left .title, .community-page .hero-section .left .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fdfaf4;
    margin-bottom: 20px;
}

.home-page .hero-section .left .title strong, .community-page .hero-section .left .title strong {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffb012;
}

.home-page .hero-section .left .sub-title, .community-page .hero-section .left .sub-title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fdfaf4;
    margin-bottom: 30px;
}

.home-page .hero-section .left .a-wrap .a-tag, .community-page .hero-section .left .a-wrap .a-tag {
    background-color: #0d4d28;
    height: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0.05em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
}

.home-page .hero-section .left .a-wrap .a-tag span, .community-page .hero-section .left .a-wrap .a-tag span {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    background: url(../assets/open-link.svg) no-repeat;
    background-size: contain;
}

.home-page .hero-section .right, .community-page .hero-section .right {
    border-radius: 20px;
    box-shadow: 0px 0px 4px 2px rgba(75, 35, 6, 0.1);
}

.home-page .hero-section .right .slick-arrow, .community-page .hero-section .right .slick-arrow {
    all: unset;
    position: absolute;
    top: calc(50% - 30px);
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    background-color: #DA252B;
    border-radius: 50px;
    overflow: hidden;
    z-index: 20;
    cursor: pointer;
}

.home-page .hero-section .right .slick-arrow.slick-prev, .community-page .hero-section .right .slick-arrow.slick-prev {
    left: 0;
    margin-left: -15px;
    text-indent: -9999px;
}

.home-page .hero-section .right .slick-arrow.slick-prev::after, .community-page .hero-section .right .slick-arrow.slick-prev::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background: url(../assets/arrow-left.svg) no-repeat;
    background-size: contain;
}

.home-page .hero-section .right .slick-arrow.slick-next, .community-page .hero-section .right .slick-arrow.slick-next {
    right: 0;
    margin-right: -15px;
    text-indent: -9999px;
}

.home-page .hero-section .right .slick-arrow.slick-next::after, .community-page .hero-section .right .slick-arrow.slick-next::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background: url(../assets/arrow-right.svg) no-repeat;
    background-size: contain;
}

.home-page .hero-section .right .unit, .community-page .hero-section .right .unit {
    width: 100%;
    height: 600px;
}

.home-page .hero-section .right .unit .img, .community-page .hero-section .right .unit .img {
    border-radius: 20px;
    overflow: hidden;
}

.home-page .introduction-section, .about-page .introduction-section , .about-page .platform-section  {
    margin-top: 65px;
    margin-bottom: 86px;
}

.home-page .introduction-section .top, .about-page .introduction-section .top, .about-page .platform-section .top {
    display: flex;
    margin-bottom: 50px;
    gap: 107px;
}

.home-page .introduction-section .top .left .title, .about-page .introduction-section .top .left .title, .about-page .platform-section .top .left .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
    margin-bottom: 10px;
}

.home-page .introduction-section .top .left .paragraph, .about-page .introduction-section .top .left .paragraph, .about-page .platform-section .top .left .paragraph {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.home-page .introduction-section .top .right, .about-page .introduction-section .top .right, .about-page .platform-section .top .right {
    width: 626px;
    min-width: 626px;
    height: 296px;
    min-height: 296px;
    border-radius: 20px;
    overflow: hidden;
}

.home-page .introduction-section .bottom{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 33px;
}
.about-page .introduction-section .bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 33px;
}
.about-page .platform-section .bottom .unit {
    justify-content: center;
}
.about-page .platform-section .bottom .unit .info {
    display: none;
}
.about-page .platform-section .bottom .unit .img img{
    object-fit: contain;
}
.about-page .platform-section .top{
    margin-bottom: 100px;

}
.about-page .platform-section .bottom .unit .img {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
}
.about-page .platform-section .bottom {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 100px;
}

.home-page .introduction-section .bottom .unit, .about-page .introduction-section .bottom .unit, .about-page .platform-section .bottom .unit {
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 20px;
}

.home-page .introduction-section .bottom .unit .icon, .about-page .introduction-section .bottom .unit .icon, .about-page .platform-section .bottom .unit .icon {
    width: 72px;
    min-width: 72px;
    max-width: 72px;
    height: 72px;
    min-height: 72px;
    max-height: 72px;
}

.home-page .introduction-section .bottom .unit .info .title, .about-page .introduction-section .bottom .unit .info .title, .about-page .platform-section .bottom .unit .info .title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 10px;
}

.home-page .introduction-section .bottom .unit .info .sub-title, .about-page .introduction-section .bottom .unit .info .sub-title, .about-page .platform-section .bottom .unit .info .sub-title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.home-page .products-section {
    margin: 80px 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.home-page .products-section .left {
    grid-column: span 1 / span 1;
    background-color: #da252b;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px 30px 0;
    display: flex;
    flex-direction: column;
    max-height: 390px;
}

.home-page .products-section .left .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fdfaf4;
    margin-bottom: 20px;
}

.home-page .products-section .left .img {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 230px;
    min-height: 230px;
    max-height: 230px;
    margin-top: auto;
}

.home-page .products-section .left .img img{
    object-fit: contain;
}

.home-page .products-section .right {
    grid-column: span 3 / span 3;
}

.home-page .products-section .right .slick-list {
    width: calc(100% + 20px);
    overflow: hidden;
    margin-left: -10px;
    height: 390px;
    margin-top: -20px;
    padding-top: 20px;
    margin-bottom: -20px;
    padding-bottom: 20px;
}
.home-page .products-section .right .slick-list .product-item-card{
    /* height: 350px;
    min-height: 350px;
    max-height: 350px; */
}

.home-page .products-section .right .slick-track {
    display: flex;
    gap: 20px;
}

.home-page .products-section .right .slick-arrow {
    all: unset;
    position: absolute;
    top: calc(50% - 30px);
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    background-color: #DA252B;
    border-radius: 50px;
    overflow: hidden;
    z-index: 20;
    cursor: pointer;
}

.home-page .products-section .right .slick-arrow.slick-prev {
    left: 0;
    margin-left: -12px;
    text-indent: -9999px;
}

.home-page .products-section .right .slick-arrow.slick-prev::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background: url(../assets/arrow-left.svg) no-repeat;
    background-size: contain;
}

.home-page .products-section .right .slick-arrow.slick-next {
    right: 0;
    margin-right: -15px;
    text-indent: -9999px;
}

.home-page .products-section .right .slick-arrow.slick-next::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background: url(../assets/arrow-right.svg) no-repeat;
    background-size: contain;
}

.home-page .doctors-section {
    margin: 0 auto;
    max-width: 1080px;
    margin: 80px 0;
}

@media (max-width: 768px) {
    .home-page .doctors-section {
        max-width: 768px;
    }
}

.home-page .doctors-section .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
    margin-bottom: 20px;
}

.home-page .doctors-section .sub-title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 50px;
}

.home-page .doctors-section .grids {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.home-page .doctors-section .grids .unit {
    border-radius: 20px;
    box-shadow: 0px 0px 4px 2px #4B23061A;
    overflow: hidden;
    padding: 20px;
}

.home-page .doctors-section .grids .unit .img {
    height: 307px;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.home-page .doctors-section .grids .unit .info .title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 20px;
}

.home-page .doctors-section .grids .unit .info ul {
    list-style: circle;
    padding-left: 14px;
}

.home-page .doctors-section .grids .unit .info ul li {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.home-page .doctors-section .grids .unit .info ul {
    list-style: none;
    /* Remove default bullets */
    padding-left: 14px;
    /* Adjust left padding */
}

.home-page .doctors-section .grids .unit .info ul li {
    position: relative;
    padding-left: 14px;
    /* Space for custom bullet */
}

.home-page .doctors-section .grids .unit .info ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5px;
    /* Bullet size */
    height: 2.5px;
    /* Bullet size */
    background-color: black;
    /* Filled color */
    border-radius: 50%;
    /* Makes it a circle */
}

.home-page .doctors-section .load-more, .about-page .network-section .load-more, .resseler-page .stores-section .load-more {
    width: fit-content;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 50px;
    border: solid 1px #0d4d28;
    margin-left: calc(50% - 131px/2);
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    white-space: nowrap;
    cursor: pointer;
}

.home-page .our-product-section, .about-page .our-product-section {
    margin: 65px 0;
}

.home-page .our-product-section .top, .about-page .our-product-section .top {
    display: flex;
    margin-bottom: 50px;
    gap: 107px;
}

.home-page .our-product-section .top .left .title, .about-page .our-product-section .top .left .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
    margin-bottom: 10px;
}

.home-page .our-product-section .top .left .paragraph, .about-page .our-product-section .top .left .paragraph {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.home-page .our-product-section .top .right, .about-page .our-product-section .top .right {
    display: flex;
    gap: 35px;
}

.home-page .our-product-section .top .right .img, .about-page .our-product-section .top .right .img {
    width: 296px;
    min-width: 296px;
    height: 296px;
    min-height: 296px;
    border-radius: 20px;
    overflow: hidden;
}

.home-page .our-product-section .bottom, .about-page .our-product-section .bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 31px;
}

.home-page .our-product-section .bottom .unit, .about-page .our-product-section .bottom .unit {
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 22px;
}

.home-page .our-product-section .bottom .unit .icon, .about-page .our-product-section .bottom .unit .icon {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
}

.home-page .our-product-section .bottom .unit .info .title, .about-page .our-product-section .bottom .unit .info .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 10px;
}

.home-page .our-product-section .bottom .unit .info .sub-title, .about-page .our-product-section .bottom .unit .info .sub-title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.home-page .why-section {
    position: relative;
    width: 100vw;
    margin-left: calc((100vw - 100%) / -2);
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 20px;
}

.home-page .why-section .content-wrap {
    padding: 70px 0 60px;
    display: flex;
    overflow: hidden;
}

.home-page .why-section .content-wrap .background {
    width: 100%;
    height: 412px;
    background: linear-gradient(to bottom, #f9efef, #ffffff);
    position: absolute;
    z-index: -10;
    top: 70px;
    left: 0;
}

.home-page .why-section .content-wrap .apple {
    width: 250px;
    height: 190px;
    background: url(../assets/apple-real.png) no-repeat;
    background-size: contain;
    position: absolute;
}

.home-page .why-section .content-wrap .apple.one {
    top: 0;
    right: -40px;
}

.home-page .why-section .content-wrap .apple.two {
    bottom: 0;
    left: -40px;
}

.home-page .why-section .content-wrap .content {
    margin: 0 auto;
    max-width: 1080px;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .home-page .why-section .content-wrap .content {
        max-width: 768px;
    }
}

.home-page .why-section .content-wrap .content .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
    margin-bottom: 30px;
}

.home-page .why-section .content-wrap .content .labels {
    display: flex;
    width: 850px;
    justify-content: space-between;
}

.home-page .why-section .content-wrap .content .labels .unit {
    height: fit-content;
}

.home-page .why-section .content-wrap .content .labels .unit .img {
    height: 110px;
    aspect-ratio: 3 / 2;
    width: fit-content;
    margin-bottom: 30px;
}

.home-page .why-section .content-wrap .content .labels .unit .img img {
    object-fit: contain;
}

.home-page .why-section .content-wrap .content .labels .unit .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 0;
    color: #0d4d28;
}

.home-page .why-section .content-wrap .content .labels .unit .sub-title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    white-space: nowrap;
}

.home-page .testimoni-section {
    margin: 20px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-page .testimoni-section .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
    margin-bottom: 20px;
}

.home-page .testimoni-section .sub-title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 50px;
}

.home-page .testimoni-section .review-home-slider {
    width: 100%;
}

.home-page .testimoni-section .review-home-slider .slick-arrow {
    all: unset;
    position: absolute;
    top: calc(50% - 30px);
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    background-color: #DA252B;
    border-radius: 50px;
    overflow: hidden;
    z-index: 20;
    cursor: pointer;
}

.home-page .testimoni-section .review-home-slider .slick-arrow.slick-prev {
    left: 0;
    margin-left: -15px;
    text-indent: -9999px;
}

.home-page .testimoni-section .review-home-slider .slick-arrow.slick-prev::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background: url(../assets/arrow-left.svg) no-repeat;
    background-size: contain;
}

.home-page .testimoni-section .review-home-slider .slick-arrow.slick-next {
    right: 0;
    margin-right: -15px;
    text-indent: -9999px;
}

.home-page .testimoni-section .review-home-slider .slick-arrow.slick-next::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background: url(../assets/arrow-right.svg) no-repeat;
    background-size: contain;
}

.home-page .testimoni-section .review-home-slider .slick-track {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 400px;
}

.home-page .testimoni-section .review-home-slider.slick-slider {
    position: relative;
}

.home-page .testimoni-section .review-home-slider.slick-slider::before,
.home-page .testimoni-section .review-home-slider.slick-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.home-page .testimoni-section .review-home-slider.slick-slider::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.home-page .testimoni-section .review-home-slider.slick-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.home-page .testimoni-section .review-home-slider .unit {
    background-color: #da252b;
    width: 450px;
    border-radius: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 0 40px;
    transition: height 0.3s ease, padding 0.3s ease;
}

.home-page .testimoni-section .review-home-slider .unit .stars {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 20px;
}

.home-page .testimoni-section .review-home-slider .unit .stars .star {
    width: 25px;
    min-width: 25px;
    max-width: 25px;
    height: 25px;
    min-height: 25px;
    max-height: 25px;
}

.home-page .testimoni-section .review-home-slider .unit .stars .star.empty {
    background: url(../assets/star-empty.svg) no-repeat;
    background-size: contain;
}

.home-page .testimoni-section .review-home-slider .unit .stars .star.filled {
    background: url(../assets/star-filled.svg) no-repeat;
    background-size: contain;
}

.home-page .testimoni-section .review-home-slider .unit .quotes {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fdfaf4;
    margin-bottom: 0;
}

.home-page .testimoni-section .review-home-slider .unit .profile {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.home-page .testimoni-section .review-home-slider .unit .profile .img {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
}

.home-page .testimoni-section .review-home-slider .unit .profile .info .name {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fdfaf4;
    margin-bottom: 5px;
}

.home-page .testimoni-section .review-home-slider .unit .profile .info .sub-title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fdfaf4;
    margin-bottom: 0;
}

.home-page .testimoni-section .review-home-slider .unit.slick-center {
    height: 400px;
    padding: 0 50px;
}

.home-page .testimoni-section .review-home-slider .unit.slick-center .quotes{
    margin-bottom: 20px;
}

.home-page .stories-section {
    margin: 80px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .stories-section .left {
    grid-column: span 1 / span 1;
    padding-right: 100px;
}

.home-page .stories-section .left .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
    margin-bottom: 20px;
}

.home-page .stories-section .left .sub-title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 30px;
}

.home-page .stories-section .videoModal {
    display: none;
    position: fixed;
    z-index: 90;
    width: 100vw;
    height: 100vh;
    overflow: scroll;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: start;
    justify-content: center;
}
.home-page .stories-section .videoModal iframe{
    width: 470px;
}

.home-page .stories-section .right {
    grid-column: span 2 / span 3;
}

.home-page .stories-section .right .slick-list {
    width: calc(100% + 20px);
    overflow: hidden;
    margin-left: -10px;
    height: fit-content;
    margin-top: -20px;
    padding-top: 20px;
    margin-bottom: -20px;
    padding-bottom: 20px;
}

.home-page .stories-section .right .slick-track {
    display: flex;
    gap: 20px;
}

.home-page .stories-section .right .slick-arrow {
    all: unset;
    position: absolute;
    top: calc(50% - 30px);
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    background-color: #0d4d28;
    border-radius: 50px;
    overflow: hidden;
    z-index: 20;
    cursor: pointer;
}

.home-page .stories-section .right .slick-arrow.slick-prev {
    left: 0;
    margin-left: -12px;
    text-indent: -9999px;
}

.home-page .stories-section .right .slick-arrow.slick-prev::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background: url(../assets/arrow-left.svg) no-repeat;
    background-size: contain;
}

.home-page .stories-section .right .slick-arrow.slick-next {
    right: 0;
    margin-right: -15px;
    text-indent: -9999px;
}

.home-page .stories-section .right .slick-arrow.slick-next::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background: url(../assets/arrow-right.svg) no-repeat;
    background-size: contain;
}

.home-page .newsletter-section {
    margin-bottom: 100px;
    background-color: #da252b;
    border-radius: 30px;
    overflow: hidden;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.home-page .newsletter-section .background {
    width: 100%;
    height: 100%;
    background: url(../assets/fruit.png) no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .home-page .newsletter-section .background {
        background: url(../assets/fruitMobile.png) no-repeat;
    }
}

.home-page .newsletter-section .left {
    width: 340px;
    z-index: 10;
}

.home-page .newsletter-section .left .title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
    margin-bottom: 10px;
}

.home-page .newsletter-section .left .descritpion {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.home-page .newsletter-section .right {
    z-index: 10;
}

.home-page .newsletter-section .right .mc4wp-form-fields {
    background-color: #ffffff;
    border-radius: 50px;
    overflow: hidden;
    padding: 0 20px;
    padding-left: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 438px;
    height: 40px;
}

.home-page .newsletter-section .right .mc4wp-form-fields p {
    width: 100%;
}

.home-page .newsletter-section .right .mc4wp-form-fields input {
    all: unset;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    width: 100%;

}

.home-page .newsletter-section .right .mc4wp-form-fields input div{
    width: 100%;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: calc(100% - 40px);
}

.home-page .newsletter-section .right .mc4wp-form-fields input::placeholder {
    color: #a89f99;
}

.home-page .newsletter-section .right .mc4wp-form-fields .submit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-width: 90px;
    cursor: pointer;
}

.home-page .newsletter-section .right .mc4wp-form-fields .submit-btn input[type="submit"] {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    position: relative;
}

.home-page .newsletter-section .right .mc4wp-form-fields .submit-btn .icon {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    background: url(../assets/open-link-green.svg) no-repeat;
    background-size: contain;
}

.home-page .newsletter-section .right .mc4wp-response .mc4wp-alert p {
    width: 438px;
    margin-top: 8px;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.content-area {
    margin: 0 auto;
    max-width: 1080px;
}

@media (max-width: 768px) {
    .content-area {
        max-width: 768px;
    }
}

.products-page .content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 100px;
}

.products-page .content .filters {
    grid-column: span 1 / span 1;
}

.products-page .content .filters .title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: solid 1px #a89f99;
    width: 100%;
}

.products-page .content .filters .wpfFilterWrapper {
    margin-bottom: 20px;
    border-bottom: solid 1px #a89f99;
}

.products-page .content .filters .wpfFilterWrapper .wpfFilterTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.products-page .content .filters .wpfFilterWrapper .wpfFilterTitle .wfpTitle {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 0;
}

.products-page .content .filters .wpfFilterWrapper .wpfFilterTitle .fa::before {
    content: ' ';
}

.products-page .content .filters .wpfFilterWrapper .wpfFilterTitle .fa {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    background: url(../assets/chev-down.svg) no-repeat;
    background-size: contain;
    cursor: pointer;
}

.products-page .content .filters .wpfFilterWrapper .wpfFilterTitle .fa.fa-minus {
    transform: rotate(180deg);
}

.wpfFilterVerScroll {
    overflow-y: visible !important;
    max-height: fit-content !important;
}

.products-page .content .filters .wpfFilterWrapper ul:not(.wpfButtonsFilter) li {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.products-page .content .filters .wpfFilterWrapper .wpfFilterTaxNameWrapper {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

body .wpfFilterWrapper .wpfCheckbox label {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    background: url(../assets/box.svg) no-repeat !important;
    background-size: contain;
}

body .wpfFilterWrapper .wpfCheckbox input[type="checkbox"]:checked+label::before {
    background-image: url(../assets/checked-box.svg) no-repeat !important;
    background-size: contain;
}

body .wpfFilterWrapper .wpfCheckbox label::before {
    border: 0 !important;
    background-color: transparent !important;
}

body .wpfFilterWrapper[data-radio="1"] .wpfCheckbox label:before {
    background-color: transparent !important;
    border: 0 !important;

}

.wpfFilterWrapper[data-filter-type] {
    padding: 0 !important;
}

.woobewoo-filter-loader.spinner {
    display: none !important;
}

.wpfPreview.wpfPreviewLoader::before {
    content: "Loading...";
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: black;
    width: 100% !important;
}

.products-page .content .filters .wpfFilterWrapper .slide-wrap {
    display: none;
    margin-top: 30px;
}

.products-page .content .filters .wpfFilterWrapper .slide-wrap.opened {
    display: block;
}

.ui-slider.ui-widget-content:not(.iris-slider-offset) {
    background-color: #a89f99 !important;
    height: 5px !important;
    border: 0 !important;
    width: calc(100% - 20px);
}

body .ui-widget-header {
    background: #da252b !important;
}

body .ui-slider.ui-widget-content .ui-slider-handle {
    border-radius: 50px;
    overflow: hidden;
    background-color: #da252b;
    border-color: transparent !important;
    width: 15px;
    height: 15px;
    border: 0;
    cursor: pointer;
}

body .ui-slider.ui-widget-content .ui-slider-handle:hover {
    background-color: #da252b !important;
    border-color: transparent !important;
}

body .wpfPriceInputs {
    display: flex !important;
    justify-content: space-between !important;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-top: 0 !important;
    margin-bottom: 20px;
}

body .wpfCurrencySymbol {
    display: none;
}

body .wpfFilterDelimeter {
    display: none;
}

.wpfFilterContent {
    padding: 0 !important;
}

.products-page .content .products {
    grid-column: span 3 / span 3;
}

.products-page .content .products .main-title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
    margin-bottom: 60px;
}

.products-page .content .products .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.products-page .content .products .top-bar h4 {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    white-space: nowrap;
}

.products-page .content .products .top-bar .sort-wrap {
    display: flex;
    align-items: center;
    position: relative;
    gap: 22px;
}

.products-page .content .products .top-bar .sort-wrap h4 {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.products-page .content .products .top-bar .sort-wrap .select2-container {
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 250px !important;
    height: 40px;
    cursor: pointer;
}

.products-page .content .products .top-bar .sort-wrap .select2-container .selection {
    width: 100%;
}


.products-page .content .products .top-bar .sort-wrap .select2-container--default {
    height: 40px !important;
    width: 100%;
}

.select2-container--default .select2-selection--single {
    height: 40px;
    border: 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 0;
    padding: 0;
    height: fit-content;
    align-items: center;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: calc(100% - 40px);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    background: url(../assets/chev-down.svg) no-repeat;
    background-size: contain;
    top: 10px;
    right: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

/* .custom-select-two-pop-up-product-page {
    border: 0 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    padding: 8px 0;
} */

/* .select2-results {
    border-radius: 20px !important;
    overflow: hidden !important;
    border: solid 1px #a89f99;
} */

.select2-results__option {
    padding: 10px 20px;
}

/* .select2-results__option[aria-selected] {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #DA252B;
    color: white;
} */

.products-page .content .products .top-bar .sort-wrap .wpfFilterWrapper {
    margin: 0 !important;
}

.products-page .woo-product-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    position: relative;
    height: fit-content;
}

.products-page .content .products .woocommerce-pagination {
    display: flex;
    margin-top: 50px;
    justify-content: end;
    align-items: center;
}

/* .products-page .content .products .woocommerce-pagination h4 {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
} */

.products-page .content .products .woocommerce-pagination ul {
    display: flex;
    gap: 10px;
}

.products-page .content .products .woocommerce-pagination ul li a,
.products-page .content .products .woocommerce-pagination ul li span {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    border: solid 1px #0d4d28;
    text-decoration: none;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
}

.products-page .content .products .woocommerce-pagination ul li span.current {
    background-color: #0d4d28;
    color: #ffffff;
}

.products-page .content .products .woocommerce-pagination ul li .prev {
    background: url(../assets/arrow-left-page.svg) no-repeat;
    background-size: 80% auto;
    background-position: center;
    background-color: #0d4d28;
    text-indent: -9999px;
}

.products-page .content .products .woocommerce-pagination ul li .next {
    background: url(../assets/arrow-right-page.svg) no-repeat;
    background-size: 80% auto;
    background-position: center;
    background-color: #0d4d28;
    text-indent: -9999px;
}

/* * PRODUCT PAGE */

.product-page {
    margin: 0 auto;
    max-width: 1080px;
}

@media (max-width: 768px) {
    .product-page {
        max-width: 768px;
    }
}

.product-page .hero-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.product-page .hero-section .left .woo-variation-gallery-slider-wrapper {
    aspect-ratio: 1;
    height: auto;
    width: 100%;
    margin-bottom: 21px;
    border-radius: 20px;
    overflow: hidden;
}

.woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider:after,
.woo-variation-gallery-wrapper .woo-variation-gallery-thumbnail-slider:before {
    display: none !important;
}

.product-page .hero-section .left .woo-variation-gallery-thumbnail-wrapper .woo-variation-gallery-thumbnail-slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.product-page .hero-section .left .woo-variation-gallery-thumbnail-wrapper .woo-variation-gallery-thumbnail-slider .wvg-gallery-thumbnail-image {
    aspect-ratio: 1;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.product-page .hero-section .product-info .product_title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 20px;
}

.product-page .hero-section .product-info .price {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 30px;
}


.product-page .hero-section .product-info .price .woocommerce-Price-currencySymbol {
    margin-right: 5px;
}

.product-page .hero-section .product-info .variations {
    margin-bottom: 30px;
}

.product-page .hero-section .product-info .variations tbody tr {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.product-page .hero-section .product-info .variations tbody tr .label {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 20px;
}

.product-page .hero-section .product-info .variations tbody tr label::before {
    content: "Choose Variant";
    font-weight: bold;
    color: black;
}

.product-page .hero-section .product-info .variations tbody tr label {
    text-indent: -9999px;
    color: transparent;
}

.product-page .hero-section .product-info .variations tbody tr .woo-variation-items-wrapper {
    display: flex;
    gap: 10px;
}

.product-page .hero-section .product-info .variations tbody tr .woo-variation-items-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-page .hero-section .product-info .variations tbody tr .woo-variation-items-wrapper li {
    background-color: transparent;
    border: solid 1px #a89f99;
    border-radius: 50px;
    overflow: hidden;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #a89f99;
    height: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-self: center;
    cursor: pointer;
}

.product-page .hero-section .product-info .variations tbody tr .woo-variation-items-wrapper li[aria-checked="true"] {
    border: solid 1px #0d4d28;
    color: #0d4d28;
}

.product-page .hero-section .product-info .variations tbody tr .woo-variation-items-wrapper a {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DA252B;
    text-decoration: none;
    display: flex;
    align-items: start;
    padding-top: 12px;
    display: none !important;
}

.product-page .hero-section .product-info .woocommerce-variation.single_variation {
    display: none !important;
}

.product-page .hero-section .product-info .qib-button-wrapper {
    border-radius: 50px;
    overflow: hidden;
    border: solid 1px #a89f99;
    width: fit-content;
    max-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    margin: 0 !important;
    margin-right: 20px !important;
}

.product-page .hero-section .product-info .qib-button-wrapper .quantity input, .qib-button-wrapper .quantity input {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    border: 0;
    padding: 0;
    width: 80px !important;
}

.product-page .hero-section .product-info .qib-button-wrapper button {
    all: unset;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    cursor: pointer;
    text-indent: -99999px;
}

.product-page .hero-section .product-info .qib-button-wrapper button.plus {
    background: url(../assets/plus-black.svg) no-repeat;
    background-size: contain;
}

.product-page .hero-section .product-info .qib-button-wrapper button.minus {
    background: url(../assets/minus-black.svg) no-repeat;
    background-size: contain;
}

.qib-button-wrapper button.minus.gray {
    opacity: 0.4 !important;
    pointer-events: none;
}
  

.product-page .hero-section .product-info .product_meta {
    display: none;
}

.product-page .hero-section .product-info .single_add_to_cart_button {
    border-radius: 50px;
    overflow: hidden;
    border: solid 1px #0d4d28;
    height: 40px;
    justify-content: space-between;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
    background-color: #0d4d28;
    cursor: pointer;
    position: relative;
    padding-left: 40px;
    text-transform: uppercase;
}

.product-page .hero-section .product-info .single_add_to_cart_button::before {
    content: "";
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    cursor: pointer;
    background: url(../assets/cart-white.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: 16px;
    top: 8px;
}

.social-links-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 30px;
}

.social-links-wrap h4 {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.social-links-wrap .facebook-icon,
.social-links-wrap .whatsapp-icon,
.social-links-wrap .link-icon {
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    cursor: pointer;
}

.social-links-wrap .link-icon {
    background: url(../assets/link-green.svg) no-repeat;
    background-size: contain;
}

.social-links-wrap .whatsapp-icon {
    background: url(../assets/whatsapp-green.svg) no-repeat;
    background-size: contain;
}

.social-links-wrap .facebook-icon {
    background: url(../assets/facebook-green.svg) no-repeat;
    background-size: contain;
}

.product-page .woo-product-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    position: relative;
    height: fit-content;
}

.xoo-wsc-products:not(.xoo-wsc-pattern-card) .xoo-wsc-img-col{
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: auto;
}
    
.xoo-wsc-header {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: solid 1px #a89f99;
    width: calc(100% - 100px);
    margin-left: 50px;
    padding-top: 80px;
    padding-left: 0;
}

.xoo-wsc-header .xoo-wsch-top .xoo-wsch-text{
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-left: 0;
}

.xoo-wsc-pname{
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 0;
}
.xoo-wsch-close.xoo-wsc-icon-cross{
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../assets/close-black.svg) no-repeat;
    background-size: contain;
    top: 50px;
    right: 50px;
    cursor: pointer;
}

.xoo-wsc-icon-cross:before{
    text-indent: -99999px;
    content: '';
}

.xoo-wsc-product {
    border-bottom: solid 1px #a89f99;
    display: flex;
    align-items: start;
    gap: 20px;
    margin: 0 50px !important;
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
}

.xoo-wsc-sum-col{
    padding-left: 0;
}

.xoo-wsc-sml-qty, dl.variation{
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    color: black;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
dl.variation .variation-Varian{
    font-style: normal !important;
}
.xoo-wsc-sml-qty{
    padding-bottom: 40px;
}

.xoo-wsc-sm-info{
    position: relative;
}

.xoo-wsc-sm-right{
    position: absolute;
    bottom: 0;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    align-items: center;
}

.xoo-wsc-smr-del.xoo-wsc-icon-trash1{
    margin-top: 0 !important;
    color: black;
}

.xoo-wsc-ft-totals{
    padding: 0;;
}

.xoo-wsc-ft-amt.xoo-wsc-ft-amt-subtotal{
    display: flex;
    padding-top: 20px;
    margin-bottom: 30px;
}
.xoo-wsc-ft-amt.xoo-wsc-ft-amt-subtotal .xoo-wsc-ft-amt-label{
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}
.xoo-wsc-ft-amt.xoo-wsc-ft-amt-subtotal .xoo-wsc-ft-amt-value .woocommerce-Price-amount{
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-ft-btn-cart{
    border-radius: 50px;
    overflow: hidden;
    border: solid 1px #0d4d28;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background-color: transparent;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0d4d28;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-ft-btn-checkout a, .xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-ft-btn-cart a{
    display: flex;
    align-items: center;
}
.xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-ft-btn-checkout{
    border-radius: 50px;
    overflow: hidden;
    border: solid 1px #0d4d28;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background-color: transparent;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #0d4d28;
    text-transform: uppercase;
}

.xoo-wsc-footer{
    padding: 0 50px 80px;
}

.woocommerce-tabs{
    margin: 50px 0 80px;
}

.woocommerce-tabs .tabs.wc-tabs{
    display: flex;
    /* flex-direction: row-reverse; */
    justify-content: start;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}
.woocommerce-tabs .tabs.wc-tabs li a{
    background-color: transparent;
    border: solid 1px #a89f99;
    border-radius: 50px;
    overflow: hidden;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #a89f99;
    height: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-self: center;
    cursor: pointer;
    text-decoration: none;
}

.woocommerce-tabs .tabs.wc-tabs li.active a{
    border: solid 1px #0d4d28;
    color: #0d4d28;
}

.woocommerce-Tabs-panel.woocommerce-Tabs-panel--wpt-419{
    width: 100%;
    position: relative;
}

.woocommerce-Tabs-panel.woocommerce-Tabs-panel--wpt-415{
    width: 62%;
    margin-left: auto;
    position: relative;
}

.woocommerce-Tabs-panel h3{
    position: absolute;
    left: -61%;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-top: 2px;
}
.woocommerce-Tabs-panel p, .woocommerce-Tabs-panel ul li{
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 20px;
}
.woocommerce-Tabs-panel h4{
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 10px;
}

.woocommerce-Tabs-panel ul { 
    list-style: none;
    padding: 0;
}

.woocommerce-Tabs-panel ul li::before {
    content: "- ";
}

.product-page .related.products, .product-page .upsells.products {
    margin: 50px 0 80px;
}

.product-page .related.products h2:first-child, .product-page .upsells.products h2:first-child {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
    margin-bottom: 50px;
}


.product-page .article-section {
    margin: 50px 0 100px;
}

.product-page .article-section .title-bar .a-tag-link{
    display: none;
}

/* * CART */

.cart-page {
    margin: 0 auto;
    max-width: 1080px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px;
    margin-top: 80px;
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .cart-page {
        max-width: 768px;
    }
}

.cart-page .left .main-title {
    font-family: 'poppins', Arial, sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
    margin-bottom: 32px;
}

.cart-page .left {
    grid-column: span 2 / span 2;
}

.cart-page .left .sub-title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    padding-bottom: 20px;
    margin-bottom: 30px;
    width: 100%;
    border-bottom: solid 1px #a89f99;
}

.cart-page .left .cart-items {
    display: flex;
    flex-direction: column;
}

.cart-page .left .cart-items .cart-item {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: solid 1px #a89f99;
}

.cart-page .left .cart-items .cart-item .product-thumbnail {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
    border-radius: 20px;
    overflow: hidden;
}

.cart-page .left .cart-items .cart-item .info {
    width: 100%;
}

.cart-page .left .cart-items .cart-item .info .top-wrap {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.cart-page .left .cart-items .cart-item .info .top-wrap .product-name {
    width: 70%;
}
.cart-page .left .cart-items .cart-item .info .top-wrap .product-name a {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    text-decoration: none;
}

.cart-page .left .cart-items .cart-item .info .top-wrap .product-subtotal {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
}

.cart-page .left .cart-items .cart-item .info .product-variant {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 20px;
}

.cart-page .left .cart-items .cart-item .info .btm-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.cart-page .left .cart-items .cart-item .info .btm-wrap .qib-button-wrapper {
    border-radius: 50px;
    overflow: hidden;
    border: solid 1px #a89f99;
    width: fit-content;
    max-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    margin: 0 !important;
    margin-right: 20px !important;
}

.cart-page .left .cart-items .cart-item .info .btm-wrap .qib-button-wrapper .quantity input {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    border: 0;
    padding: 0;
    width: 40px;
}

.cart-page .left .cart-items .cart-item .info .btm-wrap .qib-button-wrapper button {
    all: unset;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    cursor: pointer;
    text-indent: -99999px;
}

.cart-page .left .cart-items .cart-item .info .btm-wrap .qib-button-wrapper button.plus {
    background: url(../assets/plus-black.svg) no-repeat;
    background-size: contain;
}

.cart-page .left .cart-items .cart-item .info .btm-wrap .qib-button-wrapper button.minus {
    background: url(../assets/minus-black.svg) no-repeat;
    background-size: contain;
}

.cart-page .left .cart-items .cart-item .info .btm-wrap .product-remove a.remove:hover {
    background: transparent;
}
.cart-page .left .cart-items  .update .actions button {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    display: none;
}
.cart-page .left .cart-items .cart-item .info .btm-wrap .product-remove {
    width: 20px;
    height: 20px;
    background: url(../assets/trash.svg) no-repeat;
    background-size: contain;
    cursor: pointer;
    text-indent: -9999px;
}

.cart-page .left .message-wrap .gift-message {
    display: none;
    flex-direction: column;
    width: 100%;
}
.cart-page .left .message-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.cart-page .left .message-wrap .checkbox-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.cart-page .left .message-wrap .checkbox-wrap h4 {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400; 
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.cart-page .left .message-wrap .title {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 10px;
}

.cart-page .left .message-wrap textarea {
    all: unset;
    border-radius: 20px;
    height: 120px;
    width: calc(100% - 40px);
    overflow: hidden;
    padding: 15px 20px;
    border: solid 1px #a89f99;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-top: 10px;
}

.cart-page .left .message-wrap textarea::placeholder {
    color: #a89f99;
}

.cart-page .right {
    grid-column: span 1 / span 1;
}

.cart-page .right .bar-tablet {
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff8e8;
    padding: 20px;
    margin-bottom: 30px;
}

.cart-page .right .promo-wrap h3 {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 20px;
}

.cart-page .right .promo-wrap .bar-tablet {
    display: flex;
    flex-direction: column;
}
.coupon-error-notice{
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-top: 4px;
}
.cart-page .right .promo-wrap .bar-tablet .tet {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin-bottom: 10px;
}

.cart-page .right .promo-wrap .bar-tablet .input-wrap {
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: solid 1px gray;
    padding: 0 20px;
    display: flex;
    align-items: center;
    background-color: white;
}

.cart-page .right .promo-wrap .bar-tablet .input-wrap input {
    all: unset;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.cart-page .right .promo-wrap .bar-tablet .input-wrap input::placeholder {
    color: #a89f99;
}

.cart-page .right .promo-wrap .bar-tablet .input-wrap button {
    all: unset;
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d4d28;
    color: #ffffff;
    cursor: pointer;
}

.cart-page .right .cart_totals h2 {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 20px;
}

.cart-page .right .cart_totals .bar-tablet .unit {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

.cart-page .right .cart_totals .bar-tablet .unit .sub {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    width: 40%;
}

.cart-page .right .cart_totals .bar-tablet .unit .price .woocommerce-remove-coupon{
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #da252b;
    margin-right: 21px;
}

.cart-page .right .cart_totals .bar-tablet .unit .price[data-title="Total"] {
    color: #0d4d28;
    font-weight: 600;
}
.cart-page .right .cart_totals .bar-tablet .unit .price {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.cart-page .right .cart_totals .bar-tablet .order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 10px;
    border-top: solid 1px #a89f99;
    margin-top: 20px;
}

.cart-page .right .cart_totals .bar-tablet .order-total .sub{
    text-transform: uppercase;
}

.cart-page .right .cart_totals .bar-tablet .final-total .sub {
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0d4d28;
    margin-bottom: 0;
}

.cart-page .right .cart_totals .bar-tablet .checkout-button::before {
    content: "CHECKOUT";
    position: absolute;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: white;
    top: 10px;
}
.cart-page .right .cart_totals .bar-tablet .checkout-button {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    background-color: #0d4d28;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    text-decoration: none;
    color: #0d4d28;
    padding: 0;
}

.woocommerce-info {
    border-top-color: #da252b;
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
}
.woocommerce-info .woocommerce-Button{
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
}

.woocommerce-info::before {
    color: #da252b;
}

.woocommerce-message:before{
    right: 20px;
    left: auto;
}
.woocommerce-message{
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 20px;
    width: calc(1080px - 40px);
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    width: 100%;
    margin-bottom: 8px;
}

.flatpickr-current-month, .flatpickr-weekdaycontainer, .flatpickr-day{
    font-family: 'montserrat', Arial, sans-serif !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.flatpickr-day{
    line-height: 36px !important;
}

.woocommerce ul.order_details li{
    border-right: 0;
    text-transform: capitalize;
}

.select2-results{
    font-family: 'montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: #DA252B;
}

.wpfPriceRangeField#wpfMinPrice, .wpfPriceRangeField#wpfMaxPrice{
    font-family: 'montserrat', Arial, sans-serif !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

/* hide stocks in product details */
.stock.in-stock{
    display: none;
}

.auth-page .select2-container{
    width: 100% !important;
}

.variation-Variant{
    font-style: normal !important;
}

#toast-container>div{
    opacity: 1 !important;
}