@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    --primary-color: #4B664A;
    --secondary-color: #6D7863;
    --tertiary-color: #FFFFFF;
    --fourth-color: #000000;
    --fifth-color: #a7a7a7;
    --sixth-color: #dbffda;
    --font-family: "Open Sans", sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}
.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

h1, h2, h3, h4, h5, h6, .button, p, span, a, button, ul, li, img, i, input, textarea, select, table, tr, td {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: var(--font-family) !important;
    color: #353535;
}

h1, .h1 {
    font-size: 38px;
    font-weight: 900;
}

h2, .h2 {
    font-size: 32px;
    font-weight: 900;
}

h3, .h3 {
    font-size: 28px;
    font-weight: 700;
}

h4, .h4 {
    font-size: 24px;
    font-weight: 700;
}

h5, .h5 {
    font-size: 20px;
    font-weight: 700;
}

h6, .h6{
    font-size: 16px;
    font-weight: 700;
}

p, .p{
    font-size: 16px;
    font-weight: 400;
}

.font-14 {
    font-size: 14px;
    font-weight: 400;
}
.title {
    font-size: 24px;
    font-weight: 400;
    font-family: "Dancing Script", sans-serif !important;
}
.button,
.woocommerce ul.products li.product .button,
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit,
.woocommerce-Button,
.woocommerce-Button.wc-forward.button,
.button.wc-forward,
.woocommerce div.product form.cart .button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
.woocommerce-MyAccount-content .addresses .woocommerce-Address header a,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-weight: 400;
    margin-top: 0px;
    line-height: 1;
    font-size: 16px;
  }
  .button.white{
    background-color: var(--tertiary-color);
    color: var(--primary-color);
    border: 1px solid var(--tertiary-color);
    transition: all 0.3s ease-in-out;
  }
  .button.white:hover{
    background-color: transparent;
    color: var(--tertiary-color);
    border: 1px solid var(--tertiary-color);
  }
  .button:hover,
  .woocommerce ul.products li.product .button:hover,
  .woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,
  .woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit:hover,
  .woocommerce-Button:hover,
  .woocommerce-Button.wc-forward.button:hover,
  .button.wc-forward:hover,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover{
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
  }

/* header */
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 10px 0;
    background: var(--tertiary-color);
}
header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
header .inner .logo img{
    max-height: 98px;
}
header .inner .search form{
    width: 440px;
    position: relative;
    display: flex;
    align-items: center;
}
header .inner .search form input{
    width: 100%;
    padding: 10px;
    border: 1px solid hsla(0, 0%, 7%, .11);
    border-radius: 5px 0px 0px 5px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    min-height: 48px;
}
header .inner .search form button{
    background-color: var(--tertiary-color);
    min-height: 48px;
    border-radius: 0px 5px 5px 0px;
    border: 1px solid hsla(0, 0%, 7%, .11);
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: none;
}
header .inner .search form button svg{
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}
header .inner nav ul{
    display: flex;
    align-items: center;
    gap: 24px;
}
header .inner .menu{
    display: flex;
    align-items: center;
    gap: 24px;
}
header .inner .menu .cart-btn{
    display: flex;
    align-items: center;
    gap: 24px;
}
header .inner .menu .cart-btn .cart{
    position: relative;
}
header .inner .menu .cart-btn .cart span{
    position: absolute;
    top: -4px;
    right: -5px;
    width: 16px;
    height: 16px;
    font-size: 10px;
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
header .inner .menu .cart-btn svg{
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}
header .inner nav ul li a{
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
}


.hero-banner{
/*     background-color: var(--primary-color); */
	padding: 10px;
}
.hero-banner .inner{
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-banner .inner img{
    border-radius: 20px;
}
.hero-banner .inner .title{
    color: var(--tertiary-color);
}
.hero-banner .inner h1{
    color: var(--tertiary-color);
    margin-bottom: 16px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.hero-banner .inner p{
    color: var(--tertiary-color);
    margin-bottom: 24px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.actual-shrooms, .best-selling, .anatomy-mushroom, .using-business{
    overflow: hidden;
}
.actual-shrooms{
    background-color: var(--sixth-color);
}
.actual-shrooms .swiper-shrooms{
    border: 1px solid var(--fifth-color);
    border-radius: 20px;
    overflow: hidden;
}
.actual-shrooms .inner .title,
.best-selling .top .title{
    color: var(--primary-color);
}
.actual-shrooms .inner p a{
    color: var(--primary-color);
    font-weight: bold;
}
.actual-shrooms .swiper-shrooms .swiper-pagination{
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.actual-shrooms .swiper-shrooms .swiper-pagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: var(--secondary-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.actual-shrooms .swiper-shrooms .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--primary-color);
    width: 20px;
}

.actual-shrooms .content{
	max-height: 150px;
	height: 150px;
	border-radius: 10px;
	overflow: hidden;
}
.actual-shrooms .content img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.best-selling .content{
    /* border-radius: 20px; */
    padding: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid hsla(0, 0%, 7%, .11);
}
.best-selling .content .inner{
    padding-top: 10px;
    /* background-color: var(--fifth-color); */
    width: 100%;
    /* border-top: 1px solid var(--tertiary-color); */
}
.best-selling .content .h6,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    padding: 0px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 0px;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.best-selling .content .price{
    margin-bottom: 10px;
}
.best-selling .content .price span,
.woocommerce ul.products li.product .price{
    color: var(--fourth-color);
    font-weight: 400;
    font-size: 16px;
}
.best-selling .content .image{
    overflow: hidden;
}
.best-selling .content .image img{
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.best-selling .content:hover .image img{
    transform: scale(1.04);
}

.anatomy-mushroom{
    background-color: var(--sixth-color);
}
.anatomy-mushroom .content .p b{
    color: var(--primary-color);
}
.anatomy-mushroom .image{
    border-radius: 20px;
    overflow: hidden;
}
.using-business .inner .image .image-inner{
    overflow: hidden;
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    width: 140px;
    height: 140px;
}
.using-business .inner .image img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}




footer{
    background-color: var(--secondary-color);
}
footer .content .logo{
    margin-bottom: 16px;
    text-align: center;
}
footer .content .logo img{
    max-height: 98px;
}
footer .content p{
    color: var(--tertiary-color);
    text-align: justify;
}
footer .content .follow-icon a {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: #FFFFFF;
    transition: all 0.3s ease-in-out;
}
footer .content .follow-icon a svg {
    stroke: var(--primary-color);
    transition: all 0.3s ease-in-out;
}
footer .content .follow-icon a:hover{
    transform: scale(1.1);
}
footer .content .follow-icon a:hover svg {
    stroke: var(--secondary-color);
}
footer .content .h6{
    color: var(--tertiary-color);
}
footer .content ul li {
    margin-bottom: 8px;
}
footer .content ul li:last-child {
    margin-bottom: 0px;
}
footer .content ul li a{
    color: var(--tertiary-color);
}
footer .content .card-bottom{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
footer .content .card-bottom .icon-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    padding: 4px 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
}
footer .content .card-bottom .icon-card svg {
    stroke: var(--secondary-color);
}
footer .copyright{
    text-align: center;
    border-top: 1px solid var(--tertiary-color);
}
footer .copyright p{
    color: var(--tertiary-color);
}
.overlap{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}
.overlap.active{
    display: block;
}
@media (max-width: 1399px) {
    header .inner #mobile-menu{
        position: fixed;
        top: 0;
        width: 280px;
        right: -280px;
        bottom: 0;
        background-color: var(--primary-color);
        z-index: 99999;
        padding: 20px;
        height: 100%;
        transition: all 0.3s ease-in-out;
    }
    header .inner #mobile-menu.active{
        right: 0;
    }
    header .inner #mobile-menu ul{
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 10px;
        height: 100%;
        padding-bottom: 40px;
        overflow-y: scroll;
    }
    header .inner #mobile-menu .close-menu{
        text-align: end;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--tertiary-color);
    }
    header .inner #mobile-menu .close-menu svg{
        stroke: var(--tertiary-color);  
    }
    header .inner nav ul li a{
        color: var(--tertiary-color);
    }
    .xoo-wsc-sc-bki{
        color: var(--tertiary-color);
    }
    .xoo-wsc-sc-count {
        background-color: var(--tertiary-color);
        color: var(--primary-color);
    }
}
@media (max-width: 991px) {
    header .inner{
        flex-wrap: wrap;
        gap: 10px;
    }
    header .inner .logo{
        order: 0;
    }
    header .inner .search{
        order: 2;
        width: 100%;
    }
    header .inner .search form{
        width: 100%;
    }
    header .inner .menu{
        order: 1;
    }
	.py-60 {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}
@media (max-width: 575px) {
    .hero-banner .inner h1 br {
        display: none;
    }
	.hero-banner .inner{
		border-radius: 10px;
	}
	.hero-banner .inner img{
		border-radius: 10px;
	}
    .actual-shrooms .swiper-shrooms .swiper-pagination{
        display: none;
    }
    .hero-banner {
        padding: 12px;
    }
    h1, .h1 {
        font-size: 28px;
        font-weight: 900;
    }
    
    h2, .h2 {
        font-size: 22px;
        font-weight: 900;
    }
    
    h3, .h3 {
        font-size: 20px;
        font-weight: 700;
    }
    
    h4, .h4 {
        font-size: 18px;
        font-weight: 700;
    }
    
    h5, .h5 {
        font-size: 16px;
        font-weight: 700;
    }
    
    h6, .h6{
        font-size: 14px;
        font-weight: 700;
    }
    
    p, .p{
        font-size: 14px;
        font-weight: 400;
    }
    
    .font-14 {
        font-size: 14px;
        font-weight: 400;
    }
	.button, .woocommerce ul.products li.product .button, .woocommerce .woocommerce-form-login .woocommerce-form-login__submit, .woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit, .woocommerce-Button, .woocommerce-Button.wc-forward.button, .button.wc-forward, .woocommerce div.product form.cart .button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, .woocommerce-MyAccount-content .addresses .woocommerce-Address header a, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
		padding: 10px 14px;
		font-size: 12px;
	}
	.best-selling .content .price span, .woocommerce ul.products li.product .price {
		font-size: 14px;
	}
}
/* .woocommerce ul.products li.product .button,
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit,
.woocommerce-Button,
.woocommerce-Button.wc-forward.button,
.button.wc-forward {
    background: #6d7863;
    color: #fff;
} */
.products li {
    border: 1px solid hsla(0, 0%, 7%, .11);
    padding: 10px !important;
}
.shop_categories{
    padding: 40px 0px;
}
.woocommerce-info {
    border-top-color: #6d7863;
}
.woocommerce .quantity .qty {
    height: 36px;
}
.product_details_items {
    padding-top: 40px;
    /* border-top: 1px solid hsla(0, 0%, 7%, .11); */
}
section.related.products h2 {
    padding-bottom: 20px;
}
section.related.products {
    border-top: 1px solid hsla(0, 0%, 7%, .11);
    padding-top: 10px;
}
header {
    border-bottom:1px solid hsla(0, 0%, 7%, .11);
}
.woocommerce-Input,
.woocommerce form.checkout_coupon, 
.woocommerce form.login, .woocommerce form.register{
    border:1px solid hsla(0, 0%, 7%, .11) !important;
}
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
    background: var(--primary-color);
    color: var(--tertiary-color);
    border-radius: 5px;
    border:none !important;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus{
    box-shadow: none !important;
    outline: none !important;
}

body .woocommerce-MyAccount-navigation-link {
    list-style: none;
    border: 1px solid hsla(0, 0%, 7%, .11);
    border-top: none;
    border-bottom-width: 0;
    transition: all 0.3s ease-in-out;
}
body .woocommerce-MyAccount-navigation-link:first-child{
    border-top: 1px solid hsla(0, 0%, 7%, .11);
}
body .woocommerce-MyAccount-navigation-link.is-active,
body .woocommerce-MyAccount-navigation-link:hover{
    background-color: var(--primary-color);
}
body .woocommerce-MyAccount-navigation-link a {
    display: block;
    padding: .5em 1em;
    transition: all 0.3s ease-in-out;
}
body .woocommerce-MyAccount-navigation-link.is-active a,
body .woocommerce-MyAccount-navigation-link:hover a {
    color: var(--tertiary-color);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 50px;
}

body .woocommerce-MyAccount-navigation-link a {
    border-bottom: 1px solid hsla(0, 0%, 7%, .11);
}
.woocommerce .woocommerce-ordering select {
    vertical-align: top;
    border: none !important;
    border-bottom: 1px solid hsla(0, 0%, 7%, .11) !important;
    padding: 5px 0px;
    cursor: pointer;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select{
    outline: none;
}
.pswp--open {
    z-index: 9999;
}
.product_details_items .summary .product_title {
    margin-bottom: 10px !important;
    font-size: 24px !important;
}
.product_details_items .summary .price {
    font-size: 18px !important;
}
.product_details_items .summary form.cart{
    display: inline-flex;
    align-items: center;
    gap: 0px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    overflow: hidden;
}
.product_details_items .summary form.cart input{
    border: none !important;
    outline: none;
    appearance: none;
    background-color: transparent;
    height: 42px;
}
.product_details_items .summary form.cart button {
    box-shadow: -4px 0px 10px #00000038;
}
.woocommerce div.product form.cart div.quantity{
    margin: 0px;
}
.product_details_items .summary form.cart input::-webkit-outer-spin-button,
.product_details_items .summary form.cart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product_details_items .summary form.cart input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.product_details_items .summary .product_meta .posted_in{
    font-size: 14px;
    font-weight: 500;
}
.product_details_items .summary .product_meta .posted_in a{
    font-weight: 400;
}


.testimonials .inner .testimonials-slider{
    padding-bottom: 40px;
}
.testimonials .inner .testimonials-slider .content{
    border: 1px solid var(--primary-color);
    padding: 5px;
    border-radius: 4px;
    overflow: hidden;
}
.testimonials .inner .testimonials-slider .content .profile{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: var(--primary-color);
    border-radius: 4px;
}
.testimonials .inner .testimonials-slider .content .profile .image{
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
    background-color: var(--tertiary-color);
}
.testimonials .inner .testimonials-slider .content .profile .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonials .inner .testimonials-slider .content .profile .name{
    font-size: 16px;
    font-weight: 500;
    color: var(--tertiary-color);
}
.testimonials .inner .testimonials-slider .content .profile .villa{
    font-size: 14px;
    font-weight: 400;
    color: var(--tertiary-color);
}
.testimonials .inner .testimonials-slider .content .discription{
    margin: 10px;
    font-size: 14px;
    font-weight: 400;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 63px;
}
.testimonials .inner .testimonials-slider .content .star{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 20px 10px 10px 10px;
}
.testimonials .inner .testimonials-slider .content .star svg{
    fill: #ff9900;
}
.swiper-pagination-bullet-active{
    background-color: var(--primary-color);
}
section.related.products h2,
.woocommerce-tabs .woocommerce-Tabs-panel--description h2 {
    padding-bottom: 20px;
    font-size: 24px;
    text-transform: capitalize;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
    padding: 0px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: .5em 1rem;
    font-size: 14px;
    font-weight: 400;
    color: var(--fourth-color);
}
input,
.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:focus{
    outline: none !important;
}
.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],
.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-checkout-step__container textarea,
input, select, textarea,
.select2-container .select2-dropdown, .select2-container .select2-selection{
    border: 1px solid hsla(0, 0%, 7%, .11) !important;
    outline: none;
}
.wc-block-components-form .wc-block-components-text-input.has-error input, .wc-block-components-form .wc-block-components-text-input.has-error input:active, .wc-block-components-form .wc-block-components-text-input.has-error input:focus, .wc-block-components-form .wc-block-components-text-input.has-error input:hover, .wc-block-components-text-input.has-error input, .wc-block-components-text-input.has-error input:active, .wc-block-components-text-input.has-error input:focus, .wc-block-components-text-input.has-error input:hover {
    border-color: #cc1818 !important;
}
.woocommerce-info::before{
    color: var(--primary-color);
}

.woocommerce-MyAccount-content .addresses{
    margin-top: 20px;
}
.woocommerce-MyAccount-content .addresses .woocommerce-Address{
    border: 1px dashed hsla(0, 0%, 7%, .11);
    padding: 10px;
}
.woocommerce-MyAccount-content .addresses .woocommerce-Address header{
    padding: 0px;
    margin-bottom: 10px;
}
.woocommerce-MyAccount-content .addresses .woocommerce-Address header h2{
    font-size: 16px;
}

.woocommerce-MyAccount-content .addresses .woocommerce-Address header a{
    float: left !important;
    margin: 10px 0px;
}
.woocommerce-MyAccount-content .addresses .woocommerce-Address address{
    margin-bottom: 0px;
}

.woocommerce-account .woocommerce-MyAccount-content{
    padding: 10px;
    border: 1px solid hsla(0, 0%, 7%, .11);
}


.woocommerce span.onsale {
    min-height: 3.236em;
    min-width: 3.236em;
    padding: 0px !important;
    font-weight: 300 !important;
    position: absolute;
    text-align: center;
    line-height: 3.236;
    top: 10px !important;
    left: 10px !important;
    margin: 0;
    border-radius: 100%;
    background-color: #4b664a !important;
    color: #fff;
    font-size: .857em;
    z-index: 9;
}
.woocommerce div.product {
    display: flex;
    justify-content: space-between;
    margin: 40px 0px;
	flex-wrap: wrap;
}
.woocommerce div.product div.images.woocommerce-product-gallery{
	margin-bottom: 0px;
}
.woocommerce div.product div.images.woocommerce-product-gallery ol {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.woocommerce div.product div.images.woocommerce-product-gallery ol li{
	border-radius: 10px;
	overflow: hidden;
}
.prduct_details_items .woocommerce div.product .product_title {
    margin-bottom: 10px !important;
}
@media (max-width: 575px){
	.prduct_details_items .woocommerce div.product .product_title{
		font-size: 22px !important;
	}
}
.prduct_details_items .woocommerce div.product  .price {
    display: flex;
    align-items: center;
    gap: 10px;
	font-size: 18px !important;
}
.prduct_details_items .woocommerce div.product .price ins {
    text-decoration: none;
}
.prduct_details_items .woocommerce div.product .cart {
    display: inline-flex;
    align-items: center;
	border: 1px solid #4b664a;
    border-radius: 40px;
    overflow: hidden;
	margin-top: 20px;
}
.prduct_details_items .woocommerce div.product .cart .woocommerce-variation-add-to-cart{
	display: inline-flex;
    align-items: center;
    padding: 0px;
    border: 1px solid #4b664a;
    border-radius: 40px;
    overflow: hidden;
}
.prduct_details_items .woocommerce div.product .qty{
	border: none !important;
	text-align: center;
}
.woocommerce div.product form.cart .button{
	height: 36px;
}

/* .prduct_details_items .woocommerce div.product .qty::-webkit-outer-spin-button,
.prduct_details_items .woocommerce div.product .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prduct_details_items .woocommerce div.product .qty[type=number] {
  -moz-appearance: textfield;
} */
.prduct_details_items .woocommerce div.product .product_meta{
	display: flex;
	flex-direction: column;
}

.prduct_details_items .woocommerce div.product .product_meta a{
	color: #4b664a;
}
.shop_categories .main_content h2,
.shop_categories .main_content h3 {
    font-size: 22px;
    margin-bottom: 5px;
}
.shop_categories .main_content p {
    margin-bottom: 16px;
}
.shop_categories .main_content table{
	width: 100%;
}
.shop_categories .main_content img{
	height: 50px;
	width: 50px;
	object-fit: contain;
}
.shop_categories form.wpcf7-form{
	max-width: 500px;
	width: 100%;
	margin: auto;
	border: 1px solid #D9D9D9;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 40px #00000010;
}
.shop_categories form.wpcf7-form label{
	display: block;
}
.shop_categories form.wpcf7-form label input,
.shop_categories form.wpcf7-form label textarea{
	width: 100%;
	padding: 10px 16px;
	border-radius: 4px;
	outline: none;
}
.shop_categories form.wpcf7-form .wpcf7-submit{
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-weight: 400;
    margin-top: 0px;
    line-height: 1;
    font-size: 16px;
}
.banner-in-section img {
    max-height: 480px;
    object-fit: cover;
}
.woocommerce-tabs.wc-tabs-wrapper {
    margin-top: 60px;
    width: 100%;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0px;
	display: flex;
	align-items: center;
	background-color: #f1f1f1;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs::before{
	display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
	border-radius: 0px;
	margin: 0px;
	border: 1px solid #4b664a;
    background-color: #f1f1f1;
    color: #4b664a;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #4b664a;
    color: #ffffff;
    z-index: 2;
    border-color: #4b664a;
}
.woocommerce ul.products li.product a.woocommerce-loop-product__link{
	position: relative;
}
.woocommerce ul.products li.product .onsale {
    left: 0px;
    top: 0px;
    right: auto;
    margin: 0px;
}
.hero-banner .swiper-button-next,
	.hero-banner .swiper-button-prev {
		height: 40px;
		width: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #FFFFFF;
		border-radius: 20px;
		transition: 0.5s;
	}
@media (min-width: 991px){
	.hero-banner .swiper-button-next,
	.hero-banner .swiper-button-prev {
		transform: scale(2);
		opacity: 0;
		visibility: hidden;
	}
}
.hero-banner:hover .swiper-button-next,
.hero-banner:hover .swiper-button-prev{
	transform: scale(1);
	opacity: 1;
	visibility: visible;
	
}
.hero-banner .swiper-button-next:after,
.hero-banner .swiper-button-prev:after{
	font-size: 12px;
	color: #4b664a;
}
.woocommerce ul.order_details {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled]:hover{
	background: #4b664a;
}


.prduct_details_items .woocommerce div.product .cart .variations tr{
	display: flex;
    align-items: center;
    gap: 20px;
}
.prduct_details_items .woocommerce div.product .cart .variations tr select{
	padding: 2px 10px;
    min-width: 190px;
    border: 1px solid #4b664a !important;
    border-radius: 4px;
}
@media (max-width: 575px){
	.best-selling .content .image img{
		height: 150px;
	}
}
.whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
}
.whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tertiary-color);
    color: var(--primary-color);
    border-radius: 50px;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--primary-color);
}
.videos{
	overflow-x: hidden;
}
