@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif !important;
}

body{
    background-color: var(--White-Color);
    color: var(--Dark-Text);
    font-family: 'Inter', sans-serif !important;
}
ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
}
a{
    text-decoration: none;
    color: inherit;
}

a.button, button.button, form.wc-block-components-totals-coupon__form button, .main-checkout-page .wc-block-checkout__actions button{
    padding: 14px 32px;
    color: var(--Fresh-Green);
    background-color: var(--Warm-Yellow);
    border-radius: 4px;
    border: 1px solid var(--Warm-Yellow);
    font-size: 16px;
    font-weight: 500;
    height: 47px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 4px;
    transition: all 0.4s ease-in-out;
}
a.button:hover, button.button:hover, form.wc-block-components-totals-coupon__form button:hover, .main-checkout-page .wc-block-checkout__actions button:hover{
    background-color: var(--Fresh-Green);
    border-color: var(--Fresh-Green);
    color: var(--White-Color);

}
div.cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}
div.cart-btn a{
    min-width: 47px;
    width: 47px;
    height: 47px;
    padding: 0px;
    background-color: var(--Warm-Yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    color: var(--Fresh-Green);
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
}
a.added_to_cart.wc-forward {
    display: none;
}

div.cart-btn a:hover{
    background-color: var(--Fresh-Green);
    border-color: var(--Fresh-Green);
    color: var(--White-Color);
}
/* root color's */
:root{
    --Fresh-Green: #003F28;
    --Warm-Yellow: #F4C430;
    --White-Color: #FFFFFF;
    --Dark-Text: #000000;
    --Light-Grey: #F5F5F5;
    --Border-Color: #DEE2E6;
}
body *{
    margin: 0px;
}
/* Font Style */
.bold{
    font-weight: 700;
}
.medium{
    font-weight: 500;
}
.regular{
    font-weight: 400;
}
h1, .font-48{
    font-size: 48px;
}
h2, .font-32{
    font-size: 32px;
}
h3, .font-24{
    font-size: 24px;
}
h4, .font-20{
    font-size: 20px;
}
h5, .font-16{
    font-size: 16px;
}
h6, .font-14{
    font-size: 14px;
}
p, .font-12{
    font-size: 12px;
}
.rounded-2px{
    border-radius: 2px;
}
.line-height-1{
    line-height: 1;
}
/* color's */
.fresh-green-clr{
    color: var(--Fresh-Green);
}
.warm-yellow-clr{
    color: var(--Warm-Yellow);
}
.white-color-clr{
    color: var(--White-Color);
}
.dark-text-clr{
    color: var(--Dark-Text);
}
.light-grey-clr{
    color: var(--Light-Grey);
}
.border-color-clr{
    color: var(--Border-Color);
}
/* background color's */
.fresh-green-bg{
    background-color: var(--Fresh-Green);
}
.warm-yellow-bg{
    background-color: var(--Warm-Yellow);
}
.white-color-bg{
    background-color: var(--White-Color);
}
.dark-text-bg{
    background-color: var(--Dark-Text);
}
.light-grey-bg{
    background-color: var(--Light-Grey);
}
.border-color-bg{
    background-color: var(--Border-Color);
}
/* padding */
.p-32{
    padding: 32px;
}
.pt-32{
    padding-top: 32px;
}
.pb-32{
    padding-bottom: 32px;
}
/* border */
.dg-border{
    border: 1px solid var(--Border-Color);
}
.dg-border-top{
    border-top: 1px solid var(--Border-Color);
}
.dg-border-bottom{
    border-bottom: 1px solid var(--Border-Color);
}


/* topbar */
.topbar{
    padding: 10px 0;
}
.topbar ul.quick-links{
    gap: 21px;
}
.topbar ul.quick-links li::after {
    content: "";
    margin: 0 10px;
    width: 1px;
    height: 7px;
    border-radius: 10px;
    background-color: var(--Dark-Text);
    position: absolute;
    top: calc(50% + 2px);
    transform: translateY(-50%);
}
.topbar ul.quick-links li:last-child::after{
    display: none;
}
.topbar .follow-us{
    gap: 10px;
}
.topbar .follow-us a{
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topbar .follow-us a svg{
    width: 100%;
    height: 100%;
}
/* Header */
header{
    padding: 10px 0;
}
header .inner .logo{
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
}
header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    white-space: nowrap;
    gap: 24px;
}
header .inner .logo a{
    display: block;
}
header .inner .logo img{
    width: 100%;
    height: auto;
    max-width: 113px;
    min-width: 113px;
}
header .inner .logins .logins-container{
    display: flex;
    align-items: center;
    gap: 24px;
}
header .inner .logins a{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--Dark-Text);
}
header .inner .logins a svg{
    width: 36px;
    height: 36px;
}
header .inner .logins a span {
    position: absolute;
    top: 0px;
    left: calc(100% - 13px);
    height: 15px;
    min-width: 15px;
    border-radius: 10px;
    background-color: var(--Fresh-Green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--White-Color);
    padding: 4px;
}
header .inner .search-content{
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 578px;
    width: 100%;
}
header .inner .search-content .search-box input{
    width: 100%;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--Dark-Text);
    padding: 13px 17px;
}
header .inner .search-content .search-box input::placeholder{
    color: var(--Dark-Text);
}
header .inner .search-content .search-box {
    width: 100%;
    position: relative;
    border: 1px solid var(--Border-Color);
    outline: none;
    border-radius: 100px;
    padding: 3px;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 51px;
}
header .inner .search-content .search-box button{
    min-width: 45px;
    width: 45px;
    height: 45px;
    background-color: var(--Warm-Yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    color: var(--Dark-Text);
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
}
header .inner .search-content .search-box button:hover{
    background-color: var(--Fresh-Green);
    color: var(--White-Color);
}
/* menu list */
.menu-list{
    padding: 4px 0px;
    background-color: var(--Warm-Yellow);
}
.menu-list .inner{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.menu-list .inner ul.menu{
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.menu-list .inner ul.menu li a{
    transition: all 0.4s ease-in-out;
}
.menu-list .inner ul.menu li a:hover{
    color: var(--Fresh-Green);
}
.menu-list .inner .categories-show .category-list{
    padding: 14px 32px;
    color: var(--White-Color);
    background-color: var(--Fresh-Green);
    border-radius: 4px;
    border: 1px solid var(--Fresh-Green);
    font-size: 16px;
    font-weight: 500;
    height: 47px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.4s ease-in-out;
}
/* .menu-list .inner .categories-show .category-list:hover, */
.categories-show.active .category-list{
    background-color: transparent !important;
    color: var(--Fresh-Green) !important;
}
.menu-list .inner .categories-show{
    position: relative;
}
.menu-list .inner .categories-show .categories-list{
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background-color: var(--White-Color);
    border-radius: 0px 0px 10px 10px;
    border: 1px solid var(--Border-Color);
    border-top: none;
    z-index: 999;
    width: 280px;
    box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.05);
    max-height: 294px;
    overflow-y: scroll;
}
.categories-list {
  display: none;
}
.categories-show.active .categories-list {
  display: block;
}
.menu-list .inner .categories-show .categories-list::-webkit-scrollbar{
    width: 4px;
}
.menu-list .inner .categories-show .categories-list::-webkit-scrollbar-track{
    background-color: transparent;
}
.menu-list .inner .categories-show .categories-list::-webkit-scrollbar-thumb{
    background-color: var(--Fresh-Green);
    border-radius: 10px;
}
.menu-list .inner .categories-show .categories-list li{
    border-bottom: 1px solid var(--Border-Color);
}
.menu-list .inner .categories-show .categories-list li:last-child{
    border-bottom: none;
}
.menu-list .inner .categories-show .categories-list li a{
    padding: 10px;
    display: block;
    transition: all 0.4s ease-in-out;
}
.menu-list .inner .categories-show .categories-list li a:hover{
    background-color: var(--Light-Grey);
}



/* Hero Banner */
.hero-banner .inner-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 377px;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

/* Categories */
.swiper-button-prev,
.swiper-button-next{
    height: 32px;
    width: 32px;
    margin: 0px;
    border-radius: 100px;
    background-color: var(--Fresh-Green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    border: 1px solid var(--Fresh-Green);
}
.swiper-button-prev::after,
.swiper-button-next::after{
    font-size: 14px;
    font-weight: 600;
    color: var(--White-Color);
    transition: all 0.4s ease-in-out;
}
.swiper-button-prev:hover,
.swiper-button-next:hover{
    background-color: transparent;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after{
    color: var(--Fresh-Green);
}
.categories .categories-slide-main a.categories-item{
    display: block;
}
.categories .categories-slide-main a.categories-item .image{
    overflow: hidden;
    border-radius: 10px;
}
.categories .categories-slide-main a.categories-item img{
    width: 100%;
    transition: all 0.4s ease-in-out;
}
.categories .categories-slide-main a.categories-item:hover img{
    transform: scale(1.05);
}
.categories .categories-slide-main a.categories-item span{
    display: block;
    text-align: center;
    margin-top: 8px;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

/* Location Popup */
.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.location-popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 500px;
    max-height: calc(100% - 40px);
    z-index: 1000;
    background-color: var(--White-Color);
    overflow-y: scroll;
    border-radius: 10px;
}
.location-popup::-webkit-scrollbar{
    width: 4px;
}
.location-popup::-webkit-scrollbar-track{
    background-color: transparent;
}
.location-popup::-webkit-scrollbar-thumb{
    background-color: var(--Fresh-Green);
    border-radius: 10px;
}
.location-popup .poput-header{
    border-bottom: 1px solid var(--Border-Color);
    padding: 20px 20px 10px;
}
.location-popup .poput-header .close {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}
.location-popup .poput-header .close svg {
    width: 16px;
    height: 16px;
}
.location-popup .location-search{
    border-bottom: 1px solid var(--Border-Color);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.location-popup .location-search input{
    width: 100%;
    outline: none;
    border: 1px solid var(--Border-Color);
    font-size: 14px;
    font-weight: 400;
    color: var(--Dark-Text);
    padding: 10px 20px;
    line-height: 1;
    border-radius: 50px;
    height: 39px;
    transition: all 0.4s ease-in-out;
}
.location-popup .location-search input:focus{
    border: 1px solid var(--Fresh-Green);
}
.location-popup .location-search input::placeholder{
    color: var(--Dark-Text);
}
.location-popup .location-search button{
    width: 39px;
    height: 39px;
    min-width: 39px;
    background-color: var(--Fresh-Green);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    color: var(--White-Color);
    border-radius: 50px;

}
.location-popup .recent-location{
    background-color: var(--Light-Grey);
    padding: 20px;
}
.location-popup .recent-location .box{
    display: flex;
    flex-direction: column;
    background-color: var(--White-Color);
    border-radius: 10px;
    border: 1px solid var(--Border-Color);
}
.location-popup .recent-location .box .main-location{
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid var(--Border-Color);
}
.location-popup .recent-location .box .main-location:last-child{
    border-bottom: none;
}
.location-popup .dammy-image{
    padding-bottom: 40px;
}
.location-popup,
.overlay {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

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

/* banner section */
.banner-section .image{
    border-radius: 20px;
    overflow: hidden;
}

/* products list */
.products-list .box{
    border-radius: 10px;
    padding: 10px;
    transition: all 0.4s ease-in-out;
}
.products-list .box:hover{
    border: 1px solid var(--Warm-Yellow);
}
.products-list .box .image{
    position: relative;
    overflow: hidden;
    margin-bottom: 4px;
}
.products-list .box .image a{
    display: block;
}
.products-list .box .image img{
    width: 100%;
    height: 292px;
    object-fit: contain;
    transition: all 0.4s ease-in-out;
}
.products-list .box:hover .image img{
    transform: scale(1.05);
}
.products-list .box .image .heart{
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Light-Grey);
    border-radius: 50px;
    color: var(--Fresh-Green);
}
.products-list .box .image .heart svg{
    width: 24px;
    height: 24px;
}
.products-list .box .image .heart .unclick{
    display: block;
}
.products-list .box .image .heart .click{
    display: none;
}
.products-list .box .image .heart.active .unclick {
    display: none;
}
.products-list .box .image .heart.active .click {
    display: block;
    transition: 0.3s;
}
.products-list .box .content-bottom{
    margin-bottom: 10px;
}
.products-list .box .buttons{
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.products-list .box .content-bottom .stock{
    margin-bottom: 4px;
    line-height: 1;
}
.products-list .box .content-bottom h5 {
    margin-bottom: 10px;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

/* near products */
.near-products .cookies{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 64px 24px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}
.near-products .cookies h3{
    margin-bottom: 20px;
}
.near-products .cookies div{
    margin-bottom: 36px;
}

/* near products */
.near-products .product-box .box .end-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: self-end;
}
.near-products .product-box .box .end-btns .heart svg{
    width: 24px;
    height: 24px;
    color: var(--Fresh-Green);
    cursor: pointer;
}
.near-products .product-box .box .end-btns .heart .unclick{
    display: block;
}
.near-products .product-box .box .end-btns .heart .click{
    display: none;
}
.near-products .product-box .box .end-btns .heart.active .unclick {
    display: none;
}
.near-products .product-box .box .end-btns .heart.active .click {
    display: block;
    transition: 0.3s;
}
.near-products .box .end-btns button{
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    color: var(--Fresh-Green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.near-products .product-box .product-box-main{
    display: flex;
    flex-direction: column;
    gap: 10px;
} 
.near-products .product-box .product-box-main .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid var(--Border-Color);
    padding: 5px 10px 5px 5px;
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
}
.near-products .product-box .product-box-main .box:hover{
    border-color: var(--Warm-Yellow);
}
.near-products .product-box .product-box-main .box .content-bottom{
    width: 100%;
}
.near-products .product-box .product-box-main .box img{
    border-radius: 4px;
    height: 87px;
    width: 87px;
    min-width: 87px;
    object-fit: contain;
    background-color: var(--White-Color);
}
.near-products .product-box .product-box-main .box h5{
    line-height: 1;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
ul.products.columns-4 .dg-product-item a.product-image span.sale-badge{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    padding: 10px;
    background-color: var(--Fresh-Green);
    font-size: 14px;
    line-height: 1;
    border-radius: 50px;
    color: var(--White-Color);
}

/* why choose */
.why-choose .box {
    text-align: center
}
.why-choose .box .main-circle{
    width: 100%;
    background-color: #003f2840;
    display: block;
    height: 138px;
    width: 138px;
    padding: 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
}
.why-choose .box .main-circle .circle{
    background-color: var(--Fresh-Green);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    padding: 20px;
}
.why-choose .box .main-circle .circle img{
    height: 100%;
    width: 100%;
}

/* popular searches */
.popular-searches .content{
    gap: 10px;
    display: grid;
    grid-template-columns: 75px 4px 1fr;
}
.popular-searches .content .title{
    width: 75px;
}
.popular-searches .content a{
    transition: all 0.4s ease-in-out;
}
.popular-searches .content a:hover{
    color: var(--Fresh-Green);
}

/* Footer */
footer{
    position: relative;
    border-top: 1px solid var(--Border-Color);
    margin-top: 77px;
    padding-top: 77px;
    padding-bottom: 16px;
}
footer .footer-logo{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .footer-logo img{
    width: 215px;
    height: 91px;
    object-fit: contain;
    border-radius: 10px;
    padding: 10px;
    background-color: var(--White-Color);
}
footer .content .follow-icons{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    flex-wrap: wrap;
}
footer .content .follow-icons a{
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Fresh-Green);
    border-radius: 100px;
    color: var(--White-Color);
    transition: all 0.4s ease-in-out;
}
footer .content .follow-icons a:hover{
    transform: scale(1.08);
}
footer .content .footer-nav{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 10px;
}
footer .content .footer-nav li a{
    color: var(--Dark-Text);
    position: relative;
    transition: all 0.4s ease-in-out;
}

footer .content .footer-nav li a::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    width: 0px;
    height: 2px;
    border-radius: 10px;
    background-color: var(--Fresh-Green);
    transition: all 0.4s ease-in-out;
}
footer .content .footer-nav li a:hover{
    padding-left: 16px;
}

footer .content .footer-nav li a:hover::before{
    width: 10px;
}
footer .content form .input-newsletter{
    position: relative;
    border: 1px solid var(--Border-Color);
    outline: none;
    border-radius: 100px;
    padding: 2px;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
}
footer .content form .input-newsletter input{
    width: 100%;
    outline: none;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--Dark-Text);
    padding: 12px 16px;
}
footer .content form .input-newsletter input::placeholder{
    color: var(--Dark-Text);
}
footer .content form .input-newsletter button {
    min-width: 36px;
    width: 36px;
    height: 36px;
    background-color: var(--Fresh-Green);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    color: var(--White-Color);
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
}
.product-details .product {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 32px;
    position: relative;
}
.product-details .product span.onsale {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    padding: 10px;
    background-color: var(--Fresh-Green);
    font-size: 14px;
    line-height: 1;
    border-radius: 50px;
    color: var(--White-Color);
}
.product-details .dg-product-item{
    display: block;
}
.product-details .product .woocommerce-product-gallery, .product-details .product .summary.entry-summary {
    width: calc(50% - 12px);
    position: relative;
}
.product-details .product .woocommerce-product-gallery img{
    width: 100%;
    height: 350px;
    object-fit: contain;
}
.product-details .product  .woocommerce-tabs.wc-tabs-wrapper, .product-details .product  section.related.products {
    width: 100%;
    position: relative;
}
.product-details .product .woocommerce-product-gallery {
    border: 1px solid var(--Border-Color);
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
}
.product-details .product .woocommerce-product-gallery .flex-viewport {
    height: 350px !important;
    width: 100%;
}
.product-details .product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    height: 100%;
}
.product-details .product .woocommerce-product-gallery .woocommerce-product-gallery__image {
    height: 100%;
}
.product-details .product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-details .product .woocommerce-product-gallery .woocommerce-product-gallery__image a img.wp-post-image {
    height: 350px;
    width: 100%;
    object-fit: contain;
}
.product-details .product .woocommerce-product-gallery ol {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    padding: 0px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--Border-Color);
}
.product-details .product .woocommerce-product-gallery ol li {
    width: 100%;
    border: 1px solid var(--Border-Color);
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--White-Color);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
}
.product-details .product .woocommerce-product-gallery ol li:has(img.flex-active) {
    border: 1px solid var(--Warm-Yellow);
    box-sizing: border-box;
}
.product-details .product .woocommerce-product-gallery ol li img {
    width: 100%;
    height: 100%;
}
.product-details .product .woocommerce-product-gallery a.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--Fresh-Green);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    display: none;
}
.woocommerce-product-gallery__trigger img {
    display: none !important;
}
.woocommerce-product-gallery__trigger::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-color: #003F28;
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
}
.product-details .product .summary.entry-summary form {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-top: 16px;
}
.product-details .product .summary.entry-summary .product_meta span.posted_in {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 5px;
}
.product-details .product .summary.entry-summary .woocommerce-product-details__short-description p{
    font-size: 16px;
    display: inline-block;
    background-color: var(--Light-Grey);
    border: 1px solid var(--Border-Color);
    border-radius: 4px;
    padding: 5px 20px;
}
.product-details .product .summary.entry-summary form .quantity {
    max-width: 120px;
    width: 100%;
}
ins {
    text-decoration: none;
}
.price del,ul.products.columns-4 .dg-product-item .product-content .product-price del{
    color: var(--Dark-Text);
    font-size: 14px;
    opacity: .5 !important;
}
/* Chrome, Edge, Safari */
.product-details .product .summary.entry-summary form .quantity input[type=number]::-webkit-inner-spin-button,
.product-details .product .summary.entry-summary form .quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
.product-details .product .summary.entry-summary form .quantity input[type=number] {
    -moz-appearance: textfield;
    appearance: none;
}
.product-details .product .summary.entry-summary form .quantity input {
    width: 100%;
    text-align: center;
    outline: none;
    border-radius: 4px;
    border: none;
    border: 1px solid var(--Border-Color);
    font-size: 16px;
    font-weight: 500;
    height: 47px;
    line-height: 1;
    transition: all 0.4s ease-in-out;
}
.product-details .product .summary.entry-summary form .quantity input:focus{
    border: 1px solid var(--Dark-Text);
}
.product-details .product .summary.entry-summary .product_meta a {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid var(--Fresh-Green);
    line-height: 1;
    color: var(--Fresh-Green);
    border-radius: 34px;
    font-size: 14px;
    transition: all 0.4s ease-in-out;
}
.product-details .product .summary.entry-summary .product_meta a:hover{
    background-color: var(--Fresh-Green);
    color: var(--White-Color);
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper {
    padding: 20px;
    border: 1px solid var(--Border-Color);
    border-radius: 10px;
    background-color: var(--Light-Grey);
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--Border-Color);
    margin-bottom: 20px;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li.active::after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--Dark-Text);
    margin-bottom: -11px;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper p.woocommerce-noreviews {
    font-size: 14px;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper span.comment-reply-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    color: var(--Fresh-Green);
    display: block;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper form label {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper form p.stars span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper form p.stars a {
    padding: 8px 16px;
    display: inline-block;
    border: 1px solid var(--Fresh-Green);
    font-size: 14px;
    border-radius: 40px;
    line-height: 1;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper form p.stars{
    margin-bottom: 10px;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper form p.stars a.active{
    background-color: var(--Fresh-Green);
    color: var(--White-Color);
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper form textarea,
.product-details .product .woocommerce-tabs.wc-tabs-wrapper form input {
    width: 100%;
    border: 1px solid var(--Fresh-Green);
    border-radius: 10px;
    resize: none;
    margin-bottom: 10px;
    padding: 10px;
    outline: none;
    font-size: 14px;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper p.comment-form-cookies-consent{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper p.comment-form-cookies-consent input,
.product-details .product .woocommerce-tabs.wc-tabs-wrapper p.comment-form-cookies-consent label {
    width: auto !important;
    margin-bottom: 0px;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper form input#submit {
    padding: 14px 32px;
    color: var(--Fresh-Green);
    background-color: var(--Warm-Yellow);
    border-radius: 4px;
    border: 1px solid var(--Warm-Yellow);
    font-size: 16px;
    font-weight: 500;
    height: 47px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 4px;
    transition: all 0.4s ease-in-out;
    width: auto;
    margin-bottom: 0px;
    margin-top: 10px;
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper form input#submit:hover{
    background-color: var(--Fresh-Green);
    border-color: var(--Fresh-Green);
    color: var(--White-Color);
}
ul.products.columns-4, .wishlist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}
.wishlist-grid{
    margin-top: 24px;
}
@media (max-width: 991px) {
    ul.products.columns-4, .wishlist-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 767px) {
    ul.products.columns-4, .wishlist-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 425px) {
    ul.products.columns-4, .wishlist-grid {
        grid-template-columns: 1fr;
    }
}

ul.products.columns-4 .dg-product-item, .wishlist-grid .wishlist-item{
    border-radius: 10px;
    padding: 10px;
    transition: all 0.4s ease-in-out;
    border: 1px solid var(--Border-Color);
}
ul.products.columns-4 .dg-product-item:hover,  .wishlist-grid .wishlist-item:hover{
    border: 1px solid var(--Warm-Yellow);
}
ul.products.columns-4 .dg-product-item a.product-image,  .wishlist-grid .wishlist-item a {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 4px;
}
ul.products.columns-4 .dg-product-item a.product-image img, .wishlist-grid .wishlist-item a img{
    width: 100%;
    height: 292px;
    object-fit: contain;
    transition: all 0.4s ease-in-out;
}
ul.products.columns-4 .dg-product-item:hover a.product-image img,  .wishlist-grid .wishlist-item:hover a img{
    transform: scale(1.05);
}
ul.products.columns-4 .dg-product-item .product-content h5,  .wishlist-grid .wishlist-item h3{
    margin-bottom: 10px;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    font-size: 16px;
    font-weight: 500;
    color: var(--Dark-Text);
    text-align: left;
}
ul.products.columns-4 .dg-product-item .product-content .product-price,  .wishlist-grid .wishlist-item .price {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-weight: 700;
    font-size: 14px;
    color: var(--Fresh-Green);
    margin-bottom: 10px;
}
.wishlist-grid .wishlist-item .price{
    display: block;
    width: 100%;
}
.wishlist-grid .wishlist-item button {
    margin: 0px;
    background-color: transparent;
    color: #FF4D4D;
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: underline;
}
ul.products.columns-4 .dg-product-item .product-content .product-actions a {
    position: relative;
    width: 100%;
    gap: 10px;
}
ul.products.columns-4 .dg-product-item .product-content .product-actions a::after{
    content: "Add To Cart";
}
.filter-box {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.filter-box .woocommerce-notices-wrapper {
    width: 100%;
}
.filter-box p{
    font-size: 14px;
    padding: 6px 16px;
    border: 1px solid var(--Border-Color);
    border-radius: 4px;
    background-color: var(--Light-Grey);
}
.filter-box form select{
    border: none;
    border-bottom: 1px solid var(--Border-Color);
    padding: 10px 0px;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    background-color: transparent;
}
.xoo-wsc-basket {
    background-color: var(--Fresh-Green);
    color: var(--White-Color);
}
.xoo-wsc-items-count {
    background-color: var(--Warm-Yellow);
    color: var(--Dark-Text);
}
.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn,
.xoo-wsc-markup .xoo-wsc-btn,
.xoo-wsc-markup .woocommerce-shipping-calculator button[type="submit"] {
    background-color: var(--Fresh-Green);
    color: var(--White-Color);
    border: 2px solid var(--Fresh-Green);
    padding: 10px 20px;
    white-space: nowrap;
    flex-wrap: nowrap;
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
}
.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover, .xoo-wsc-markup .xoo-wsc-btn:hover, .xoo-wsc-markup .woocommerce-shipping-calculator button[type="submit"]:hover {
    background-color: var(--Warm-Yellow);
    color: var(--Dark-Text);
    border: 2px solid var(--Warm-Yellow);
}
input[name="xoo-wsc-slcf-input"] {
    flex-grow: 1;
    text-align: center;
    outline: none;
    border: 1px solid var(--Border-Color);
    border-radius: 4px;
    margin-right: 10px;
}
span.xoo-wsc-sp-atc a.button {
    text-transform: capitalize;
    font-size: 14px;
    padding: 10px;
    line-height: 1;
    height: auto;
}
span.xoo-wsc-sp-atc a.button span {
    margin-right: 0px;
    line-height: 1;
}
.xoo-wsch-text {
    font-size: 16px;
    font-weight: 700;
}
.commentlist {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 10px;
}
.commentlist li.review {
    padding: 10px;
    border: 1px solid var(--Border-Color);
    border-radius: 4px;
    background-color: var(--White-Color);
    width: calc(33% - 14px);
}
@media screen and (max-width: 991px) {
    .commentlist li.review {
        width: calc(50% - 14px);
    }   
}
@media screen and (max-width: 575px) {
    .commentlist li.review {
        width: calc(100% - 0px);
    }   
}

.xoo-wsc-sc-bki {
    font-size: 36px;
    color: var(--Dark-Text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.xoo-wsc-icon-cart2::after{
    content: "Cart";
    font-size: 12px;
    font-weight: 400;
    font-family: 'Inter', sans-serif !important;
}
span.xoo-wsc-sc-count {
    position: absolute;
    top: 0px;
    left: calc(100% - 8px);
    height: 15px;
    min-width: 15px;
    width: auto;
    border-radius: 10px;
    background-color: var(--Fresh-Green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--White-Color);
    padding: 4px;
    font-size: 12px;
    right: auto;
}
.xoo-wsc-sm-info .xoo-wsc-pprice, .xoo-wsc-body span.amount {
    color: var(--Fresh-Green);
    font-size: 14px;
}

.main-checkout-page form fieldset {
    padding: 20px !important;
    border: 1px solid var(--Border-Color) !important;
    border-radius: 4px;
    margin-bottom: 20px !important;
    box-shadow: 0px 0px 24px #00000010;
}
.wc-block-components-notice-banner.is-error {
    margin-top: 0px;
}
.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url] {
    border: 1px solid var(--Border-Color) !important;
    color: var(--Dark-Text) !important;
    outline: none;
}
.wc-blocks-components-select .wc-blocks-components-select__select {
    border: 1px solid var(--Border-Color);
    color: var(--Dark-Text) !important;
    outline: none;
}
.main-checkout-page form textarea {
    border: 1px solid var(--Border-Color) !important;
    color: var(--Dark-Text) !important;
    outline: none;
    font-size: 14px;
    padding: 10px;
}
.main-checkout-page .wc-block-components-form .wc-block-checkout__order-notes.wc-block-components-checkout-step {
    margin-bottom: 20px;
}
.main-checkout-page .wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
    border-top: 1px solid var(--Border-Color);
    padding-top: 20px;
    margin-bottom: 20px;
}
.main-checkout-page .wc-block-components-notices {
    display: block;
    margin: 0em 0;
}
.main-checkout-page .wc-block-checkout__actions {
    padding-bottom: 0px;
}
.main-checkout-page .wc-block-checkout__actions .wc-block-checkout__actions_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.main-checkout-page .wc-block-checkout__actions a{
    color: var(--Fresh-Green);
    padding: 14px 32px;
    border: 1px solid var(--Fresh-Green);
    display: flex;
    align-items: center;
    text-align: center;
    height: 47px;
    gap: 10px;
    border-radius: 4px;
}
.main-checkout-page .wc-block-checkout__actions a svg{
    position: static;
    transform: none;
}
.main-checkout-page .wc-block-components-sidebar p.wc-block-components-checkout-order-summary__title-text{
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
}
.main-checkout-page .wc-block-components-sidebar .wc-block-components-checkout-order-summary__title {
    padding: 16px 16px;
    margin: 0px;
    border-bottom: 1px solid var(--Border-Color);
}
.main-checkout-page div#customer_login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    /* margin-top: 24px; */
}
@media screen and (max-width: 991px) {
    .main-checkout-page div#customer_login {
        grid-template-columns: 1fr;
    }
}
.main-checkout-page div#customer_login .col-1,
.main-checkout-page div#customer_login .col-2,
.main-checkout-page .entry-content form.lost_reset_password,
.main-checkout-page .entry-content .woocommerce {
    width: 100%;
    padding: 20px;
    border: 1px solid var(--Border-Color);
    border-radius: 4px;
    background-color: var(--White-Color);
}
.main-checkout-page .entry-content form.lost_reset_password{
    /* margin-top: 24px; */
    padding-top: 4px;
}
.main-checkout-page .entry-content .woocommerce{
    margin-top: 24px;
    background-color: var(--Light-Grey);
}
.main-checkout-page div#customer_login h2{
    font-size: 20px;
    font-weight: 500;
}
.main-checkout-page div#customer_login form p,
.main-checkout-page .entry-content form.lost_reset_password p{
    margin-top: 20px;
}
.main-checkout-page div#customer_login form p label,
.main-checkout-page .entry-content form.lost_reset_password p label{
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}
.main-checkout-page div#customer_login form p input,
.main-checkout-page .entry-content form.lost_reset_password p input{
    width: 100%;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--Dark-Text);
    padding: 8px 16px;
    border-radius: 4px;
    background-color: var(--White-Color);
    border: 1px solid var(--Border-Color);
}
.password-input{
    position: relative;
    display: block;
}
.password-input button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--Fresh-Green);
    height: calc(100% - 10px);
    padding: 4px;
    border: none;
    border-radius: 4px;
    color: var(--White-Color);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}
.password-input button.show-password-input::after{
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    background-image: url("../image/eye.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.password-input button.display-password::after{
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    background-image: url("../image/eye-off.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

}
.main-checkout-page div#customer_login form p .woocommerce-form__label-for-checkbox input {
    width: auto;
}
.main-checkout-page div#customer_login form p .woocommerce-form__label-for-checkbox{
    margin-bottom: 20px;
}
.main-checkout-page div#customer_login form p.lost_password a{
    font-size: 14px;
    text-decoration: underline;
}
.main-checkout-page div#customer_login form .woocommerce-privacy-policy-text p,
.main-checkout-page .entry-content form.lost_reset_password p,
.main-checkout-page .entry-content .woocommerce p{
    font-size: 14px;
}
.woocommerce-lost-password .main-checkout-page .entry-content .woocommerce .woocommerce-message{
    font-size: 20px;
    font-weight: 500;
    outline: none;
}

/* My Account */
.logged-in .main-checkout-page .entry-content .woocommerce {
    background-color: transparent;
    border: none;
    padding: 0px;
    display: grid;
    gap: 24px;
    grid-template-columns: 220px 1fr;
    align-items: start;
}
@media screen and (max-width: 991px) {
    .logged-in .main-checkout-page .entry-content .woocommerce {
        grid-template-columns: 1fr;
    }
}
.logged-in .main-checkout-page .entry-content .woocommerce nav{
    border-radius: 4px;
    border: 1px solid var(--Border-Color);
    overflow: hidden;
    background-color: var(--White-Color);
}
.logged-in .main-checkout-page .entry-content .woocommerce nav ul li{
    border-bottom: 1px solid var(--Border-Color);
}
.logged-in .main-checkout-page .entry-content .woocommerce nav ul li.woocommerce-MyAccount-navigation-link--downloads, 
.logged-in .main-checkout-page .entry-content .woocommerce nav ul li.woocommerce-MyAccount-navigation-link--payment-methods {
    display: none;
}
.logged-in .main-checkout-page .entry-content .woocommerce nav ul li:last-child{
    border-bottom: none;
}
.logged-in .main-checkout-page .entry-content .woocommerce nav ul li a{
    display: block;
    padding: 10px 16px;
    font-size: 16px;
    transition: all 0.4s ease-in-out;
}
.logged-in .main-checkout-page .entry-content .woocommerce nav ul li a:hover,
.logged-in .main-checkout-page .entry-content .woocommerce nav ul li.is-active a{
    background-color: var(--Light-Grey);
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content{
    padding: 20px;
    border: 1px solid var(--Border-Color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 0px 24px #00000010;
}
@media (max-width: 575px) {
    .logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content{
        overflow-x: scroll;
    }
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content p a{
    color: var(--Fresh-Green);
    text-decoration: underline;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .woocommerce-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}
@media screen and (max-width: 991px) {
    .logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .addresses {
        grid-template-columns: 1fr;
    }
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .addresses .col-1,
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .addresses .col-2{
    width: 100%;
    background-color: var(--Light-Grey);
    border: 1px solid var(--Border-Color);
    padding: 20px;    
    border-radius: 4px;
}

.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .addresses header{
    padding: 0px;
    margin-bottom: 20px;
    background: transparent;
    border: none;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content h2,
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content form h2{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0px;
    text-transform: capitalize;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .addresses header a{
    font-size: 14px;
    border: 1px solid var(--Fresh-Green);
    padding: 6px 16px;
    border-radius: 40px;
    background-color: var(--Fresh-Green);
    color: var(--White-Color);
    transition: all 0.4s ease-in-out;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .addresses header a:hover{
    background-color: transparent;
    color: var(--Fresh-Green);
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper p{
    margin-bottom: 20px;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper label{
    display: block;
    margin-bottom: 4px;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper input{
    width: 100%;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper input {
    width: 100%;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--Dark-Text);
    padding: 8px 16px;
    border-radius: 4px;
    background-color: var(--White-Color);
    border: 1px solid var(--Border-Color);
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content form span.woocommerce-input-wrapper{
    height: 100%;
    display: block;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content form .select2-container--default .select2-selection--single {
    background-color: var(--White-Color);
    border: 1px solid var(--Border-Color);
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    height: 39px;
    display: flex;
    align-items: center;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--Dark-Text);
    line-height: normal;
    padding: 0px;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    width: 30px;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content section.woocommerce-order-details table{
    width: 100%;
    margin: 0px;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content section.woocommerce-order-details table th,
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content section.woocommerce-order-details table td{
    border: 1px solid var(--Border-Color);
    padding: 5px 10px;
    font-size: 14px;
    width: 50%;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .my_account_orders.account-orders-table {
    width: 100%;
}
@media (max-width: 575px) {
    .logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .my_account_orders.account-orders-table {
        white-space: nowrap;
    }
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .my_account_orders.account-orders-table th,
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content .my_account_orders.account-orders-table td{
    border: 1px solid var(--Border-Color);
    padding: 5px 10px;
    font-size: 14px;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content section.woocommerce-order-details h2{
    margin-bottom: 5px;
    margin-top: 20px;
}
.logged-in .main-checkout-page .entry-content .woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper{
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
}
.select2-dropdown {
    border: 1px solid var(--Border-Color);
}
form.woocommerce-EditAccountForm.edit-account label {
    display: block;
    margin-bottom: 4px;
}
form.woocommerce-EditAccountForm.edit-account input {
    width: 100%;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--Dark-Text);
    padding: 8px 16px;
    border-radius: 4px;
    background-color: var(--White-Color);
    border: 1px solid var(--Border-Color);
}
form.woocommerce-EditAccountForm.edit-account  p.woocommerce-form-row {
    margin-bottom: 20px;
}
.main-checkout-page form fieldset legend {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
/* form.woocommerce-EditAccountForm.edit-account p.woocommerce-form-row span.password-input {
    position: relative;
    display: block;
}
form.woocommerce-EditAccountForm.edit-account p.woocommerce-form-row span.password-input button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--Fresh-Green);
    height: calc(100% - 10px);
    padding: 4px;
    border: none;
    border-radius: 4px;
    color: var(--White-Color);
    font-weight: 500;
    font-size: 14px;
}
form.woocommerce-EditAccountForm.edit-account p.woocommerce-form-row span.password-input button::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M10 12a2 2 0 1 0 4 0'/%3E%3Cpath d='M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6'/%3E%3C/svg%3E") 
    no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M10 12a2 2 0 1 0 4 0'/%3E%3Cpath d='M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6'/%3E%3C/svg%3E") 
    no-repeat center / contain;
}

form.woocommerce-EditAccountForm.edit-account p.woocommerce-form-row span.password-input button.display-password::after{
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;

    background-color: currentColor;

    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M3 3l18 18'/%3E%3Cpath d='M10.6 10.6a2 2 0 0 0 2.8 2.8'/%3E%3Cpath d='M9.9 4.2c.7-.1 1.4-.2 2.1-.2c3.6 0 6.6 2 9 6a18.5 18.5 0 0 1-1.7 2.5'/%3E%3Cpath d='M6.6 6.6c-1.7 1.2-3.1 2.9-3.9 4.9c2.4 4 5.4 6 9 6c.4 0 .9 0 1.3-.1'/%3E%3C/svg%3E") 
    no-repeat center / contain;

    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M3 3l18 18'/%3E%3Cpath d='M10.6 10.6a2 2 0 0 0 2.8 2.8'/%3E%3Cpath d='M9.9 4.2c.7-.1 1.4-.2 2.1-.2c3.6 0 6.6 2 9 6a18.5 18.5 0 0 1-1.7 2.5'/%3E%3Cpath d='M6.6 6.6c-1.7 1.2-3.1 2.9-3.9 4.9c2.4 4 5.4 6 9 6c.4 0 .9 0 1.3-.1'/%3E%3C/svg%3E") 
    no-repeat center / contain;
} */
.wc-block-cart__submit-container a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    padding: 14px 32px;
    color: var(--Fresh-Green);
    background-color: var(--Warm-Yellow);
    border-radius: 4px;
    border: 1px solid var(--Warm-Yellow);
    font-size: 16px;
    font-weight: 500;
    height: 47px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 4px;
    transition: all 0.4s ease-in-out;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus {
    box-shadow: none;
    outline: none;
}
form.woocommerce-EditAccountForm.edit-account fieldset p.woocommerce-form-row {
    margin-top: 20px;
    margin-bottom: 0px;
}
header .inner .search-content .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp{
    padding: 0px;
}
header .inner .search-content .dgwt-wcas-style-pirx.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input,
header .inner .search-content .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:hover{
    border: 1px solid var(--Warm-Yellow);
}
header .inner .search-content .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:hover{
    background-color: var(--White-Color);
}
header .inner .search-content .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder{
    color: var(--Dark-Text);
    font-size: 16px;
    font-weight: 400;
}
header .inner .search-content .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{
    border: 1px solid var(--Border-Color);
    background-color: var(--White-Color);
    font-size: 16px;
    font-weight: 400;
    height: 51px;
}
header .inner .search-content .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    left: auto !important;
    right: 3px !important;
    pointer-events: auto !important;
    animation: .3s fadeIn !important;
    top: 3px;
    height: calc(100% - 6px);
    width: calc(51px - 6px);
    background: var(--Warm-Yellow);
}
header .inner .search-content .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{
    padding-left: 24px !important;
    padding-right: 76px !important;
}
header .inner .search-content .dgwt-wcas-style-pirx .dgwt-wcas-preloader {
    margin-right: 10px;
}
header .inner .search-content .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover {
    opacity: 1;
    background: var(--Warm-Yellow);
    box-shadow: none;
    border-radius: 100%;
}
header .inner .search-content .dgwt-wcas-open-pirx .dgwt-wcas-details-wrapp, .dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp {
    box-shadow: 0px 0px 24px #00000010;
}
header .inner .search-content .dgwt-wcas-suggestion-selected {
    background-color: var(--Light-Grey);
}
header .inner .search-content .dgwt-wcas-open-pirx .dgwt-wcas-details-wrapp a, .dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp a{
    border-bottom: 1px solid var(--Border-Color);
}
header .inner .search-content .dgwt-wcas-open-pirx .dgwt-wcas-details-wrapp a:last-child, .dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp a:last-child{
    border-bottom: none;
}
header .inner .logins .logins-container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}
header .inner .logo .menu-toggle,
.menu-list .inner .toggle-close {
    display: none;
}
header .inner .logo .menu-toggle button{
    outline: none;
    background-color: transparent;
    border: 1px solid var(--Border-Color);
    border-radius: 50px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .inner .logo .menu-toggle button svg{
    height: 20px;
    width: 20px;
}
#overlay{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}
nav.woocommerce-pagination {
    display: flex;
    justify-content: start;
    margin-top: 40px;
}
nav.woocommerce-pagination ul {
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid var(--Border-Color);
}
nav.woocommerce-pagination ul li span,
nav.woocommerce-pagination ul li a{
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    position: relative;
}
nav.woocommerce-pagination ul li span.current::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: var(--Warm-Yellow);
}
.product-details .product .woocommerce-tabs.wc-tabs-wrapper h5,
.product-details .product .summary.entry-summary .woocommerce-product-details__short-description h5 {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0px !important;
}

.woocommerce-checkout .entry-content .woocommerce-info {
    font-size: 14px;
    margin-bottom: 20px;
}
.woocommerce-checkout .entry-content .woocommerce-info a{
    text-decoration: underline;
    color: var(--Fresh-Green);
}
.woocommerce-checkout .entry-content .woocommerce-checkout .col-1,
.woocommerce-checkout .entry-content .woocommerce-checkout .col-2{
    width: 100%;
}
/* .woocommerce-checkout .entry-content .woocommerce-checkout #customer_details{
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
} */
.woocommerce-checkout .entry-content .woocommerce-form-login,
.woocommerce-checkout .entry-content .woocommerce-billing-fields,
.woocommerce-checkout .entry-content .woocommerce-additional-fields,
.woocommerce-checkout .entry-content .woocommerce-shipping-fields{
    /* display: block !important; */
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--Border-Color);
    box-shadow: 0px 0px 24px #00000010;
    margin-bottom: 20px;
}
.woocommerce-checkout .entry-content p{
    font-size: 14px;
}
.woocommerce-checkout .entry-content p.form-row{
    margin-top: 10px;
}
.woocommerce-checkout .entry-content p.form-row label{
    display: block;
    margin-bottom: 4px;
}
.woocommerce-checkout .entry-content p.form-row input,
.woocommerce-checkout .entry-content p.form-row textarea,
.woocommerce-checkout .entry-content p.form-row select{
    width: 100%;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--Dark-Text);
    padding: 8px 16px;
    border-radius: 4px;
    background-color: var(--White-Color);
    border: 1px solid var(--Border-Color);
}
.woocommerce-checkout .entry-content p.form-row .select2-container--default .select2-selection--single {
    height: 38.80px;
    margin: 0px;
    width: 100%;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--Dark-Text);
    padding: 8px 16px;
    border-radius: 4px;
    background-color: var(--White-Color);
    border: 1px solid var(--Border-Color);
}
.woocommerce-checkout .entry-content p.form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--Dark-Text);
    height: 100%;
    display: flex;
    align-items: center;
    line-height: normal;
    padding: 0px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected]{
    background-color: var(--Fresh-Green);
}
.woocommerce-checkout .entry-content p.form-row .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}
.woocommerce-checkout .entry-content p.form-row .woocommerce-form-login__rememberme,
.woocommerce-checkout .entry-content p.form-row .checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}
.woocommerce-checkout .entry-content p.lost_password{
    margin-top: 10px;
}
.woocommerce-checkout .entry-content p.lost_password a{
    text-decoration: underline;
    color: var(--Fresh-Green);
}
.woocommerce-checkout .entry-content p.form-row input#rememberme,
.woocommerce-checkout .entry-content p.form-row input#fast_delivery,
.woocommerce-checkout .entry-content p.form-row input#createaccount{
    width: auto;
}
/* .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    background-color: var(--Warm-Yellow) !important;
    border: none !important;
} */
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
    top: 2px !important;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover{
    background-color: var(--Warm-Yellow) !important;
    border: none !important;
}
.ui-datepicker .ui-datepicker-prev-hover {
    left: 2px !important;
}
.ui-datepicker .ui-datepicker-next-hover {
    right: 2px !important;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid var(--Fresh-Green) !important;
    background: var(--Fresh-Green) !important;
    color: var(--White-Color) !important;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid var(--Fresh-Green) !important;
    background: var(--Warm-Yellow) !important;
    color: var(--Fresh-Green) !important;
}
.ui-widget-header {
    border: 1px solid var(--Border-Color) !important;
    background: var(--Warm-Yellow) !important;
    color: var(--Fresh-Green) !important;
}
.woocommerce-checkout .entry-content h3{
    font-size: 18px;
    display: flex;
}
.woocommerce-checkout .entry-content h3 input{
    height: 20px;
    width: 20px;
}
.woocommerce-checkout .entry-content h3 label{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.woocommerce-checkout .entry-content .woocommerce-shipping-fields{
    margin-bottom: 20px;
    display: none;
}
.woocommerce-checkout form#woocommerce-checkout-form-coupon {
    margin-bottom: 20px;
}
.woocommerce-checkout div#order_review table {
    width: 100%;
    border: 1px solid var(--Border-Color);
    background: var(--White-Color);
    margin-top: 10px;
}
.woocommerce-checkout div#order_review table tr td,
.woocommerce-checkout div#order_review table tr th{
    border: 1px solid var(--Border-Color);
    padding: 10px 20px;
    font-size: 14px;
}
.woocommerce-checkout div#order_review .place-order .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 20px;
}
.woocommerce-checkout .entry-content .woocommerce-checkout #customer_details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}
/* .woocommerce-checkout .entry-content .checkout.woocommerce-checkout h3#order_review_heading {
    display: none;
} */
.woocommerce-checkout .entry-content .woocommerce{
    display: block !important;
 }
.xoo-wsc-container, .xoo-wsc-slider, .xoo-wsc-drawer {
    max-width: 300px;
    right: -300px;
}
.woocommerce-checkout div#order_review div#payment {
    margin-top: 10px;
    display: block !important;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--Border-Color);
    box-shadow: 0px 0px 24px #00000010;
    margin-bottom: 20px;
    background: var(--White-Color);
}
.woocommerce-checkout div#order_review div#payment ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.woocommerce-checkout div#order_review div#payment ul li {
    border: 1px solid var(--Border-Color);
    padding: 10px;
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.woocommerce-checkout div#order_review div#payment ul li input {
    display: block !important;
    height: 16px;
    width: 16px;
}
.woocommerce-checkout div#order_review div#payment ul li label {
    font-size: 14px;
    font-weight: 700;
}
.woocommerce-checkout div#order_review div#payment ul li .payment_box.payment_method_cod{
    width: 100%;
}
/* ERROR */
.woocommerce-checkout .entry-content .checkout-inline-error-message {
    font-size: 12px !important;
    color: red;
    margin-top: 2px;
}
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout ul.woocommerce-error {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    display: none;
}
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout ul.woocommerce-error li a {
    font-size: 12px;
    color: red;
    line-height: 1;
}
.woocommerce-checkout .entry-content p.form-row.fast-delivery-checkbox label.checkbox,
.woocommerce-checkout .entry-content p.form-row#allow_substitutions_field label.checkbox {
    flex-wrap: nowrap;
    border: 1px solid var(--Border-Color);
    padding: 10px;
    border-radius: 4px;
    background: var(--Warm-Yellow);
    align-items: center;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 0px;
}
.woocommerce-checkout .entry-content p.form-row.fast-delivery-checkbox label.checkbox input,
.woocommerce-checkout .entry-content p.form-row#allow_substitutions_field label.checkbox input{
    width: 18px !important;
    min-width: 18px !important;
    height: 18px;
}
.woocommerce-checkout .entry-content p.form-row.fast-delivery-checkbox label.checkbox span.optional,
.woocommerce-checkout .entry-content p.form-row#allow_substitutions_field label.checkbox span.optional {
    display: none;
}
.woocommerce-checkout .entry-content .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
}
p#billing_first_name_field,
p#billing_last_name_field,
p#billing_city_field,
p#billing_state_field,
p#billing_postcode_field,
p#billing_phone_field,
p#shipping_first_name_field,
p#shipping_last_name_field,
p#shipping_city_field,
p#shipping_state_field,
p#shipping_postcode_field,
p#shipping_phone_field{
    width: calc(50% - 12px);
    display: flex;
    flex-direction: column;
    justify-content: end;
}
p#billing_country_field,
p#billing_address_1_field,
p#billing_address_2_field,
p#billing_email_field,
p#shipping_country_field,
p#shipping_address_1_field,
p#shipping_address_2_field,
p#shipping_email_field  {
    width: 100%;
}
.woocommerce-order-received article h3 {
    text-align: center;
    color: var(--Fresh-Green);
    text-transform: capitalize;
}
.woocommerce-order-received article .woocommerce-order p.woocommerce-notice {
    text-align: center;
    font-size: 16px;
    border-bottom: 1px solid var(--Warm-Yellow);
    padding-bottom: 24px;
    margin-bottom: 24px;
    margin-top: 16px;
}
.woocommerce-order-received article .woocommerce.wp-block-group.alignwide {
    margin: 0px;
}
.woocommerce-order-received article ul.order_details {
    padding: 0px;
    box-shadow: 0px 0px 24px #00000020;
    border-radius: 10px;
    border: 1px solid var(--Border-Color);
    margin-bottom: 10px;
    overflow: hidden;
}
.woocommerce-order-received article ul.order_details li {
    font-size: 14px;
    display: flex;
    background: var(--White-Color);
    flex-direction: column;
    padding: 10px 20px;
    border-bottom: 1px solid var(--Border-Color);
    border-radius: 0px;
}
.woocommerce-order-received article ul.order_details li:last-child{
    border: none;
}
.woocommerce-order-received article section.woocommerce-order-details h2,
.woocommerce-order-received article section.woocommerce-customer-details h2{
    font-size: 18px;
    text-transform: uppercase;
    background-color: var(--Fresh-Green);
    padding: 10px 20px;
    color: var(--White-Color);
}
.woocommerce-order-received article section.woocommerce-order-details,
.woocommerce-order-received article section.woocommerce-customer-details{
    background-color: var(--White-Color);
    margin-top: 24px;
    border: 1px solid var(--Fresh-Green);
}
.woocommerce-order-received article section.woocommerce-order-details table,
.woocommerce-order-received article section.woocommerce-customer-details address{
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
}
.woocommerce-order-received article section.woocommerce-order-details table td,
.woocommerce-order-received article section.woocommerce-order-details table th{
    padding: 10px 20px;
    border-top: 1px solid var(--Fresh-Green);
    border-bottom: 1px solid var(--Fresh-Green);
}
.woocommerce-order-received article section.woocommerce-order-details table tfoot tr:last-child td,
.woocommerce-order-received article section.woocommerce-order-details table tfoot tr:last-child th{
    border: none;
}










@media (min-width: 768px) {
    header .inner .logins .logins-container {
        max-width: 720px;
    }
}
@media (max-width: 991px) {
    header .inner .logins {
        position: fixed;
        bottom: 0px;
        width: 100%;
        left: 0px;
        background: #FFFFFF;
        border-top: 1px solid var(--Border-Color);
        padding: 20px 10px 10px;
        background-color: var(--White-Color);
        z-index: 999;
        box-shadow: 0px 0px 24px #00000024;
        border-radius: 20px 20px 0px 0px;
    }
    header .inner .logins .logins-container{
        justify-content: space-between;
    }
    footer {
        padding-bottom: 91px;
    }
    .woocommerce-checkout .entry-content .checkout.woocommerce-checkout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .woocommerce-checkout .entry-content .woocommerce-checkout #customer_details {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    header .inner .logo .menu-toggle {
        display: block;
    }
    .menu-list .inner .toggle-close{
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid var(--Border-Color);
        padding-bottom: 16px;
        margin-bottom: 16px;
        width: 100%;
    }
    .menu-list .inner .toggle-close button{
        border: none;
        background-color: transparent;
        outline: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .menu-list {
        padding: 15px 0px;
        background-color: var(--White-Color);
        position: fixed;
        top: 0px;
        left: 0px;
        transform: translateX(-300px);
        max-width: 300px;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        border-right: 1px solid var(--Border-Color);
        box-shadow: 0px 0px 24px #00000024;
        transition: 0.5s;
    }
    #menu-list.active{
        transform: translateX(0);
    }
    .menu-list .inner .categories-show, .menu-list .inner .categories-show .category-list {
        width: 100%;
        display: none;
    }
    .menu-list .inner .categories-show .categories-list {
        position: static;
        width: 100%;
    }
    .menu-list .container, .menu-list .inner {
        height: 100%;
    }
    .menu-list .inner {
        display: block;
        height: 100%;
    }
    .menu-list .inner ul.menu {
        display: flex;
        align-items: start;
        gap: 0px;
        flex-wrap: nowrap;
        max-height: calc(100% - 57px);
        flex-direction: column;
        width: 100%;
        overflow-y: scroll;
        border: 1px solid var(--Border-Color);
        border-radius: 10px;
        box-shadow: 0px 0px 24px #00000014;
    }
    .menu-list .inner ul.menu li{
        width: 100%;
    }
    .menu-list .inner ul.menu li a{
        border-bottom: 1px solid var(--Border-Color);
        display: block;
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
        transition: 0.3s;
    }
    .menu-list .inner ul.menu li a:hover{
        background-color: var(--Light-Grey);
    }
    .menu-list .inner ul.menu li:last-child a{
        border-bottom: none;
    }
    .container {
        max-width: 100%;
    }
    .near-products .product-box .product-box-main {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }
    .near-products .product-box .product-box-main .box {
        width: calc(50% - 5px);
    }
    .banner-section .image, .hero-banner .inner-content {
        border-radius: 10px;
    }
    header {
        border-bottom: 1px solid var(--Border-Color);
        background: var(--White-Color);
    }
    .topbar {
        background-color: var(--Warm-Yellow);
        border: none;
    }
    .product-details .product .woocommerce-product-gallery, .product-details .product .summary.entry-summary {
        width: calc(100% - 0px);
        position: relative;
    }
    .wc-block-components-form .wc-block-components-checkout-step:after{
        display: none;
    }
}
@media (max-width: 575px) {
    .near-products .product-box .product-box-main .box {
        width: calc(100% - 0px);
    }
    h1, .font-48{
        font-size: 38px;
    }
    h2, .font-32{
        font-size: 26px;
    }
    h3, .font-24{
        font-size: 20px;
    }
    h4, .font-20{
        font-size: 18px;
    }
    header .inner .search-content {
        width: auto;
    }
    header .inner .search-content .dgwt-wcas-search-wrapp {
        min-width: 100%;
        max-width: 100%;
        width: auto;
    }
    header .inner .search-content .dgwt-wcas-enable-mobile-form {
        width: 38px;
        height: 38px;
        background-color: var(--Warm-Yellow);
        position: static;
        border-radius: 100px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    header .inner .search-content .dgwt-wcas-enable-mobile-form::before{
        content: "";
        width: 22px;
        height: 22px;
        display: inline-block;
        background-image: url("https://desigrocery.shop/wp-content/themes/desigrocery/assets/image/search.svg");
        background-repeat: no-repeat;
        background-size: contain;
    }
    header .inner .search-content .dgwt-wcas-search-form {
        display: none;
    }
    .filter-box {
        gap: 16px;
    }
    .filter-box p {
        width: 100%;
    }
    .filter-box form {
        width: 100%;
    }
    .filter-box form select{
        width: 100%;
    }
    ul.products.columns-4 .dg-product-item .product-content .product-actions a::after{
        display: none;
    }
    .main-checkout-page .wc-block-checkout__actions .wc-block-checkout__actions_row {
        flex-direction: column;
    }
    .main-checkout-page .wc-block-checkout__actions a, .main-checkout-page .wc-block-checkout__actions button {
        width: 100% !important;
        justify-content: center;
    }
    .woocommerce-checkout .entry-content .woocommerce-form-login, .woocommerce-checkout .entry-content .woocommerce-billing-fields, .woocommerce-checkout .entry-content .woocommerce-additional-fields, .woocommerce-checkout .entry-content .woocommerce-shipping-fields {
        padding: 10px;
        border-radius: 4px;
    }
    .main-checkout-page div#customer_login .col-1, .main-checkout-page div#customer_login .col-2, .main-checkout-page .entry-content form.lost_reset_password, .main-checkout-page .entry-content .woocommerce {
        padding: 10px;
    }
    .woocommerce-checkout .entry-content h3 {
        font-size: 16px;
    }
    .woocommerce-checkout .entry-content h3 input {
        height: 16px;
        width: 16px;
    }
}

@media (max-width: 425px) {
    ul.products.columns-4 .dg-product-item .product-content .product-actions a::after{
        display: block;
    }
    p#billing_first_name_field, p#billing_last_name_field, p#billing_city_field, p#billing_state_field, p#billing_postcode_field, p#billing_phone_field {
    width: calc(100%);
}
}

.heart .click { display: none; }
.heart.active .click { display: inline; }
.heart.active .unclick { display: none; }

.heart {
    cursor: pointer;
}
