/*
    Theme Name: Storefront Child
    Theme URI: https://woocommerce.com/storefront/
    Author: Your Name
    Author URI: https://yourwebsite.com
    Template: storefront
    Version: 1.0.0
*/

@import url("../storefront/style.css");


/* @font-face {
    font-family: 'nexaheavy';
    src: url('fonts/nexa-heavy-webfont.woff2') format('woff2'),
         url('fonts/nexa-heavy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'nexaextra_light';
    src: url('fonts/nexa-extralight-webfont.woff2') format('woff2'),
         url('fonts/nexa-extralight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body {
     font-family: 'nexaextra_light';
} */

a:focus, input:focus, textarea:focus, button:focus {
    outline: none;
}
.brands-logo img.swiper-slide-image {
    max-width: 180px;
    max-height: 80px;
}
.home .footer-width-fixer {
    /* padding-top: 100px; */
    /* background: #F4E7D6; */
}
h1, h2, h3, h4, h5, h6 {
    color: #000000;
}
/* 3-column grid layout */
ul.products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (min-width: 1024px) {
    .home ul.products {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1600px) {
    .home ul.products {
        grid-template-columns: repeat(5, 1fr);
    }
}
ul.products li.product {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 0 0 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: center;
    margin-bottom: 0;
}
ul.products li.product img {
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: contain;
    background: #fff;
    width: 100%;
}
ul.products li.product .product_cat {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #c0392b; /* red tone */
    text-transform: uppercase;
    margin-bottom: 5px;
}
ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
}
/* Request a Quote button */
ul.products li.product a.button {
    background: #ce6621;
    /* background-image: linear-gradient(90deg, #8B0309 0%, #D70510 100%); */
    /* border: solid 2px #F4000C; */
    color: white;
    border-radius: 5px;
    padding: 3px 15px;
    font-weight: 500;
    transition: all 0.3s ease-out 0s;
    text-transform: none;
    display: inline-block;
    min-width: 115px;
    font-size: 16px;
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    transition: all 0.3s ease-out 0s;
}
ul.products li.product:hover a.button {
    bottom: 30px;
}
ul.products li.product a.button:hover {
    background-color: #4E7938;
        /* background-image: linear-gradient(90deg, #125632 0%, #017F3C 100%); */
        /* border-color: #009230; */
}
/* Remove default sale badge for clean look */
ul.products li.product .onsale {
    display: none;
}
ul.products li.product a.add_to_cart_button {
        font-size: 0;
        width: 40px;
        min-width: 40px;
        height: 40px;
        background: url(./images/add-to-cart-white.svg) no-repeat center #ce6621;
        background-size: 25px;
    }

/* Responsive for mobile */
@media (max-width: 768px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
    ul.products li.product a.button {
        padding: 5px 15px;
        min-width: 60px;
    }
    ul.products {
        gap: 10px;
    }
    ul.products li.product {
           padding: 0 0 10px 0; 
    }
    ul.products li.product-category h2 {
        font-size: 13px !important;
    }
    ul.products li.product a.add_to_cart_button {
        font-size: 0;
        width: 40px;
        min-width: 40px;
        height: 40px;
        background: url(./images/add-to-cart-white.svg) no-repeat center #ce6621;
        background-size: 25px;
        bottom: 20px;
    }
}
@media (max-width: 480px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
ul.products li.product .price {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}
ul.products::before {
    display: none;
}
ul.products .price del {
    font-weight: 700;
}
ul.products .price ins {
    font-weight: 700;
}
.product-image-wrap {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
ul.products li.product > a:first-child {
    width: 100%;
}
.product-category a {
    font-size: 18px;
    font-weight: 700;
}

/* listing page */
.page-banner {
    position: relative;
    background: #69873b;
    padding: 20px 0;
    text-align: center;
}
.inner-title {
    position: relative;
    /* bottom: 50px; */
    width: 100%;
    left: 0;
}
.inner-title h1 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}
.page-banner .storefront-breadcrumb {
    margin-bottom: 0;
    padding: 0;
    color: #e4e4e4;
}
 a.woocommerce-review-link, .product_meta a {
    color: #ce6621;
}
.container {
    width: 100%;
    max-width: 1522px;
    padding: 0 20px;
    margin: 0 auto;
    overflow: hidden;
}
body:not(.home) .site-content {
    /* background: url(images/bg.jpg) no-repeat center top; */
    background-size: cover;
    padding: 60px 0 0;
    /* background-image: linear-gradient(#62090D, #060E05, #0A3013); */
    position: relative;
}
/* body:not(.home) .site-content:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 700px;
    content: '';
    background: url(images/shape-right.png) no-repeat right 0 ;
     background-size: contain;
    opacity: 0.5;
    z-index: 0;
}
body:not(.home) .site-content:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 700px;
    content: '';
    background: url(images/shape-left.png) no-repeat left 0 ;
    background-size: contain;
    opacity: 0.5;
    z-index: 0;
} */
.col-fullwidth {
    position: relative;
    z-index: 1;
}

.site-main ul.products.columns-3 li.product {
    width: 100%;
}
.site-main ul.products.columns-3 li.product {
    width: 100%;
}
.storefront-sorting {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #000000;
}
.woocommerce-notices-wrapper {
    width: 100%;
}
.storefront-sorting::before, .storefront-sorting::after {
    display: none;
}
.woocommerce-shop-page header.woocommerce-products-header {display: none;}
.storefront-sorting select {
    padding: 8px 10px;
    border-radius: 5px;
}
.wp-block-search .wp-block-search__label {
    display: none;
}
.wp-block-search__inside-wrapper {
    position: relative;
}
.wp-block-search__inside-wrapper input#wp-block-search__input-3 {
    width: 100%;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #ccc;
}
button.wp-block-search__button.wp-element-button {
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0 15px;
    border-radius: 5px;
    border: 0;
}
.wp-block-search__inside-wrapper input#wp-block-search__input-3::placeholder {
    color: #505050;
}
h4.wp-block-heading {
    margin-bottom: 0;
}
.widget-area .widget {
    margin-bottom: 0;
}
div#block-9 {
    background: #f4e7d6;
    border-radius: 5px;
    padding: 12px;
}
li.wc-block-product-categories-list-item {
    padding: 10px 0;
    border-bottom: 1px solid #595959;
}
li.wc-block-product-categories-list-item a {
    text-decoration: none;
    color: #000;
}
li.wc-block-product-categories-list-item a:hover {
    color: #8B0309;
}
.widget-area li.wc-block-product-categories-list-item a {
    text-decoration: none;
    font-weight: 400;
    color: #000;
}
h1.wp-block-heading.has-text-align-center.has-cardo-font-family {
    color: #fff;
}
p.has-text-align-center.has-inter-font-family {
    color: #fff;
}

/* detail page */
.single-product .col-fullwidth {
    max-width: 1522px;
    margin: 0 auto;
}
.woocommerce-product-gallery__wrapper a {
    background: #fff;
    display: block;
    text-align: center;
    border-radius: 5px;
}
.single-product div.product .woocommerce-product-gallery img {
    margin: 0 auto;
    width: 100%;
}
.entry-summary h1.product_title.entry-title {
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}
.single-product div.product p.price span.woocommerce-Price-amount.amount {
    color: #000;
   
}
.woocommerce-product-details__short-description {
    color: #000;
}
.entry-summary button.single_add_to_cart_button.button {
    min-width: 150px;
     /* border: 2px solid #F4000C; */
     background: #ce6621;
    border-radius: 5px;
}
.entry-summary button.single_add_to_cart_button.button:hover {
       background-color: #4E7938;
}
.single-product div.product .product_meta {
    color: #000000;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    flex-direction: row;        /* horizontal */
    justify-content: flex-start;
    border-bottom: 1px solid #dddddd3d;
    margin-bottom: 20px;
    width: 100%;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 10px 20px;
    font-weight: 600;
    color: #000000;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #ffffff33;
    margin-right: 5px;
    border: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    background: #ce6621;
    border-top: 0px solid #96588a; /* Storefront accent color */
    border-bottom: 1px solid #fff; /* merge with content */
    color: #ffffff;
    border: 0;
}
.woocommerce div.product .woocommerce-tabs .panel {
    border: 0 solid #ddd;
    padding: 0;
    background: transparent;
    width: 100%;
    color: #000000;
    margin-bottom: 0;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
    color: #000000;
}
div#respond {
    padding: 20px;
    background-color: rgb(0 0 0 / 5%);
    margin-bottom: 20px;
}
.products +.storefront-sorting {
    margin-top: 40px;
    margin-bottom: 0;
}
.woocommerce-shop-page .site-main {
    margin-bottom: 0;
}
.woocommerce-tabs ul.tabs li.active::after {
    display: none;
}

.woocommerce-shop-page .col-fullwidth {
    max-width: 1522px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
}
.left-sidebar .content-area {
    order: 1;
}
/* cart */
.storefront-align-wide.storefront-full-width-content .wp-block-woocommerce-cart.alignwide {
    margin: 0 !important;
}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button {
    background-image: linear-gradient(90deg, #8B0309 0%, #D70510 100%);
    /* border: solid 2px #F4000C; */
    background: #ce6621;
    color: white;
    border-radius: 25px;
    text-decoration: none;
}
.wc-block-cart__submit-container {
    background: none;
}
.woocommerce-checkout.storefront-align-wide.storefront-full-width-content .hentry .entry-content .alignwide {
    margin: 0 !important;
}
/* my account */
.hentry .entry-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a br {
    display: none;
}
.form-row input, .form-row textarea, .form-row select {
    border: 1px solid #ccc;
    box-shadow: none;
    border-radius: 5px;
    background: #f3f3f3;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    border: 0;
    box-shadow: none;
    border-radius: 5px;
    background: #f3f3f3;
    line-height: 45px;
}
.select2-container .select2-selection--single {
    height: 47px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
    right: 11px;
}
/* .sticky-nav .marmo-header {
    background: #000;
} */
.single-product div.product {
    padding: 0 20px;
}
.page-banner img {
    width: 100%;
}
form.hfe-search-button-wrapper .fa-search:before {
    content: '';
    background: url(images/search.svg) no-repeat no-repeat center;
    width: 23px;
    height: 23px;
    display: inline-block;
    background-size: contain;
}

@media (min-width: 1300px) {
    .woocommerce-shop-page .col-fullwidth, .single-product .col-fullwidth {
        padding: 0 72px;
    }
}
/* @media (min-width: 768px) {
    .sticky-nav .marmo-header img.hfe-site-logo-img {
        max-width: 100px !important;
    }
} */
@media (max-width: 768px) {
    div#secondary {
        width: 100%;
        margin-bottom: 30px;
    }
    .page-banner img {
        min-height: 250px;
        object-fit: cover;
    }
    .inner-title h1 {
        font-size: 25px;
    }
    body:not(.home) .site-content {
        padding-top: 30px;
    }
    .single-product div.product {
        padding: 0 10px;
    }
}
@media (min-width: 768px) {
    .storefront-full-width-content .content-area {
        clear: both;
        float: none;
    }
}
@media (max-width: 500px) {
     .page-banner img {
        min-height: 200px;
        object-fit: cover;
    }
    ul.products li.product .woocommerce-loop-product__title {
        font-size: 14px;
        margin-bottom: 0;
    }
    ul.products li.product .price {
        font-size: 15px;
        margin-bottom: 10px;
    }
    ul.products li.product img {
        margin-bottom: 10px;
    }
    .inner-title h1 {
        font-size: 20px;
    }
    .page-banner {
        padding: 10px 0;
    }
    .woocommerce-breadcrumb {
        font-size: 0.775em;
    }
}

form.hfe-search-button-wrapper {
    margin-bottom: 0;
    border: 0;
}
input.hfe-search-form__input {
    border: 0 !important;
    box-shadow: none !important;
}
ul.products li.product-category {
    background: #fff;
    box-shadow: none;
}

ul.products li.product-category h2 {
    color: #000;
    text-transform: uppercase;
    padding-right: 75px;
    font-weight: 700 !important;
}
ul.products li.product-category h2 .count {
    display: none;
}
.home-category ul.products {
    grid-template-columns: repeat(5, 1fr);
}

.wc-product-slider ul.products li {
    margin-right: 0;
}
.copyRight p {
    margin-bottom: 0;
}
.pagination, .woocommerce-pagination {
    border: 0;
}
.pagination .page-numbers li .page-numbers, .woocommerce-pagination .page-numbers li .page-numbers {
    background-color: rgb(0 0 0 / 39%);
}
.pagination .page-numbers li .page-numbers.current, .woocommerce-pagination .page-numbers li .page-numbers.current {
    background-color: #ce6621;
    border-color: #ce6621;
}
.pagination .page-numbers li a.page-numbers:hover, .woocommerce-pagination .page-numbers li a.page-numbers:hover {
    background-color: #ce6621;
    border-color: #ce6621;
}
.storefront-full-width-content .site-main .related ul.products.columns-3 li.product {
    width: 100%;
}
.related ul.products.columns-3 {
    padding-bottom: 20px;
}
.home-category ul.products, .product2 ul.products {
    display: flex ;
    justify-content: center;
    gap: 0;
}

.wc-cat-slider ul.products li.product.first {
    clear: none !important;
}
.slick-slider .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 9;
    font-size: 0;
    width: 35px;
    height: 35px;
    background: #f3f3f391;
}
.slick-slider button.slick-next.slick-arrow {
    right: -15px;
    background: url(images/chevron.png) no-repeat center #f3f3f391;
    background-size: 22px;
}
.slick-slider button.slick-prev.slick-arrow {
    left: -15px;
    background: url(images/left-chevron.png) no-repeat center #f3f3f391;
    background-size: 22px;
}
.wc-cat-slider .slick-slider .slick-arrow {
    top: 30%;
}
.wc-cat-slider .slick-slide {
    margin: 0 15px;
}

ul.products li.product .product-category {
    display: none;
}
.woocommerce-custom-menu-item a#hfe-menu-cart__toggle_button {
    background: none;
}
.wc-cat-slider.owl-carousel {
    display: block;
}
figure.swiper-slide-inner img {
    width: 100%;
}

/* Desktop – always show menu, hide arrow */
.toggle-heading::after {
    display: none;
}
.marquee-carousel .item {
  white-space: nowrap;
  width: auto;
  padding: 0 40px;
}
.marquee-track {
  animation: marquee 35s linear infinite; /* slow */
}
.bar-marquee {
  background: #111;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite; /* 🔥 CONTROL SPEED HERE */
}

.marquee__inner span {
  white-space: nowrap;
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Default header state */
.marmo-header {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 100;
}

/* Sticky state */
.marmo-header.is-hidden {
  transform: translateY(-100%);
}

/* Sticky when scrolling UP */
.marmo-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transform: translateY(0);
}
.sticky-nav .is-sticky {
    top: -40px;
}

@media (max-width: 768px) {

    .toggle-heading {
        position: relative;
        cursor: pointer;
        padding-right: 25px;
        width: 100%;
    }

    /* PLUS default */
    .toggle-heading::after {
        display: block;
        content: "+";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        transition: 0.3s;
    }

    /* MINUS on open */
    .toggle-heading.active::after {
        content: "–";
        font-size: 22px;
    }
    footer .hfe-nav-menu__submenu-arrow {
        width: 100% !important;
    }
}


@media (max-width: 992px) {
    .home-category ul.products {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 767px) {
    .home-category ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
    ul.products li.product-category h2 {
        padding-right: 0;
    }
    
}
@media (max-width: 880px) {
    footer .menu-item a.hfe-menu-item {
        justify-content: left !important;
    }
}

@media (max-width: 480px) {
    .wc-product-slider ul.products li {
        margin-right: 0;
    }
}

/* PDP page */
.single-product .slick-slider .slick-arrow {
    background: none;
}
.single-product button.slick-arrow {
    background: none !important;
        margin-top: 10px;
}
.single .wpgs-nav .slick-prev:before, .single  .wpgs-nav .slick-next:before {
    font-size: 22px;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.selected:not(.no-stock) {
    background: #000;
    color: #fff;
}
.single-product div.product p.price {
    margin: 15px 0;
}
.woocommerce-variation-price {
    font-size: 20px;
    font-weight: 700;
    color: #ce6621;
}
.quantity .qty {
    font-size: 16px;
    border: 1px solid #000;
    box-shadow: none;
    background: #fff;
    border-radius: 5px;
}
p.comment-form-comment textarea {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: none;
}
@media (max-width: 767px) {
    .entry-summary h1.product_title.entry-title {
        font-size: 20px;
    }
    .single-product div.product p.price {
        margin: 15px 0;
    }
}
.home-category .owl-nav {
    display: none;
}

/* side Manu    */
/* Side Menu Container */
.mobile-side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: left 0.35s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}

/* Active */
.mobile-side-menu.active {
  left: 0;
}

/* Overlay */
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}

/* Close icon */
.menu-close {
  cursor: pointer;
}

.menu-open.ehf-header #masthead {
    z-index: unset;
}
.mobile-side-menu li.menu-item a {
    font-size: 16px;
    font-weight: 400 !important;
    padding-left: 0 !important;
}
a.hfe-menu-item {
    justify-content: space-between !important;
}
.mobile-side-menu .sub-menu li.menu-item {
    border: 0 !important;
}
.mobile-side-menu nav > ul > li {
    border-bottom: 1px solid #e8e8e8;
}
.mobile-side-menu .menu-item-has-children .sub-menu {
    padding-left: 20px;
}
.ehf-header #masthead {
    z-index: unset !important;
}
.star-rating span:before {
    color: #ce6621;
}


.ehf-header.search-open #masthead {
    z-index: 99 !important;
}
/* search side */
.side-search {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px !important;
  height: 100vh;
  background: #fff;
  z-index: 9999;
   transform: translateX(100%);
  transition: transform 0.35s ease-in-out;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}

/* Active */
.side-search.active {
  transform: translateX(0);
}

/* Overlay */
body.search-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}

/* Close icon */
.search-close, .search-toggle {
  cursor: pointer;
}
@media (min-width: 500px) {
    .side-search {
      max-width: 400px !important; 
    }
}
ul.products + .storefront-sorting .woocommerce-ordering, ul.products + .storefront-sorting p {
    display: none;
}
.mobile-filter-btn + .storefront-sorting .woocommerce-pagination {
    display: none;
}
.wc-block-grid__product-onsale, .onsale, .woocommerce-pagination .page-numbers li .page-numbers:not(.current) {
    color: #000000;
}
.woocommerce-pagination .page-numbers li .page-numbers.current {
    color: #fff;
}

/* ===============================
   MOBILE OFF-CANVAS FILTER
   (Storefront Compatible)
================================ */
@media (min-width: 768px) {
    .woocommerce-shop-page ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 992px) {
    .mobile-filter-btn {
    display: none;
    }
    .mobile-filter-header {
        display: none;
    }
    .woocommerce-shop-page ul.products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .right-sidebar .content-area {
        width: 100%;
        margin-right: 0;
    }

    .filter-active .site-content {
        z-index: 9999;
    }

    /* Reset Storefront layout */
    body.filter-active {
        overflow: hidden;
    }

  /* Sidebar filter */
  body #secondary.widget-area {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 10001;
    transform: translateX(-100%);
    transition: transform 0.35s ease-in-out;
    overflow-y: auto;
    box-shadow: 6px 0 20px rgba(0,0,0,0.25);
    padding: 0;
  }

  /* Active sidebar */
  body.filter-active #secondary.widget-area {
    transform: translateX(0);
  }

  /* Overlay (FULL PAGE, not inside layout) */
  body .filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
  }

  body.filter-active .filter-overlay {
    opacity: 1;
    visibility: visible;
  }
  .mobile-filter-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 5px 15px;
    border-radius: 5px;
    background: #ce6722;
    color: #fff;
    position: sticky;
    top: 4px;
    z-index: 99;
}
.mobile-filter-close {
  padding: 12px 16px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
 .mobile-filter-header {
    position: sticky;
    top: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f6f1ee; /* light beige like image */
    border-bottom: 1px solid #e2d8d2;
    margin-bottom: 10px;
  }

  .mobile-filter-header .filter-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .mobile-filter-header .filter-icon {
    font-size: 18px;
  }

  .mobile-filter-header .filter-close {
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
  }

  /* Push widgets below header */
  #secondary .widget {
    margin-top: 0;
    margin: 0 10px;
  }
}

.side-search .aws-search-field {
    border: 1px solid #71533f !important;
    box-shadow: none;
    /* border-right: 0 !important; */
}
.aws-container .aws-search-form .aws-form-btn {
    border: 1px solid #673310 !important;
    background: #673310;
    color: #fff;
}
.aws-container .aws-search-form .aws-form-btn svg {
    fill: #fff;
}
.aws-container .aws-search-form .aws-form-btn:hover {
    background: #5CA13D;
}
.wp-block-search__inside-wrapper input#wp-block-search__input-3 {
    box-shadow: none;
    border: 1px solid #9e9e9e;
}
.menu-open.ehf-header #masthead {
    z-index: 9 !important;
}
.ehf-header.filter-active #masthead {
    z-index: 99 !important;
}
button.slider-nav {
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
}
@media screen and (max-width: 480px) {
    .slide-buttons {
        flex-direction: row;
    }
    .slide-content-wrapper.align-center .slide-description {
        display: none;
    }
}
/* cart space */
@media (max-width: 767px) {
    .woocommerce-cart .wc-block-components-sidebar-layout {
        flex-direction: column;
    }
}
.cart-con2 > .e-con-inner {
    display: block;
}
.wc-block-components-sidebar-layout.wc-block-cart {
    margin-bottom: 0;
}
.woocommerce-cart article#post-9 {
    margin-bottom: 0;
}
.woocommerce-cart div#content {
    padding-bottom: 0;
}
.woocommerce-cart main#main {
    margin-bottom: 0;
}
.border-design-bg {
    position: relative;
}
.border-design-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: url(images/border-design.png) no-repeat center;
    background-size: cover;
    z-index:1;
}
.border-design-bg:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: url(images/border-design-down.png) no-repeat center;
    background-size: cover;
    z-index:1;
}
.border-design-bg > div {
    position: relative;
    z-index:2;
}
ul.products li.product a.add_to_cart_button.added {
    display: none;
}
ul.products a.added_to_cart.wc-forward {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    border-radius: 5px;
    background: #779e41;
    padding: 6px 10px;
}
.single-product div.product .woocommerce-product-rating a {
    color: #ce6621;
}
p.stars.selected a:not(.active)::before {
    color: #ce6621;
}
p.stars.selected a.active:before, p.stars:hover a:before, p.stars.selected a:not(.active):before, p.stars.selected a.active:before {
    color: #ce6621;
}
.woocommerce-tabs.wc-tabs-wrapper {
    padding: 0;
}
.woocommerce-breadcrumb a {
    color: #fff;
}
.woocommerce-Tabs-panel ul {
    margin-left: 18px;
}
.woocommerce-checkout article#post-10 {
    margin-bottom: 0;
}
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button {
    background: #CE6621;
}
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button:hover {
    background: #779e41;
}