@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --green: #99A10C;
    --orange:#FF630C;
    --white: #ffffff;
    --black: #000000;
    --off-white:#FDF8F5;
    --darkgreen : #333d18;
    --banner-font:"Bebas Neue", sans-serif;
    --section-font:"Moon Dance", cursive;
    --heading-font:"Poppins", sans-serif;
    --body-font:"Montserrat", sans-serif;
}

html,
body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    font-family: var(--body-font);
    background: var(--white);
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
}
p{
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a{
    text-decoration: none !important;
}
li{
    list-style: none;
}
ul{
    margin-bottom: 0;
}
.space{
    padding: 100px 0;
}


/* ===========================
   BUTTONS
=========================== */
.btn{
    height: 40px;
    min-width: 100px;
    line-height: 40px;
    padding: 0 24px;
    font-size: 13px;
    display: inline-block;
    text-align: center;
    border-radius: 6px;
    font-family: var(--heading-font);
    font-weight: 500;
    transition: .3s;
}
.btn-orange{
    background: var(--orange);
    color: var(--white);
}
.btn-orange:hover{
    color: var(--white);
    opacity: .9;
}
.btn-green{
    background: var(--green);
    color: var(--white);
}
.btn-green:hover{
    color: var(--white);
    opacity: .9;
}
.btn-outline{
    border: 1px solid var(--green);
    color: var(--green);
    background: transparent;
}
.btn-outline:hover{
    background: var(--green);
    color: var(--white);
}

.form-group{
    margin-bottom: 12px;
}
.form-control, .es-form-field-container .gjs-cell input{
    height: 36px !important;
    font-size: 13px;
    border-radius: 4px !important;
    background: #F5F5F5;
    border: 1px solid #6B6B6B40 !important;
    color: var(--darkgrey) !important;
    font-weight: 500;
}
.form-control::placeholder{
    color: var(--darkgrey);
    text-transform: uppercase;
    font-size: 11px;
}
textarea {
    width: 100%;
    height: 80px;
    border-radius: 4px;
    background: #F5F5F5;
    border-color: #6B6B6B40;
    padding: 12px;
}
.form-control:focus, textarea:focus{
    border-color: var(--orange) !important;
    box-shadow: none;
    border-radius: 0;
    outline: none;
}
.contact-form label{
    font-size: 13px;
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 4px;
}

/* ===========================
   NAVBAR
=========================== */
.myHeader{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;backdrop-filter: blur(4px);
}
.navbar{
    padding: 12px 0;
}
.navbar-brand{
    width: 120px;
    height: auto;
    padding: 0;
    margin-right: 0;
}
.navbar-brand img{
    width: 100%;
    height: auto;
}
.navbar-nav .nav-item{
    margin: 0 18px;
}
.navbar-nav .nav-link{
    color: var(--white)!important;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--heading-font);
    transition: .3s;
    padding: 0 !important;
}
.navbar-nav .nav-link:hover{
    color: var(--orange)!important;
}
.header-btn{
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box{
    background: var(--off-white);
    padding: 12px 30px;
    position: relative;
}
.search-box .container{
    position: relative;
}
.search-box .form-control:focus{
    border: 1px solid var(--white);
}
.search-box-wrap{
    position: absolute;
    top: 130px;
    z-index: 99;
    transform: translateY(-100px);
    height: 100%;
    width: 100%;
    opacity: 0;
    left: 0;
    visibility: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
}
.search-overlay{
    position: absolute;
    height: 100%;
    background: rgba(0,0,0,0.4);
    width: 100%;
}
.search-box-wrap.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
}
.search-icon.active img{
    opacity: 0;
    visibility: hidden;
}
.search-icon.active:before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '\F623';
    color: var(--green);
    font-family: bootstrap-icons !important;
    font-size: 16px;
}
.active-search{
    background: var(--green);
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    line-height: 40px;
    text-align: center;
    right: 15px;
    border: 0px;
}
.active-search img{
    width: 16px;
    height: auto;
    filter: brightness(0) invert(1);
}
.promagnifier .innericon {
    position: absolute;
    right: 0;
    background: var(--green) !important;
    color: var(--white);
    width: 50px !important;
    top: 0;
}
.search-box #ajaxsearchlite1 .probox .proinput input, .search-box div.asl_w .probox .proinput input{
    color: #000 !important;
}
#ajaxsearchlite1 .probox .proinput input::placeholder{
    color: var(--green) !important;
}
#ajaxsearchlite1 .probox, div.asl_w .probox {
    background: white !important;
    border: 1px solid var(--green) !important;
}
div.asl_r.vertical {
    padding: 0 !important;
    background: transparent !important;
}
div.asl_m .probox .proclose svg {
    left: 0% !important;
}
.cart a{
    /* font-size: 0; */
    position: relative;
}
.product-name a {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
}
/* .cart a::before{
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 48%;
    left: 0;
    background: url(../images/cart.svg);
    background-size: contain;
} */
a.user-icon.logged-user {
    background: var(--green);
    height: 28px;
    line-height: 28px;
    width: 28px;
    text-align: center;
    border-radius: 50%;
}
a.user-icon.logged-user img{
    filter: brightness(0) invert(1);
}
.myHeader .wishlist_products_counter_text, .myHeader .wishlist_products_counter_number{
    display: none;
}
a.wishlist_products_counter{
    color: var(--white);
}
a.wishlist_products_counter.top_wishlist-heart:before{
    font-size: 24px !important;
    margin-right: 0;
}
.cart-icon strong{
    position:absolute;
    top:-8px;
    right:-10px;
    width:18px;
    height:18px;
    background:var(--green);
    color:#fff;
    border-radius:50%;
    font-size:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.nav-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav-icons img {
    height: 18px;
    width: 18px;
    object-fit: contain;
}
.custom-navbar .wishlist_products_counter_text, .custom-navbar .wishlist_products_counter_number {
    display: none;
}
.wishlist-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
    z-index: 2;
}
.tinvwl_add_to_wishlist-text {
    display: none !important;
}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before{
    color: var(--green);
    margin-right: 0;
}
.es-form-field-container .gjs-cell [type="email"]{
    border-color: var(--white) !important;
    color: var(--white);
    text-transform: lowercase !important;
    width: 100%;
}
.es-form-field-container .gjs-cell [type="email"]::placeholder{
    color: #ffffffc4;
    text-transform: lowercase !important;
}

/* ===========================
   HERO CONTENT
=========================== */
.banner-img{
    padding-top: 52%;
}
.banner-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.banner-img::before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000, #00000020);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.hero-content-wrapper{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}
.hero-content{
    padding-top: 100px;
}
.banner-text{
    width: 48%;
}
.banner-text h6{
    display: inline-block;
    font-family: var(--section-font);
    color: var(--white);
    font-size: 52px;
    line-height: 1;
    margin-bottom: 20px;
}
.banner-text h1{
    font-family: var(--banner-font);
    color: var(--white);
    font-weight: 500;
    font-size: 124px;
    line-height: .85;
    margin-bottom: 10px;
}
.banner-text h1 strong{
    color: var(--orange);
    font-weight: 500;
}
.banner-text h1 em{
    font-style: normal;
    color: var(--green);
}
.made-for-you{
    width: 420px;
    height: 95px;
    background: var(--orange);
    border-radius: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--section-font);
    color: var(--white);
    font-size: 60px;
    line-height: 1;
}

/* ===========================
   PAPER TORN
=========================== */

.paper-torn{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -2px;
    z-index: 20;
}
.paper-torn img{
    width: 100%;
    display: block;
}
/* ================= OUR STORY START ================= */
.about-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.about-img{
    position: relative;
    padding-top: 80%;
}
.about-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.about-grid .about-img:first-child{
    grid-row: span 2;
}
.about-text h6, .section-title h6{
    display: inline-block;
    font-family: var(--section-font);
    font-size: 28px;
    color: #666600;
    line-height: 1;
    margin-bottom: 20px;
}
.about-text h2, .section-title h2{
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
}
.about-text h2 strong, .section-title h2 strong{
    color: var(--orange);
    font-weight: 700;
}
.story-line{
    width: 165px;
    height: 2px;
    background: var(--green);
    margin-bottom: 30px;
}
.section-title{
    max-width: 60%;
    margin-bottom: 40px;
}

/* ================= OUR STORY END ================= */


/* ================= OUR MENU START ================= */

.title-line{
    width: 150px;
    height: 2px;
    background: var(--green);
    margin: auto;
}
.menu-card{
    background: #EDEDED;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.menu-img{
    height: 260px;
    overflow: hidden;
}
.menu-img img{
    transition: 0.3s ease-in-out;
}
.menu-content{
    padding: 35px 25px 30px;
}
.menu-content h3 a{
    color: var(--black);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}
.menu-content a{
    color: var(--orange);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--heading-font);
}
.menu-icon{
    width: 52px;
    height: 52px;
    background: var(--orange);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 235px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-icon i{
    color: var(--white);
    font-size: 20px;
}
.menu-card:hover .menu-img img{
    transform: scale(1.1);
}

/* ================= OUR MENU END ================= */

/* ================= OUR VALUES START ================= */

.our-values{
    background: var(--darkgreen);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}
.our-values .paper-torn-top img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(616%) hue-rotate(172deg) brightness(99%) contrast(98%);
}
.paper-torn-top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
}
.paper-torn-top img{
    width: 100%;
    display: block;
}
.our-values .section-title h2{
    color: var(--white);
}
.our-values .title-line{
    background: var(--white);
}

.value-card{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    height: 100%;
}
.value-icon{
    width: 100px;
    height: 100px;
    padding: 20px;
    border: 1px dashed rgba(255,255,255,0.6);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 30px;
}
.value-icon img{
    filter: brightness(0) invert(1);
    opacity: 0.4;
}
.value-card h3{
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.value-card p{
    color: rgba(255,255,255,0.8);
}
.values-row{
    margin: 0 -6px;
}
.values-row [class*="col-"]{
    padding: 0 6px;
}
/* ================= OUR VALUES END ================= */

/* ================= OUR SPECIAL MENU START ================= */
.our-special-menu{
    background: #F3E5C4;
}
.special-menu-card{
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}
.special-menu-img{
    height: 260px;
    position: relative;
}
.special-menu-category{
    position: absolute;
}
.menu-category{
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255,255,255,0.8);
    color: var(--black);
    padding: 8px 15px;
    border-radius: 30px;
    max-width: 68%;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}
.menu-wishlist{
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 18px;
    right: 18px;
}
.menu-wishlist i{
    color: var(--orange);
    font-size: 18px;
}
.special-menu-content{
    padding: 25px 16px 16px;
}
.special-menu-content h3, .catering-content .cat-title{
    font-size: 18px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--black);
    margin-bottom: 10px;
}
.special-menu-content p, .catering-content p{
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}
.menu-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-bottom h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}
.menu-bottom .btn-green{
    min-width: 130px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
}

/* ================= OUR SPECIAL MENU END ================= */

/* ================= SPECIAL MENU SHOWCASE START ================= */
.showcase-gallery{
    display: flex;
    align-items: center;
    gap: 25px;
}
.showcase-img{
    position: relative;
    border: 2px solid rgba(68, 114, 83, .7);
    padding: 10px;
}
.showcase-img img{
    display: block;
}
.showcase-img-left{
    width: 300px;
    height: 420px;
    margin-top: -50px;
}
.showcase-img-right{
    width: 300px;
    height: 420px;
    margin-top: 50px;
}
/* ================= SPECIAL MENU SHOWCASE END ================= */

/* ================= CATERING OPTIONS START ================= */

.catering-options{
    background: var(--off-white);
}
.catering-card{
    background: var(--white);
    border: 1px solid rgba(153,161,12,.6);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: .3s;
}
.catering-card:hover{
    transform: translateY(-5px);
}
.catering-img{
    height: 280px;
}
.catering-content{
    padding: 24px 16px;
}

/* ================= CATERING OPTIONS END ================= */

/* ================= WHY CHOOSE US START ================= */
.section-title-left .title-line{
    width: 170px;
    height: 2px;
    background: var(--green);
}
.why-feature-wrapper{
    margin-top: 60px;
}
.why-feature{
    display: flex;
    gap: 20px;
}
.feature-icon{
    min-width: 60px;
}
.feature-icon img {
    font-size: 52px;
    color: var(--green);
    object-fit: contain;
    object-position: top;
}

.feature-content h3{
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    color: #70811A;
    line-height: 1.5;
    margin-bottom: 10px;
}
.why-image{
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
}
.why-feature-wrapper .row{
    row-gap: 24px;
}
.why-feature-wrapper .row [class*="col-"]:nth-child(1) .why-feature, .why-feature-wrapper .row [class*="col-"]:nth-child(3) .why-feature{
    border-right: 1px solid #c7c7c7;
}
.why-feature-wrapper .row [class*="col-"]:nth-child(3) .why-feature, .why-feature-wrapper .row [class*="col-"]:nth-child(4) .why-feature{
    border-top: 1px solid #c7c7c7;
    padding-top: 24px;
}
.why-feature-wrapper .row [class*="col-"]:nth-child(1), .why-feature-wrapper .row [class*="col-"]:nth-child(3){
    transform: translateY(-24px);
}

/* ================= WHY CHOOSE US END ================= */

/* ================= FOUNDER MESSAGE START ================= */

.founder-section{
    background-size: cover !important;
    background-attachment: fixed !important;
    width: 100%;
    height: 100%;
}
.founder-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #00000064;
}
.founder-section .about-text h2{
    color: var(--white);
}
.founder-section .about-text p{
    color: var(--white);
}

.founder-divider{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.25);
    margin: 35px 0;
}

.call-box{
    width: 80%;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 60px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}
.call-icon{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
}
.call-icon i{
    color: var(--white);
    font-size: 22px;
}

.call-content span{
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.call-content h4{
    margin: 0;
    color: var(--orange);
    font-size: 22px;
    font-weight: 700;
    font-family: var(--heading-font);
}

/* Founder Card */

.founder-card{
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    border-radius: 35px;
    padding: 40px 48px;
    text-align: center;
}

.founder-img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
}

.founder-card h3{
    color: var(--white);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: var(--heading-font);
}

.founder-card p{
    color: var(--white);
    font-size: 14px;
    line-height: 1.8;
}

.quote-icon{
    margin-top: 45px;
}

.quote-icon i{
    color: var(--white);
    font-size: 90px;
}

/* ================= FOUNDER MESSAGE END ================= */

/* ================= TESTIMONIAL START ================= */

.testimonial-newsletter, .single-ch, .archive-ch{
    background: #F6F0E7;
    padding-bottom: 120px;
}

.testimonial-card{
    border: 1px solid var(--orange);
    border-radius: 15px;
    padding: 35px;
    position: relative;
    height: 100%;
    background: transparent;
}

.testimonial-heart{
    width: 62px;
    height: 46px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -12px;
    top: 18px;
}
.testimonial-heart i{
    color: var(--white);
    font-size: 20px;
}
.testimonial-rating{
    margin-bottom: 20px;
}

.testimonial-rating i{
    color: var(--orange);
    font-size: 18px;
    margin-right: 5px;
}

.testimonial-card p{
    font-size: 14px;
    line-height: 1.7;
    color: #222;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-card h4{
    color: var(--green);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.quote-mark{
    position: absolute;
    right: 20px;
    bottom: -40px;
    font-size: 150px;
    font-family: Georgia, serif;
    color: rgba(255,99,12,.08);
    line-height: 1;
}

/* ================= NEWSLETTER ================= */
.newsletter-offer{
    position: absolute;
    top: -60px;
    width: 100%;
}
.newsletter-wrapper{
    background: #6F8911;
    border-radius: 15px;
    padding: 40px 40px;
}
.newsletter-wrapper h2, .newsletter-wrapper p{
    color: var(--white);
}
.newsletter-wrapper h2{
    font-size: 32px;
    margin-bottom: 12px;
}
.newsletter-content .btn{
    flex-shrink: 0;
}
.newsletter-form{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.newsletter-form input{
    width: 100%;
    height: 42px;
    border: 2px solid rgba(255,255,255,.8);
    background: transparent;
    border-radius: 50px;
    padding: 0 20px;
    color: var(--white);
}
.newsletter-form input::placeholder{
    color: rgba(255,255,255,.9);
}
.newsletter-form input:focus{
    outline: none;
}

/* ================= TESTIMONIAL END ================= */

/* ================= CONTACT FORM START ================= */

.contact-form-section{
    padding: 120px 0;
    background: url("img/form-img.png") no-repeat center center;
    background-size: cover;
    position: relative;
}

.contact-form-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
}

.contact-form-section .container{
    position: relative;
    z-index: 2;
}

.contact-form-box{
    padding: 50px 40px;
    border-radius: 35px;
    border: 1px solid rgba(255,255,255,.5);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
}

.contact-subtitle{
    display: block;
    text-align: center;
    color: var(--white);
    font-family: var(--section-font);
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
}

.contact-form-box h2{
    text-align: center;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 35px;
}

.contact-form-box .form-group{
    margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea{
    width: 100%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 8px;
    color: var(--white);
    padding: 0 18px;
    font-family: var(--heading-font);
}

.contact-form-box input{
    height: 58px;
}

.contact-form-box textarea{
    height: 140px;
    resize: none;
    padding-top: 18px;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder{
    color: rgba(255,255,255,.85);
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
    outline: none;
    border-color: var(--orange);
}

.contact-btn{
    border: none;
    cursor: pointer;
    margin-top: 5px;
}

.contact-btn i{
    margin-left: 12px;
}

.contact-note{
    color: var(--white);
    font-size: 16px;
    margin-top: 30px;
    font-family: var(--heading-font);
}

/* ================= CONTACT FORM END ================= */

/* ================= FOOTER START ================= */

.footer-section{
    background: var(--darkgreen);
    padding-top: 140px;
    color: var(--white);
}

.footer-logo{
    display: inline-block;
    width: 220px;
    margin-bottom: 24px;
}
.footer-logo img{
    width: 100%;
    height: auto;
}
.footer-about p{
    color: #ffffffe6;
}
.footer-widget h3{
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    font-family: var(--heading-font);
    margin-bottom: 20px;
    text-decoration: underline;
}
.footer-widget ul{
    margin: 0;
    padding: 0;
}
.footer-widget ul li{
    margin-bottom: 10px;
}
.footer-widget ul li a{
    color: #ffffffe6;
    font-size: 14px;
    transition: .3s;
}
.footer-widget ul li a:hover{
    color: var(--orange);
}
.footer-widget{
    padding-top: 40px;
}
.footer-contact{
    margin-bottom: 30px !important;
}
.footer-social{
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-social a{
    color: var(--white);
    font-size: 24px;
    transition: .3s;
}
.footer-social a:hover{
    color: var(--orange);
}
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 60px;
    padding: 12px 0;
    text-align: center;
}
.footer-bottom p{
    color: rgba(255,255,255,.85);
    margin-bottom: 0;
}
.footer-bottom p a{
    color: var(--green);
}

/* ================= FOOTER END ================= */

/* Loader */
.loaderWrap{
    display: none;
}



/* Inner Page */
.inner_banner {
    position: relative;
    height:320px;
    background:#000;
}
.inner_banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.inner_banner .baner_img_page{
    height: 100%;
    width:100%;
    object-fit: cover;
    object-position: 50% 20%;
}
.inner_banner_text {
    position: absolute;
    top:60%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 0;
    width: 100%;
}
.banner_area_text_box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*background: #f26a2e;
    padding: 20px;*/
}
.banner_area_text_box .page-title {
    font-weight: 500;
    font-size: 52px;
    line-height:1.2;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--banner-font);
    display: inline-block;
    letter-spacing: 1px;
    color: #fff;
    position:relative;
    flex: 0 0 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
}
.post-type-archive .banner_area_text_box .page-title{
    font-size: 0;
}.post-type-archive .banner_area_text_box .page-title span{
    font-size: 52px;
}
/*.banner_area_text_box .page-title:after{
	position: absolute; content: "";
	width:80px; height:2px; background:#000;
	bottom:0; left:0;
}*/
.breadcrumb{
	background: transparent;
	margin:0;
	padding:0;
    flex:0 0 100%;
    max-width: 100%;
}
.breadcrumb ul{
	list-style-type: none;
	margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumb ul li{
	display: inline-block;
	margin: 0 5px;
	color: var(--white);
}
.breadcrumb ul li:nth-child(1){
	margin-left:0;
}
.breadcrumb ul li a, .breadcrumb ul li strong{
	color: var(--white);
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
}
.breadcrumb ul li a:hover {
    color:#fff !important;
}

.innprobanner {
    height: auto !important;
    background: var(--green);
}

.innprobanner .inner_banner_text {
    position: relative;
    top: inherit;
    transform: translateX(0);
    padding: 20px 0;
}

.innprobanner .breadcrumb ul li a, .innprobanner .breadcrumb ul li strong, .innprobanner .breadcrumb ul li {
    color: var(--white);
}

/* About Page  */
.about-cms .ab-row:nth-child(even){
    flex-direction: row-reverse;
}
.about-cms .ab-row:not(:last-child){
    margin-bottom: 60px;
}

/* Gallery Page  */
.gallery-row{
    row-gap: 20px;
}
.gallery-image{
    position: relative;
    padding-top: 80%;
}
.gallery-image img{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
.gallery-image:hover img{
    transform: scale(1.1);
}

/* Contact Page  */
.contact-info .con-box{
    padding: 40px 24px;
    background: #F3E5C4;
    border-radius: 12px;
    height: 100%;
}
.contact-info .con-box h5{
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--green);
    font-family: var(--heading-font);
}
.contact-info .con-box a{
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
}
.contact-info .con-box i.fa {
    height: 40px;
    width: 40px;
    background: var(--light-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    color: var(--green);
    border: 1px solid var(--green);
    margin-bottom: 24px;
}
.contact-info .con-box:not(:last-child){
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #6D734F20;
}
.con-list {
    margin:  0 -6px;
}
.con-list [class*="col-"]{
    padding: 0 6px;
}

/*--- Owl Nav ---*/

.wig-slider .owl-nav .owl-prev,
.wig-slider .owl-nav .owl-next,
.product-slider .owl-nav .owl-prev,
.product-slider .owl-nav .owl-next {
    position: absolute;
    background: var(--white) !important;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    line-height: 36px !important;
    text-align: center;
    font-size: 12px !important;
    color: var(--gray) !important;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.wig-slider .owl-nav,.product-slider .owl-nav {
    width: 100%;
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
}

.wig-slider .owl-nav .owl-next,.product-slider .owl-nav .owl-next  {
    right: -15px;
}

.wig-slider .owl-nav .owl-prev,.product-slider .owl-nav .owl-prev {
    left: -15px;
}



/* My account  */
.edit-account legend {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    margin: 16px 0 12px;
}
.woocommerce-form-row em{
    color: var(--green);
}


.woocommerce-error a, .woocommerce-info a {
    color: var(--black);
}

/* 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(--green);
}
.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(--green);
    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(--green);
    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(--green) !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(--green);
    border-color: var(--green);
    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(--green);
}
.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(--green) !important;
    background: #e0c56824;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
    background: var(--green) !important;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
    border: 1px solid var(--green) !important;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:focus {
    outline: 1px solid var(--green) !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(--green) !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  */
.single-product .myHeader{
    background: var(--black);
    position: static;
}
span.onsale {
    font-size: 13px;
    letter-spacing: 0.02em;
    background: var(--green);
    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: var(--green);
    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(--green);
    font-size: 66px;
    margin-bottom: 30px;
}

.woocommerce img, .woocommerce-page img{
    height: 100%;
}
.summary.entry-summary.about-text{
    padding: 60px 0;
}