@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

@font-face {
    font-family: 'morginaregular';
    src: url('../fonts/morgina-webfont.woff2') format('woff2'),
         url('../fonts/morgina-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --black : #1A1A1A;
    --white: #fff;
    --brown: #926F55;
    --dark-brown: #40352D;
    --light-grey: #F5F5F5;
    --darkgrey: #6d6d6d;
    --body-font: "Inter", sans-serif;
    --heading-font: 'morginaregular';
    --subheading-font: "Rosarivo", cursive;
}
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);
}
a:hover{
    color: var(--dark-brown);
}
p:last-child{
    margin-bottom: 0;
}
p a{
    color: var(--brown);
    font-weight: 600;
}
img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sec-space{
    padding: 98px 0;
}
.btn, .shop-search button[type="submit"] {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.6px;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-family: var(--body-font);
    padding: 0 24px;
    min-width: 148px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}
.btn-primary, .shop-search button[type="submit"] {
    background: var(--brown);
    color: var(--white);
    border: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
.shop-search button[type="submit"] :hover, .shop-search button[type="submit"] :focus, .shop-search button[type="submit"] :active{
    background: var(--black);
    color: var(--brown);
    border-color: var(--black);
}
.shop-search button[type="submit"] {
    min-width: auto;
    height: 44px;
    line-height: 43px;
    padding: 0 12px;
    cursor: pointer;
    flex-shrink: 0;
}
.btn-outline{
    color: var(--brown);
    border-color: var(--brown);
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active{
    border-color: var(--brown);
    background: var(--brown);
    color: var(--black);
}
.btn-line{
    min-width: fit-content;
    font-weight: 700;
    color: var(--brown);
    text-decoration: underline !important;
}
.section-heading{
    margin-bottom: 42px;
    max-width: 60%;
}
.form-control, .shop-search input , .woocommerce-ordering select, #customer_login input,
.edit-account .woocommerce-form-row .input-text, 
.woocommerce-address-fields input, .woocommerce-address-fields .select2-selection__rendered,
.wc-block-checkout__main input, 
.wc-block-checkout__main .wc-blocks-components-select__select{
    font-size: 13px !important;
    border-radius: 0;
    background: var(--white);
    border: 1px solid #40352d2b !important;
    padding: 10px 20px !important;
    color: var(--black);
    font-weight: 500;
}
.form-control::placeholder, textarea::placeholder{
    color: var(--black);
    text-transform: capitalize;
    font-size: 13px;
}
textarea {
    width: 100%;
    height: 80px;
    background: var(--white);
    border: 1px solid #40352D20;
    padding: 10px 20px;
    color: var(--black);
}
.form-control:focus, textarea:focus{
    border-color: var(--brown) !important;
    background: #F5F5F5;
    box-shadow: none;
    outline: none;
}
.form-group{
    position: relative;
    margin-bottom: 12px;
}
.form-group .bi{
    color: var(--black);
    font-size: 20px;
    position: absolute;
    left: 0;
}
.contact-form  label, #customer_login label, .edit-account .woocommerce-form-row label,
.woocommerce-address-fields label, .wc-block-components-checkout-step__content label{
    font-size: 13px;
    color: var(--brown);
    font-weight: 600;
    margin: 0 0 4px !important;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    background: transparent;
    height: 40px;
    width: 40px;
    border: 1px solid var(--darkgrey);
    border-radius: 4px;
    color: var(--darkgrey);
    font-size: 20px;
    position: absolute;
    top: 240px;
    left: -60px;
    transition: 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-next{
    left: auto;
    right: -60px;
}
.owl-carousel .owl-nav button:hover, .owl-carousel .owl-nav button:focus, .owl-carousel .owl-nav button:active{
    color: var(--white);
    background: var(--brown);
    border: none;
    outline: 0;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
}
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: 1px solid var(--brown);
    padding: 0!important;
    font: inherit;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 8px;
    background: transparent;
    transition: 0.3s ease-in-out;
}
.owl-carousel button.owl-dot.active{
    background: var(--brown);
    width: 24px;
}


/* Header  */
.top-header{
    background: var(--white);
    padding: 4px 0;
    width: 100%;
}
.custom-logo-link img {
    height: 64px;
    width: auto;
}
.navbar-toggler-icon{
    color: var(--brown);
    font-size: 36px;
}
.nav-text{
    gap: 20px;
}
.nav-text img{
    height: 20px;
    width: 20px;
    object-fit: contain;
    filter: brightness(0);
}
/* .myHeader.fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--light-grey);
    z-index: 99;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.myHeader.fixed{
    background: var(--white);
}
.myHeader.fixed .custom-logo-link img {
    height: 60px;
}
.myHeader.fixed .navbar-collapse, .myHeader.fixed .nav-text{
    margin-top: 0px;
} */
.desktop-nav{
    background: var(--black);
    border-bottom: 0.4px solid #4b4a4a;
    z-index: 99;
}
.desktop-nav::before, .banner:before{
    content: "";
    width: 30%;
    height: 100%;
    background: var(--dark-brown);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.desktop-nav::before{
    display: none;
}
.page-template-home .desktop-nav::before{
    display: block;
}
.navbar-nav li a {
    font-size: 12px;
    font-weight: 400;
    padding: 12px 0;
    display: block;
    text-transform: uppercase;
    font-family: var(--body-font);
    color: var(--darkgrey);
    position: relative;
    transition: 0.4s ease-in-out;
}
.navbar-nav li{
    margin-left: 44px;
    transition: 0.3s ease-in-out;
    position: relative;
}
.navbar-nav li.active a, .navbar-nav li:hover a{
    color: var(--brown);
}
.navbar-nav li:has(.sub-menu){
    padding-right: 24px;
}
.navbar-nav li:has(.sub-menu):before{
    content: "\F282";
    font-family: 'Bootstrap-icons';
    font-size: 14px;
    position: absolute;
    top: 14px;
    right: 0;
}
.sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    width: 320px;
    background: #1e1e1e;
    list-style-type: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    z-index: 9999;
}
.navbar-nav li:hover .sub-menu{
    opacity: 1;
    visibility: visible;
    color: var(--light-grey);
}
.sub-menu li{
    margin-left: 0;
}
.sub-menu li a{
    padding: 16px 20px !important;
}
.sub-menu li a:hover, .sub-menu li.current-menu-item a{
    background: #ffffff12;
    color: var(--darkgrey);
}
.navbar .top_wishlist-heart::before{
    color: var(--black);
    font-size: 24px !important;
}

/* Search Bar  */
#ajaxsearchlite1 .probox, div.asl_w .probox {
    width: 400px;
}
div.asl_m .probox .proclose svg {
    background: #bdbdbd !important;
}

/* Banner  */
.banner{
    background: var(--black);
    z-index: 1;
}
.banner-slider .item{
    padding-top: 60px;
}
.banner-img{
    position: relative;
    padding-top: 100%;
}
.banner-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.banner-text h1{
    font-size: 64px;
    line-height: 1.1;
    font-family: var(--heading-font);
    color: var(--white);
}
.banner-text h6, .about-text h6{
    font-family: var(--heading-font);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    width: fit-content;
}
.banner-text h6 span, .about-text h6:before {
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    width: 184px;
    background: var(--darkgrey);
    margin-left: 24px;
}
.about-text h6:before{
    content: "";
    width: 84px;
    position: absolute;
    left: 100%;
    top: 14px;
}
.banner-count {
    font-size: 360px;
    line-height: 1;
    font-weight: 800;
    color: #ffffff04;
    position: absolute;
    top: -4%;
    right: -2%;
}
.social-list{
    position: absolute;
    left: 2%;
    bottom: 8%;
    z-index: 1;
}
.social-list li .bi{
    display: block;
    height: 36px;
    width: 36px !important;
    line-height: 36px;
    text-align: center;
    background: #ffffff14;
    color: var(--white); 
    font-size: 16px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.social-list li:not(:last-child){
    margin-bottom: 8px;
}
.social-list span {
    display: inline-block;
    height: 184px;
    width: 1px;
    background: var(--darkgrey);
    margin-bottom: 24px;
}

/* Product Category  */
.pro-cat-slider{
    max-width: 70%;
}
.cat-img{
    padding-top: 142%;
    z-index: 1;
}
.cat-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.cat-img::before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000bf, #0000000a, #0000000a);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease-in-out;
    z-index: 1;
}
.cat-text , .loc-cat-text{
    width: 90%;
    padding: 20px 12px;
    height: 54px;
    overflow: hidden;
    background: #ffffff24;
    backdrop-filter: blur(9px);
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    transform: translateX(-50%);
    transition: 0.3s ease-in-out;
}
.loc-cat-text{
    height: auto;
    width: 96%;
    justify-content: space-between;
}
.cat-text h3, .loc-cat-text h3 a{
    font-size: 16px;
    font-family: var(--subheading-font);
    color: var(--white);
    margin-bottom: 0;
}
.cat-text p, .loc-cat-text p{
    color: #ffffffd8;
    font-weight: 300;
    padding-top: 12px;
    line-height: 1.4;
}
.category-box:hover .cat-text{
    height: 40%;
}
.cat-wrap{
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}
.pro-category .about-text{
    max-width: 24%;
}
.section-heading{
    max-width: 68%;
    margin-bottom: 40px;
}
.section-heading h2, .about-text h2, .related.products h2{
    font-size: 48px;
    line-height: 1;
    text-transform: capitalize;
    font-family: var(--heading-font);
    color: var(--black);
}
.section-heading h2 strong, .about-text h2 strong{
    display: block;
    font-weight: 400;
}


/* Feature Products  */
.pro-img{
    padding-top: 114%;
    overflow: hidden;
}
.pro-img img{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
.product-box:hover .pro-img img{
    transform: scale(1.1);
}
.product-title{
    font-size: 14px;
    line-height: 1.4;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--black);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.price-wrap{
    color: var(--brown);
    font-size: 14px;
    font-weight: 600;
}
.price-wrap del{
    color: #787878;
}

/* Wishlist */
.product-box .tinv-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    z-index: 2;
}
ul.products li.product .tinvwl_add_to_wishlist_button {
    margin-top: 0;
}
.tinv-wishlist .tinvwl_add_to_wishlist_button.icon-black:before{
    color: var(--brown) !important;
}


/* USP  */
.whyus{
    background: url(../images/usp-bg.jpg) no-repeat center;
    background-size: cover;
}
.whyus::before, .middle-banner::before, .myFooter:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #926f55d6;
    position: absolute;
    top: 0;
    left: 0;
}
.whyus-box{
    padding: 20px 40px;
}
.whyus-icon img{
    height: 68px;
    width: 68px;
    filter: brightness(0) invert(1);
}
.whyus-box h3{
    color: var(--white);
    font-family: var(--subheading-font);
    font-size: 22px;
}
.whyus-box p{
    color: #ffffffd8;
    font-weight: 300;
}
.why-row [class*="col-"]:not(:last-child)::before{
    content: "";
    background: #ffffff2b;
    height: 60%;
    width: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}


/* Indoor & Outdoor  */
.loc-cat .cat-img{
    padding-top: 68%;
}
.loc-cat-text {
    gap: 12px;
}
.loc-cat-text .btn{
    flex-shrink: 0;
}
.loc-cat-text h3 a {
    font-size: 24px;
}
.loc-cat:hover .loc-cat-text{
    background: var(--brown);
}
.loc-cat:hover .loc-cat-text .btn-primary {
    background: #ffffff;
    color: var(--brown);
    font-weight: 600;
    letter-spacing: 0.9px;
}

/* Brands  */
.brand-img{
    height: 62px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.48;
    transition: 0.3s ease-in-out;
}
.brand-img:hover{
    filter: none;
    opacity: 1;
}

/* Middle Banner  */
.middle-banner{
    background-size: cover !important;
    background-position: 50% 86% !important;
}
.middle-banner::before{
    background: linear-gradient(270deg, #000000c6, #00000000);
}
.middle-banner .about-text h2{
    color: var(--white);
}
.middle-banner .about-text p, .middle-banner .about-text h6{
    color: #F5F5F5;
    font-weight: 300;
}

/* Blogs  */
.blog-wrap{
    padding-left: 50%;
}
.blog-box{
    background: var(--light-grey);
}
.blog-img{
    padding-top: 24%;
    padding-right: 30%;
}
.blog-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.blog-text {
    padding: 18px 24px 12px;
}
.blog-title{
    color: var(--black);
    font-family: var(--subheading-font);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 8px;
     overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog-box:not(:last-child){
    margin-bottom: 12px;
}
.blog-wrap .blog-box:first-child{
    position: absolute;
    width: 49%;
    height: 100%;
    top: 0;
    left: 0;
    flex-direction: column;
    background: transparent;
}
.blog-wrap .blog-box:first-child .blog-text{
    padding: 28px 0 0;
}
.blog-wrap .blog-box:first-child .blog-text .blog-title{
    font-size: 22px;
}
.blog-wrap .blog-box:first-child .blog-img{
    padding-top:58%;
}
.blog-btn{
    bottom: 0;
    left: 0;
    width: 49%;
    gap: 20px;
}
.blog-btn span{
    width: 100%;
    height: 1px;
    background: #78787840;
}
.blog-btn .btn{
    flex-shrink: 0;
}
.desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* Testimonials  */
.test-box{
    background: #F2EEEB;
    padding: 40px 28px;
    border-radius: 20px;
}
.quote{
    height: 57px;
    width: 57px !important;
    object-fit: contain;
}
.client-img{
    height: 57px;
    width: 57px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}
.client-info h4{
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--black);
}
.client-info h4 strong{
    display: block;
    font-size: 14px;
    color: var(--brown);
    font-weight: 600;
}
.testimonial-slider.owl-theme .owl-dots .owl-dot span{
    display: none;
}

/* Gallery  */
.gallery-img{
    padding-top: 112%;
    z-index: 1;
}
.gallery-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.gallery-img:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #1a1a1aab;
    backdrop-filter: blur(8px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.gallery-img::after{
    content: "\F4FA";
    font-family: 'Bootstrap-icons';
    font-size: 32px;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.gallery-img:hover:before, .gallery-img:hover::after{
    opacity: 1;
}

/* Footer  */
.myFooter{
    background: url(../images/footer-bg.jpg) no-repeat center;
    background-size: cover;
    padding-top: 100px;
    z-index: 1;
}
.myFooter:before{
    background: #1a1a1ad4;
    z-index: -1;
}
.myFooter h3{
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}
.myFooter li a, .copyright p{
    color: var(--darkgrey);
}
.myFooter li.active a, .copyright a{
    color: var(--brown);
}
.collection-list{
    columns: 2;
}
.quick-links li:not(:last-child){
    margin-bottom: 4px;
}
.myFooter .social-list {
    position: static;
    display: flex;
    gap: 6px;
    margin-top: 20px;
}
.call-cta{
    padding-left: 42px;
}
.call-cta::before{
    content: "";
    background: url(../images/call-cta-icon.png) no-repeat center;
    filter: brightness(0) saturate(100%) invert(43%) sepia(47%) saturate(328%) hue-rotate(343deg) brightness(95%) contrast(86%);
    background-size: contain;
    height: 36px;
    width: 36px;
    position: absolute;
    top: 4px;
    left: 0;
}
.call-cta a{
    color: var(--white);
    font-weight: 300;
}

/* Newsletter  */
.newsletter{
    margin: 20px 0;
}
.newsletter .es_ajax_subscription_form {
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
.newsletter .es-subscribe-btn{
    margin: 0 !important;
    width: 40px !important;
    border-radius: 50%;
}
input.es_required_field.es_txt_email.ig_es_form_field_email.ig-es-form-input {
    background-color: transparent !important;
    color: #fff;
    font-size: 14px !important;
    letter-spacing: 0.4px;
    font-weight: 300;
    border-color: #5e5e5e !important;
    border-radius: 50px !important;
    padding: 12px 20px !important;
}
body form.es_subscription_form.es_subscription_form[data-form-id="3"].wysiwyg-form .es-field-label{
    font-size: 0;
}
.es-field-wrap.es-submit-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 40px !important;
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 4px;
}
.es-field-wrap.es-submit-container::before{
    content: "\F6C0";
    font-family: 'Bootstrap-icons';
    font-size: 16px;
    color: var(--white);
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 1;
}


/* Inner Pages  */
.inner-banner {
    padding: 80px 0;
}
.inner-banner{
    background-size: cover !important;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.inner-banner::before {
    content: "";
    background: linear-gradient(45deg, var(--dark-brown), #00000086);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.inner-banner-text h1 {
    color: var(--white);
    font-family: var(--subheading-font);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}
.inner-banner .breadcrumb{
    background: transparent;
    color: var(--white);
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
    content: " // ";
}
.inner-banner .breadcrumb-item a, .woocommerce-breadcrumb, .woocommerce-breadcrumb a{
    color: var(--white)  !important;
    text-decoration: none !important;
}
.inner-banner .breadcrumb-item{
    color: var(--white);
}

/* About Page  */
.about-cms .about-img {
    position: relative;
    padding-top: 62%;
    border-radius: 20px;
}
.about-cms .about-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.about-cms .about-wrap:nth-child(even) .ab-row{
    flex-direction: row-reverse;
}
.about-cms .about-wrap:not(:last-child){
    margin-bottom: 80px;
}
.about-cms .about-wrap:nth-child(even) .about-text{
    padding-left: 40px;
}
.about-cms .about-wrap:nth-child(odd) .about-text{
    padding-right: 40px;
}

/* Gallery Page  */
.gallery-row{
    row-gap: 28px;
}


/* Contact Page  */
.contact-cms{
    background: var(--black);
}
.con-icon {
    height: 48px;
    width: 48px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(44%) sepia(27%) saturate(559%) hue-rotate(343deg) brightness(97%) contrast(84%);
}
.con-icon1 {
    height: 140px;
    width: 140px;
    filter: brightness(0) invert(1);
    opacity: 0.02;
    position: absolute;
    bottom: -24%;
    right: -10%;
    transition: 0.6s ease-in-out;
}
.con-box:hover .con-icon1{
    bottom: -14%;
    right: -4%;
}
.contact-cms .con-box{
    padding: 24px;
    background: #262626;
    height: 100%;
    overflow: hidden;
}
.contact-cms .con-box h4{
    color: var(--brown);
    font-family: var(--subheading-font);
    font-size: 20px;
    font-weight: 500;
    margin-top: 40px;
}
.con-box p, .con-box a{
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.4px;
}
.form-row{
    row-gap: 0 !important;
}
.contact-form{
    padding: 40px;
    background: var(--light-grey);
}



/* My Account Page  */
.woocommerce-MyAccount-navigation ul{
    list-style-type: none;
}
.woocommerce-MyAccount-navigation ul li a{
    background: #f2edea;
    padding: 16px 24px;
    display: block;
    transition: 0.3s ease-in-out;
}
.woocommerce-MyAccount-navigation ul li.is-active a, .woocommerce-MyAccount-navigation ul li:hover a{
    background: var(--brown);
    color: var(--white);
}
.woocommerce-MyAccount-navigation ul li a {
    font-size: 15px;
    font-family: var(--body-font);
    font-weight: 600;
    text-transform: capitalize;
    color: var(--brown);
}
.woocommerce-MyAccount-navigation ul li:not(:last-child){
    border-bottom: 1px solid #ffffff12;
}


/* Common Button  */
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
    padding: 1.1em 2em;
    /* background: var(--brown);
    background-color: var(--brown) !important;
    color: var(--white); */
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 0;
    letter-spacing: 0.6px;
    border: 1px solid transparent;
}
/* .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit: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, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover{
    background: var(--dark-brown);
    background-color: var(--dark-brown) !important;
    color: var(--white);
} */
.tinvwl-to-right.look_in .button:first-child{
    background: transparent;
    color: var(--brown);
    border: 1px solid var(--brown);
}
.tinv-wishlist .social-buttons li a.social {
    background: #926f5524;
    color: #926f55;
    transition: 0.3s ease-in-out;
}
.tinv-wishlist .social-buttons li a.social:hover, 
.tinv-wishlist .social-buttons li a.social:focus, 
.tinv-wishlist .social-buttons li a.social:active{
    background: var(--brown);
    color: var(--white);
}


/* Shop Page  */
.shop-search form{
    display: flex;
}
.shop-search input{
    flex-grow: 1;
    width: 100%;
}
.woocommerce .products ul, .woocommerce ul.products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
    margin: 0;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
    width: 100%;
}
.product-box{
    height: 100%;
}
.product-box .ajax_add_to_cart, .product-box .added_to_cart{
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-top: 0;
    padding: 12px 20px !important;
    background: var(--light-grey) !important;
    background-color: var(--light-grey) !important;
    color: var(--black) !important;
    border-radius: 0 !important;
}
.product-box .added_to_cart{
    background: var(--black) !important;
    background-color: var(--black) !important;
    color: var(--brown) !important;
}
.product-action {
    position: absolute;
    top: 280px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.product-box:hover .product-action{
    opacity: 1;
    top: 54%;
}
.product-box .ajax_add_to_cart.added{
    display: none !important;
}



/* ==========================================
   SHOP SIDEBAR
========================================== */

.shop-filter-box {
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
    background: #fff;
}
.filter-widget{
    padding: 16px 24px;
}
.filter-title {
    background: var(--brown);
    color: var(--white);
    width: 100%;
    padding: 14px 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 400;
    margin-bottom: 0;
}
.shop-sidebar ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.shop-sidebar li {
    margin-bottom: 10px;
}
.shop-sidebar li a {
    color: #555;
    font-size: 14px;
}
.shop-sidebar li a:hover {
    color: #c58b2a;
}
.shop-filter-box .product-categories li{
    position: relative;
    transition: 0.3s ease-in-out;
}
.shop-filter-box .product-categories li::before{
    content: "\F231";
    font-family: 'Bootstrap-icons';
    font-size: 14px;
    color: var(--brown);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.shop-filter-box .product-categories li.current-cat a{
    color: var(--brown);
}
.shop-filter-box .product-categories li.current-cat, 
.shop-filter-box .product-categories li:hover{
    color: var(--brown);
    padding-left: 20px;
}
.shop-filter-box .product-categories li.current-cat::before, .shop-filter-box .product-categories li:hover::before{
    opacity: 1;
    visibility: visible;
}


/* ==========================================
   WOOCOMMERCE PRICE FILTER
========================================== */
.price-filter {
    width: 100%;
}
.price_slider {
    position: relative;
    height: 5px;
    margin: 15px 0 25px;
    background: #ddd;
    border-radius: 10px;
}
.price_slider .ui-slider-range {
    position: absolute;
    top: 0;
    bottom: 0;
    background: #98745b;
    border-radius: 10px;
}
.price_slider .ui-slider-handle {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-left: -9px;
    margin-top: -9px;
    background: #98745b;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    outline: none;
    z-index: 2;
}
.price_slider_amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.price_slider_amount .price_label {
    font-size: 14px;
    color: #555;
    order: 1;
}
.price_slider_amount .button {
    background: #eee8ee;
    border: 0;
    padding: 12px 25px;
    font-size: 13px;
    text-transform: uppercase;
    color: #555;
    cursor: pointer;
    order: 2;
    transition: all 0.3s ease;
}
.price_slider_amount .button:hover {
    background: #98745b;
    color: #fff;
}

/* ==========================================
   MOBILE FILTER BUTTON
========================================== */
.mobile-filter-btn-wrap {
    display: none;
}
.sidebar-mobile-header {
    display: none;
}

/* ==========================================
   MOBILE SHOP TOOLBAR
========================================== */

.mobile-shop-toolbar {
    display: none;
}



/* Wishlist Page  */
.tinv-header{
    display: none !important;
}
.tinvwl-table-manage-list {
    border: 1px solid #ebebeb;
}
.tinvwl-table-manage-list thead{
    background: var(--darkgrey);
    color: var(--white);
}
.tinvwl-table-manage-list .wishlist_item:nth-child(even){
    background: var(--light-grey);
}
.product-name a{
    color: var(--black);
}
p.stock.in-stock {
    color: green;
    font-weight: 600;
}
.tinv-wishlist .product-remove button{
    background-color: #ffdbdb;
    color: #b90000;
}
.wishlist_item ins {
    color: var(--dark-brown);
    font-weight: 700;
    text-decoration: none;
}
.tinv-wishlist table th {
    font-weight: 500;
}


/* Single product page  */
.product-gallery{
    width: 100%;
    height: 100%;
    background: var(--light-grey);
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-gallery .woocommerce-product-gallery{
    margin-bottom: 0 !important;
}
.product-summary .product-title{
    font-size: 36px;
    font-family: var(--subheading-font);
    line-height: 1.4;
    font-weight: 700;
}
.product-category a {
    color: var(--brown);
    background: #926f551f;
    padding: 6px 18px;
    border-radius: 36px;
    display: inline-block;
    transition: 0.3s ease-in-out;
}
.product-category a:hover{
    background: var(--dark-brown);
    color: #b59278;
}
.product-category{
    margin-bottom: 20px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price{
    color: var(--brown);
}
.product-short-description{
    padding: 12px 0 20px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 20px;
}
.product-summary a.tinvwl_add_to_wishlist_button {
    height: 44px !important;
    width: 44px !important;
    background: #f2edea;
    margin: 0 0 0 12px !important;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt{
    background: var(--brown) !important; 
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:focus, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:active{
    background: var(--dark-brown) !important; 
}

/* Single Product Tabs  */
.woocommerce-tabs ul.tabs.wc-tabs {
    list-style-type: none;
    display: flex;
    border-bottom: 1px solid #dbdbdb;
    text-align: center;
}
.woocommerce-tabs ul.tabs.wc-tabs li{
    margin-right: 8px;
}
.woocommerce-tabs ul.tabs.wc-tabs li a{
    width: 100%;
    display: block;
    background: #f2edea;
    padding: 12px 24px;
    color: var(--brown);
}
.woocommerce-tabs ul.tabs.wc-tabs li.active a{
    background: var(--brown);
    color: var(--white);
}
.woocommerce-Tabs-panel h2{
    font-size: 20px;
    color: var(--brown);
    font-weight: 700;
    font-family: var(--subheading-font);
}


/* Related Products  */
.related.products{
    padding: 98px 0;
}
.related.products h2{
    margin-bottom: 24px;
}
.related.products ul.products{
    gap: initial;
}
.woocommerce ul.products.columns-5 li.product, .woocommerce-page ul.products.columns-5 li.product {
    width: 19%;
    margin: 0;
}
.related ul.products.columns-5 {
    display: flex;
    justify-content: space-between;
}
.woocommerce .products ul::after, .woocommerce .products ul::before, 
.woocommerce ul.products::after, .woocommerce ul.products::before {
    display: none;
}
.related.products .product-box:hover .product-action{
    top: 57%;
}
.feature-products .product-box:hover .product-action{
    top: 60%;
}

.sameheight.owl-carousel .owl-stage {
    display: flex;
    justify-content: center;
}
.sameheight .item {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 1px;
}


/* Login / Register page  */
.woocommerce .col2-set, .woocommerce-page .col2-set {
    display: flex;
    justify-content: space-around;
}
#customer_login .u-column1,  #customer_login .u-column2{
    max-width: 42%;
    flex: 0 0 42%;
}
.woocommerce-Addresses .u-column1, .woocommerce-Addresses .u-column2{
    max-width: 50%;
    flex: 0 0 50%;
}
#customer_login h2{
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-brown);
    font-family: var(--subheading-font);
    position: relative;
}
#customer_login p a{
    color: var(--brown);
}
span.password-input {
    display: block;
    width: 100%;
}
.woocommerce-button.button.woocommerce-form-login__submit,
.woocommerce-button.button.woocommerce-form-register__submit {
    width: 100%;
    background: var(--brown);
    color: var(--white);
    margin-right: 0;
}
.woocommerce-button.button.woocommerce-form-register__submit {
    margin-top: 20px;
}
.woocommerce-button.button.woocommerce-form-login__submit:hover,
.woocommerce-button.button.woocommerce-form-register__submit:hover,
.woocommerce-button.button.woocommerce-form-login__submit:focus,
.woocommerce-button.button.woocommerce-form-register__submit:focus,
.woocommerce-button.button.woocommerce-form-login__submit:active,
.woocommerce-button.button.woocommerce-form-register__submit:active {
    background: var(--dark-brown);
    color: var(--white);
}
.woocommerce form.login, .woocommerce form.register {
    padding: 40px;
}
.edit-account fieldset {
    margin-top: 24px;
}
.edit-account legend, .woocommerce-Address-title h2, 
.woocommerce-MyAccount-content h2, .wc-block-components-main .wc-block-cart-items__header th,
.wc-block-checkout h2, .wc-block-components-checkout-order-summary__title-text,
.woocommerce-order h2 {
    font-size: 20px;
    font-weight: 700 !important;
    color: var(--dark-brown);
    font-family: var(--body-font);
    width: 100%;
    background: #f2edea !important;
    padding: 12px 20px !important;
}

.woocommerce-Address a.edit {
    color: var(--brown);
    border: 1px solid var(--brown);
    padding: 8px 20px;
}
.woocommerce-address-fields .form-row{
    flex-direction: column;
}
.woocommerce-MyAccount-content .button, .wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
    background-color: var(--brown) !important;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: 0.3s ease-in-out;
}
.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content .button:focus, 
.woocommerce-MyAccount-content .button:active, 
.wc-block-cart__submit-button:hover, .wc-block-cart__submit-button:focus,
.wc-block-cart__submit-button:active,
.wc-block-components-checkout-place-order-button:hover, 
.wc-block-components-checkout-place-order-button:focus,
.wc-block-components-checkout-place-order-button:active {
    background-color: var(--dark-brown) !important;
    color: var(--white) !important;
}



/* Cart Page  */
.wc-block-components-product-name{
    font-weight: 600 !important;
    color: var(--black);
}
.wp-block-woocommerce-cart-order-summary-block {
    background: #f5f5f5;
    padding: 28px 28px 12px;
    border-bottom: none !important;
}
.wc-block-components-totals-item.wc-block-components-totals-footer-item {
    color: var(--dark-brown);
}


/* Checkout Page  */
.wc-block-components-checkout-order-summary__title{
    margin-top: 0 !important;
}
.wc-block-components-checkout-order-summary__title-text {
    margin: 0 0 8px !important;
}
.wc-block-checkout__form label {
    position: static !important;
    transform: translateY(0) !important;
    font-size: 13px !important;
    color: var(--brown) !important;
}
.wc-block-checkout__form .wc-block-components-text-input{
    display: flex;
    flex-direction: column-reverse;
}
#radio-control-wc-payment-method-options-cod, #checkbox-control-0{
    padding: 10px !important;
}
.wc-block-components-validation-error p{
    color: #cc1818 !important;
}

/* Order Page  */
.woocommerce ul.order_details {
    background: #f2edea;
    padding: 20px;
    color: #40352d;
}
.woocommerce ul.order_details li {
    font-size: 12px;
}
.woocommerce ul.order_details li strong {
    margin-top: 6px;
}
p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    color: green;
    font-size: 16px;
    font-weight: 600;
}



/* Empty Cart  */
.empty-cart-content {
    padding: 40px;
    background: #f7ede6;
    border: 1px solid #b59278;
    border-radius: 12px;
}
.empty-cart-content .bi{
    color: var(--brown);
    font-size: 42px;
}
.empty-cart-content h2 {
    font-family: var(--subheading-font);
    color: var(--brown);
    font-size: 28px;
    font-weight: 700;
    margin-top: 20px;
}
.empty-cart-row{
    margin: 0 -8px;
    justify-content: space-between;
    display: flex;
}
.empty-cart-row li{
    padding: 0 8px;
    flex: 0 0 20%;
    max-width: 20%;
}
.empty-cart-row .product-box:hover .product-action {
    top: 60%;
}