@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --black : #000;
    --white: #fff;
    --brown: #663200;
    --darkgrey: #444444;
    --grey: #D9D9D9;
    --light-grey: #F5F5F5;
    --body-font: "Mulish", sans-serif;
    --heading-font: "Mulish", sans-serif;
}
body, html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    background: var(--white);
    color: var(--darkgrey);
    font-size: 13px;
    line-height: 1.7;
    font-family: var(--body-font);
    font-weight: 500;
}
p{
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    font-family: var(--body-font);
    color: var(--darkgrey);
}
a{
    text-decoration: none !important;
    font-family: var(--body-font);
}
img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sec-space{
    padding: 98px 0;
}
.btn, input[type="submit"]{
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.64px;
    border: 1px solid transparent;
    text-transform: uppercase;
    padding: 0 24px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: "";
    height: 104%;
    width: 26px;
    background: #ffffff32;
    position: absolute;
    top: -2%;
    left: 22%;
    transform: skewX(-32deg);
    transition: 0.3s ease-in-out;
}
.btn::after {
    content: "";
    height: 104%;
    width: 8px;
    background: #ffffff32;
    position: absolute;
    top: -2%;
    left: 11%;
    transform: skewX(-32deg);
    transition: 0.3s ease-in-out;
}
.btn:hover::before{
    left: 64%;
}
.btn:hover::after{
    left: 53%;
}
.btn-primary{
    background-color: var(--white);
    color: var(--brown);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}
.section-heading{
    margin-bottom: 42px;
    max-width: 80%;
}
.section-heading h2{
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
}
.form-control{
    height: 40px;
    font-size: 13px;
    border-radius: 0;
    background: transparent;
    border: 1px solid #ced4da;
    color: var(--brown);
}
.form-control::placeholder{
    color: var(--grey);
    text-transform: uppercase;
    font-size: 11px;
}
textarea {
    width: 100%;
    height: 120px;
    border-radius: 4px;
    border-color: #ced4da;
}


/* Header  */
.myHeader{
    background: var(--white);
}
.search-bar {
    width: 260px;
}
.navbar-brand img{
    height: 40px;
    width: auto;
}
.navbar-brand {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
}
.navbar-collapse{
    flex-grow: unset;
}
.navbar-nav .nav-item .nav-link{
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--body-font);
    color: var(--grey);
    padding: 20px 4px;
    position: relative;
    transition: 0.4s ease-in-out;
}
.navbar-nav .nav-item{
    margin: 0 8px;
    transition: 0.3s ease-in-out;
    position: relative;
}
.navbar-nav .nav-item.active .nav-link, .navbar-nav .nav-item:hover .nav-link{
    color: var(--brown);
}
.nav-text ul li{
    margin-left: 10px;
}
.nav-text ul li .bi{
    color: var(--brown);
    font-size: 18px;
}

/* Banner  */
.banner-img {
    position: relative;
    padding-top: 57%;
}
.banner-img img, .banner-img video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
}
.banner-img::before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000bd, transparent, transparent);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.banner-text{
    max-width:100%;
}
.banner-text h1 {
    font-size: 38px;
    line-height: 1.4;
    color: var(--white);
    font-family: var(--heading-font);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.banner-text h1 strong{
    display: block;
    font-weight: 800;
}
.banner-text h2, .banner-text h3, .banner-text h4, .banner-text h5, .banner-text h6
{
    color: var(--white);
}
.banner-text p{
    font-size: 15px;
    line-height: 1.6;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 20px;
}
.banner-wrapper {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 80%;
    z-index: 1;
}
.banner-slider.owl-carousel .owl-nav button.owl-next, .banner-slider.owl-carousel .owl-nav button.owl-prev{
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 2;
    background:transparent;
    color: var(--white);
    height: 100px;
    width: 100px;
    border: none !important;
    transition: 0.3s ease-in-out;
    z-index: 9;
}
.banner-slider.owl-carousel .owl-nav button.owl-next{
    left: auto;
    right: 0;
}
.banner-slider.owl-carousel .owl-nav button.owl-next:focus, .banner-slider.owl-carousel .owl-nav button.owl-prev:focus{
    outline: none !important;
    border: none !important;
}
.banner-slider.owl-carousel .owl-nav button.owl-next .bi, .banner-slider.owl-carousel .owl-nav button.owl-prev .bi{
    font-size: 60px;
}


/* product  */
.product-left{
    background: var(--brown);
    padding: 40px 20px;
    height: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-left::before {
    content: "";
    width: 100%;
    height: 81%;
    background: url(../images/product-bg.png) no-repeat center;
    background-size: cover;
    position: absolute;
    bottom: -22%;
    right: 0;
    opacity: 0.1;
}
.product-left.section-heading h2, .product-left.section-heading p{
    color: var(--white);
}
.product-box{
    background: var(--white);
    transition: 0.3s ease-in-out;
    border: 1px solid var(--light-grey);
    height: 100%;
    position: relative;
}
.product-img {
    position: relative;
    padding-top: 80%;
    overflow: hidden;
    margin: 12px;
}
.product-img img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    transition: 0.3s ease-in-out;
}
.serv-text{
    background: var(--light-grey);
    padding: 20px 20px 42px;
}
.serv-text h3.product-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    font-family: var(--heading-font);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.serv-text h3.product-title a{
    color: var(--black);
}
.desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/* .product-box:hover .product-img img{
    transform: scale(1.1);
} */
.product-box:hover h3.product-title{
    color: var(--brown);
}
.hovercart-btn{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.product-box:hover .hovercart-btn{
    opacity: 1;
    visibility: visible;
    bottom: 0;
}
.hovercart-btn .btn-primary,  input[type="submit"]{
    width: 100%;
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white);
}
.hovercart-btn .btn-primary:hover,  input[type="submit"]:hover, .hovercart-btn .btn-primary:focus,  input[type="submit"]:focus, 
.hovercart-btn .btn-primary:active,  input[type="submit"]:active{
    background: var(--darkgrey);
    border-color: var(--darkgrey);
    color: var(--white);
}
.pricewrap{
    margin-top: 12px;
}
.pricewrap h4{
    font-size: 16px;
    font-weight: 700;
    color: var(--brown);
}
.pricewrap h4 del{
    color: var(--grey);
}
.rating .bi{
    color: #FFCE1B;
    margin-right: 2px;
}
.product-slider.owl-carousel .owl-nav button.owl-next, .product-slider.owl-carousel .owl-nav button.owl-prev{
    background: var(--light-grey);
    color: var(--brown);
    height: 40px;
    width: 40px;
    position: static;
    margin: 12px 8px 0 0;
    border: 1px solid var(--brown) !important;
    transition: 0.3s ease-in-out;
}
.product-slider.owl-carousel .owl-nav button.owl-next{
    left: auto;
    right: -48px;
}
.product-slider.owl-carousel .owl-nav button:hover, .product-slider.owl-carousel .owl-nav button:focus, .product-slider.owl-carousel .owl-nav button:active{
    background: var(--brown);
    color: var(--white);
    border: none;
    outline: 0;
}
.product-slider::after{
    content: "";
    width: 80%;
    height: 1px;
    background: var(--grey);

    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
}

/* Gallery  */
.gallery-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}
.gallery-img:nth-child(3), .gallery-img:nth-child(4){
    grid-column: span 2;
}
.gallery-img {
    position: relative;
    padding-top: 52%;
    height: 100%;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}
.gallery-img img{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
.gallery-img:hover img{
    transform: scale(1.1);
}
.gallery-img::before, .gallery-img::after{
    position: absolute;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.gallery-img::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #663200c2;
    top: 0;
    left: 0;
    backdrop-filter: blur(2px);
}
.gallery-img::after{
    content: "\F4FB";
    font-family: "Bootstrap-icons";
    color: var(--white);
    font-size: 42px;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gallery-img:hover::before, .gallery-img:hover::after{
    opacity: 1;
    visibility: visible;
}

/* Testimonials  */
.test-box{
    background: var(--light-grey);
    padding: 40px 32px;
    z-index: 1;
}
.test-box .stars .bi{
    color: #FFCE1B;
    margin: 0 2px;
}
.test-box p{
    color: var(--darkgrey);
    font-weight: 500;
}
.test-box img.quote{
    height: 48px;
    width: 48px;
    object-fit: contain;
    margin-bottom: 12px;
}
.test-box h4{
    font-size: 18px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--brown);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.test-box h5{
    font-size: 14px;
    font-weight: 600;
    color: var(--darkgrey);
}
.cust-img{
    height: 84px;
    width: 75px;
    margin-right: 20px;
}
.owl-carousel .owl-dots{
    margin-top: 24px;
    text-align: center;
}
.owl-carousel button.owl-dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: var(--grey);
    margin: 0 4px;
    border: none !important;
}
.owl-carousel button.owl-dot.active{
    background: var(--brown);
    border: none !important;
}
.owl-carousel button.owl-dot:focus{
    border: none !important;
    outline: none !important;
}
.testimonial-slider .owl-item.active.center .text-box{
    background: var(--brown);
}
.testimonial-slider .owl-item.active.center .text-box h4, .testimonial-slider .owl-item.active.center .text-box h5, .testimonial-slider .owl-item.active.center .text-box p{
    color: var(--white);
}


/* Footer  */
.footer-logo img {
    height: 46px;
    width: 100%;
    object-fit: contain;
    object-position: left;
}
.social-list li a {
    color: var(--white);
    height: 36px;
    width: 36px;
    line-height: 28px;
    text-align: center;
    border-radius: 0;
    background: var(--brown);
    font-size: 20px;
    display: block;
}
.social-list li:not(:last-child){
    margin-right: 12px;
}
.social-list li a .bi{
    font-size: 18px;
    color: var(--white);
}


.myFooter{
    background: var(--grey);
    padding-top: 98px;
    overflow: hidden;
}
.myFooter h3{
    font-size: 18px;
    font-weight: 800;
    font-family: var(--heading-font);
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 20px;
}
.myFooter ul li a{
    color: var(--darkgrey) !important;
    font-weight: 700 !important;
    padding: 6px 0 !important;
    font-size: 12px;
    text-transform: uppercase;
}
.myFooter ul li{
    color: var(--darkgrey) !important;
}
.myFooter ul li.active a, .myFooter ul li.active p{
    color: var(--brown) !important;
}
.myFooter .navbar-nav li{
    position: relative;
    padding-left: 28px;
    margin: 0;
}
.myFooter .navbar-nav li:not(:last-child){
    margin-bottom: 9px;
}
.myFooter .navbar-nav li::before{
    content: "\F231";
    font-family:"Bootstrap-icons";
    font-size: 16px;
    color: var(--brown);
    position: absolute;
    top: 0px;
    left: 0;
}
.con-list .con-box {
    position: relative;
    padding-left: 50px;
}
.con-box h5{
    font-size: 12px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2px;
}
.con-box, .con-box a{
    font-size: 13px;
    line-height: 1.4;
    color: var(--white);
    word-break: break-all;
}
.con-box .bi , .copyright li .bi{
    display: block;
    color: var(--white);
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 0;
    background: var(--brown);
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
}
.con-list .con-box:not(:last-child){
    margin-bottom: 12px;
}
.footer-row{
    margin-bottom: 98px;
}
.copyright {
    background: var(--brown);
    padding: 12px 0;
}
.copyright li .bi{
    position: static;
}
.copyright li{
    margin-left: 12px;
}
.myFooter hr{
    background: var(--white);
}
.copyright p, .main-footer p{
    color: var(--light-grey);
    margin-bottom: 0;
}
.copyright a{
    color: var(--white);
    font-weight: 700;
}



/* Inner Pages  */
.inner-banner {
    padding: 98px 0;
}
.inner-banner{
    background-size: cover !important;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.inner-banner::before {
    content: "";
    background: #663200d1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.inner-banner-text h2 {
    color: var(--white);
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-weight: 700;
}

/* About Page  */
.gallery-cms .gallery-row{
    row-gap: 20px;
}
.gallery-cms .gallery-img{
    padding-top: 80%;
}



/* Contact Page  */
.contact-img{
    position: relative;
    padding-top: 60%;
}
.contact-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.contact-details .con-list .con-box{
    background: var(--light-grey);
    padding: 28px 20px 28px 70px ;
    width: 100%;
    height: 100%;
}
.contact-details .con-list .con-box a, .con-list .con-box {
    color: var(--brown);
    font-size: 16px;
    font-weight: 700;
}
.contact-details .con-box .bi{
    top: 28px;
    left: 20px;
}

/* My account  */
.edit-account legend {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    margin: 16px 0 12px;
}
.woocommerce-form-row em{
    color: var(--yellow);
}
.form-row{
    row-gap: 0 !important;
}

/* Cart Page  */
.wc-block-components-product-name {
    color: var(--gray);
    font-size: 13px !important;
    font-weight: 600;
    margin-bottom: 8px !important;
}
.wc-block-components-product-metadata {
    font-size: 12px !important;
}
.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--minus ,
.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--plus{
    background: #ededed !important;
    opacity: 1 !important;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__image>img {
    max-width: 64px;
    width: 64px;
}
.wc-block-components-quantity-selector {
    display: inline-flex !important;
}
button.wc-block-cart-item__remove-link {
    color: red !important;
    margin-left: 20px !important;
}
.wc-block-components-product-badge.wc-block-components-sale-badge {
    display: none;
}
.wc-block-cart__submit-container {
    background: var(--yellow);
}
.wc-block-cart__submit-container a{
    color: var(--white);
}
.wc-block-cart__submit-container:hover{
    background: var(--dark-grey);
}
.is-large.wc-block-cart .wc-block-cart-items th, .is-large.wc-block-cart .wc-block-cart__totals-title {
    font-size: 1.2rem !important;
    text-transform: capitalize !important;
}
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__wrap>*, 
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-quantity-selector,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__wrap>*{
    margin-bottom: 6px !important;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-quantity-selector{
    margin-bottom: 0 !important;
}
.wc-block-cart-items{
    margin-bottom: 0 !important;
}
.is-large.wc-block-cart .wc-block-components-sidebar {
    margin-top: 0;
    background: #e0c5684d;
    padding: 20px;
}

 /* Empty Cart Page  */
 .wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
    height: 3em !important;
    mask-size: 3em !important;
    width: 3em !important;
    margin: 0 auto 1em !important;
}
h4.wp-block-heading.has-text-align-center.with-empty-cart-icon.wc-block-cart__empty-cart__title {
    background: var(--yellow);
    padding: 40px;
    color: var(--white) !important;
    margin-bottom: 80px;
}
.wp-block-woocommerce-empty-cart-block .wc-block-product-new ul li:after,
.wc-block-grid__product-onsale,
.wp-block-separator.is-style-dots:before {
    display: none !important;
}
.inner_con.wp-block-woocommerce-empty-cart-block .wc-block-product-new ul li {
    position: relative;
    margin: 10px 0;
    padding: 25px !important;
    color: #000;
    font-size: 15px;
    line-height: 20px;
}
.theme-twentytwenty .wc-block-grid.has-3-columns .wc-block-grid__product, .wc-block-grid.has-3-columns .wc-block-grid__product {
    flex: 1 0 30.3333333333% !important;
    max-width: 30.333333% !important;
    padding-left: 0;
}
.wc-block-grid.has-3-columns .wc-block-grid__products {
    row-gap: 20px;
    justify-content: center;
}
.wc-block-grid__product.wc-block-grid__product {
    border: 1px solid #70707040;
    border-radius: 20px;
    margin: 0 16px;
}
h2.wp-block-heading.has-text-align-center {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gray) !important;
    font-size: 2rem;
    line-height: 1.4;
    text-transform: uppercase;
}
.wc-block-grid__product .wc-block-grid__product-image:not(.wc-block-components-product-image){
    padding: 20px;
}
.wc-block-grid__product-title {
    font-size: 15px !important;
    color: var(--gray) !important;
    border-top: 1px solid #cfcfcf;
    padding-top: 14px !important;
}
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link{
    background: var(--yellow);
    border-radius: 4px;
    font-size: 14px !important;
}
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:hover,
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:focus,
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:active{
    background: var(--dark-grey);
    color: var(--white);
}
.wc-block-grid__products{
    margin: 0;
}

/* Checkout Page  */
.wc-block-checkout__terms {
    margin: 8px 0 !important;
}
.wc-block-components-checkout-step__heading {
    margin: 20px 0 8px !important;
}
.wc-block-components-checkout-return-to-cart-button , .wc-block-components-address-form__address_2-toggle{
    color: var(--yellow) !important;
}
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained, .wc-block-components-totals-coupon__button.contained{
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--white);
}
.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill+label, 
.wc-block-components-form .wc-block-components-text-input.is-active label, 
.wc-block-components-text-input input:-webkit-autofill+label, 
.wc-block-components-text-input.is-active label,
.wc-block-components-form .wc-block-components-combobox.is-active .wc-block-components-combobox-control label.components-base-control__label{
    transform: translateY(-0.4rem) scale(.875) !important;
    background: #fff;
    padding: 0 8px;
    color: var(--yellow);
}
.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill, 
.wc-block-components-form .wc-block-components-text-input.is-active input[type=email], 
.wc-block-components-form .wc-block-components-text-input.is-active input[type=number], 
.wc-block-components-form .wc-block-components-text-input.is-active input[type=tel], 
.wc-block-components-form .wc-block-components-text-input.is-active input[type=text], 
.wc-block-components-form .wc-block-components-text-input.is-active input[type=url], 
.wc-block-components-text-input input:-webkit-autofill, 
.wc-block-components-text-input.is-active input[type=email], 
.wc-block-components-text-input.is-active input[type=number], 
.wc-block-components-text-input.is-active input[type=tel], 
.wc-block-components-text-input.is-active input[type=text], 
.wc-block-components-text-input.is-active input[type=url] ,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input[aria-expanded=true],
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input, 
.wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
    padding: 1rem 0.5rem 0.8rem !important;
    border: 1px solid #c3c3c3 !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=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=tel], 
.wc-block-components-text-input input[type=text], 
.wc-block-components-text-input input[type=url] {
    padding: 1rem 0.5rem 0.8rem !important;
    border: 1px solid #c3c3c3 !important;
}
.wc-block-components-validation-error>p {
    color: red;
    font-size: 13px;
}
.wc-block-components-form .wc-block-components-text-input.has-error label, .wc-block-components-text-input.has-error label {
    color: #c3c3c3;
}
.wc-block-components-radio-control-accordion-content {
    color: #a0a0a0;
    font-size: 13px;
    line-height: 1.4;
    padding: 0 16px 8px 16px !important;
}
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, 
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    box-shadow: inset 0 0 0 1px var(--yellow) !important;
    background: #e0c56824;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
    background: var(--yellow) !important;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
    border: 1px solid var(--yellow) !important;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:focus {
    outline: 1px solid var(--yellow) !important;
}
.wc-block-components-order-summary .wc-block-components-order-summary__button-text{
    font-size: 1.2em;
    color: var(--dark-grey);
    font-weight: 600 !important;
}
.wp-block-woocommerce-checkout ,
.wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices{
    padding-top: 0 !important;
}
.wc-block-components-order-summary .wc-block-components-product-name {
    margin-bottom: 0!important;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    min-height: 20px !important;
    line-height: 13px !important;
    min-width: 20px !important;
    background: var(--yellow) !important;
    color: #fff !important;
    border: none !important;
    padding: 3px 6px !important;
}
.wc-block-components-totals-coupon{
    position: relative;
}
.wc-block-components-totals-coupon::before {
    content: "";
    width: 40px;
    height: 40px;
    background-size: contain !important;
    background: url(../images/voucher.png) no-repeat center;
    position: absolute;
    left: 35%;
    top: -10px;
    z-index: 99;
}
.wc-block-components-payment-method-label {
    font-size: 14px;
    font-weight: 600;
}
.wc-block-checkout__payment-method .wc-block-components-radio-control__option {
    padding-left: 4.5em;
}

/* Product Details Page  */
span.onsale {
    font-size: 13px;
    letter-spacing: 0.02em;
    background: var(--yellow);
    z-index: 9 !important;
}
.yith_magnifier_zoom_magnifier {
    border: none !important;
    background: #f1f1f1;
}
.entry-summary .product_meta {
    display: none;
}
.comment-form-rating {
    display: flex;
    align-items: center;
}
.comment-form-rating label{
    margin-bottom: 8px;
    margin-right: 20px;
}
.details_page .woocommerce-Reviews #review_form_wrapper .comment-respond .comment-form p {
    margin: 4px;
}
#commentform .form-submit .submit {
    margin-top: 0px;
}
.pro_carousel .product-wrap .product-content{
    padding: 10px;
}

.pro_carousel .product-wrap .product-image {
    height: 240px;
    border-bottom: 1px solid #70707040;
    padding: 20px;
}
/* .product-type-simple .entry-summary,  */
.product-type-simple .woocommerce-tabs.wc-tabs-wrapper, 
.product-type-simple .entry-content {
    margin-bottom: 0 !important;
}

/* Order Received Page  */
.woocommerce-order-details h2, .woocommerce-customer-details h2{
    font-size: 1.2rem;
}
.woocommerce-table__product-name a {
    color: #dcb328;
    font-size: 13px;
}
.woocommerce-table__product-name a:hover{
    color: var(--gray);
}
p.woocommerce-customer-details--phone{
    margin-top: 1rem;
}
p.woocommerce-notice {
    color: #529036;
    text-align: center;
    margin-bottom: 40px;
}
p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received:before {
    content: "\F270";
    display: block;
    font-family: 'Bootstrap-icons';
    color: var(--yellow);
    font-size: 66px;
    margin-bottom: 30px;
}


/* Wholesale Page  */
.whole-reg-wrap {
    background: #e0c56833;
    padding: 30px;
    border-radius: 20px;
}

.probox {
    flex-direction: row-reverse !important;
}
div.asl_m .probox .promagnifier .innericon{
    background-color: var(--brown) !important;
}

/* Wishlist Page  */
.social-buttons{
    display: none;
}