/*
Theme Name: Stove Shield
Theme URI: https://stoveshield.com
Description: Stove Shield Theme
Author: Harry 
Author URI: https://stoveshield.com
Template: Automattic
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stoveshield
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


:root {
  /* Colors */
  --primary-black: #000000;
  --primary-white: #ffffff;
  --primary-yellow: #FFB800;
  --gray-100: #f7f7f7;
  --gray-200: #e9e9e9;
  --gray-300: #d9d9d9;
  --gray-400: #9d9d9d;
  --gray-800: #333333;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);

  /* Z-index layers */
  --z-header: 100;
  --z-overlay: 200;
}


/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  color: var(--primary-black);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}




/* primary menu css */
.site-navigation .menu-toggle {
  display: none;
}

.page .entry-title {
  display: none;
}

footer.entry-footer,
header.entry-header {
  display: none;
}

article div.entry-content {
  margin: 0 !important;
}

.page {
  margin-bottom: 0;
}

/* global css */
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* cart widget text hide */
.wc-block-mini-cart__drawer .has-text-align-center {
  display: none;
}

.tfc-global-container {
  max-width: 1400px;
  width: 100%;
  margin-inline: auto;
}

.tfc-breadcrumb {
  padding-inline: 1.875rem;
  padding-top: 1rem;
}

.tfc-breadcrumb .woocommerce-breadcrumb {
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
}

.tfc-breadcrumb .woocommerce-breadcrumb a {
  color: #666 !important;
  transition: color 0.3s ease;
}

.tfc-breadcrumb .woocommerce-breadcrumb a:hover {
  color: #ffd700 !important;
}


/* custom css Header */
.admin-bar header {
  height: 80px;
  background: #ffffff;
  /* position: relative; */
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  top: 2rem;
  position: sticky;
}

header {
  height: 80px;
  background: #ffffff;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  top: 0rem;
  position: sticky;
}

.logo_stove_shield {
  display: flex;
  align-items: center;
}

.head_nav_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.875rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar_menu ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 2rem;
  width: max-content;
  list-style: none;
}

.head_nav_container .navbar_menu ul li>a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  font-weight: 500;
  color: #000000 !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar_menu ul li>a:hover {
  color: var(--primary-yellow);
}

/* static class */
nav.main-navigation {
  width: auto;
}

.head_nav_container .navbar_menu ul li>a:hover {
  background: rgba(255, 215, 0, 0.1) !important;
  color: #000000 !important;
}

.head_nav_container .navbar_menu ul li {
  position: relative;
}

.head_nav_container .navbar_menu ul .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0.5rem;
  background-color: #fff !important;
  border-radius: 6px;
  min-width: 200px;

  /* Add transition properties */
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.head_nav_container .navbar_menu ul li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.head_nav_container .actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.head_nav_container .actions .searchbar {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffd70075;
  border-radius: 50%;
  padding: 1rem;
}

.head_nav_container .actions .wc-block-mini-cart__badge {
  background-color: #000 !important;
  color: #ffd700 !important;
}

.head_nav_container .actions .find-ss-btn-hdr a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  font-size: 13px;
  font-weight: 500;
  background-color: #FFD700;
  border-radius: 10px;
  color: #000 !important;
  transition: all 0.3s ease-in-out;

}

.head_nav_container .actions .find-ss-btn-hdr a:hover {
  background-color: #ffe44d;
}

/* Base Hamburger Menu Styles */
.hamburger-menu {
  display: none;
}

 .head_nav_container .tfc-filter-img{
    display: none;
  }

.hamburger-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #333;
  display: block;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Close Button Styles */
.close-menu-btn {
  position: absolute;
  top: 2px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #ffd700;
  cursor: pointer;
  z-index: 1002;
  display: none;
}

/* Menu Overlay Styles */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Navigation Menu Transition */
nav.navbar_menu {
  transition: transform 0.3s ease;
}

/* Mobile Menu Toggle */
.show-mobile-menu .navbar_menu {
  transform: translateX(0);
}

ul#mobile-menu {
  display: none;
}

ul#primary-menu {
  display: flex;
}

.navbar_menu .menu-item-has-children>a::after {
  font-family: 'Font Awesome 5 Free';
  content: "\f078";
  font-weight: 900;
  margin-left: 10px;
  font-size: 16px;
}


/* pagination css */
.woocommerce-pagination .page-numbers li span,
.page-numbers li a {
  margin-top: 0;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.woocommerce-pagination .page-numbers li span.current {
  background: #FFD700;
  border-color: #FFD700;
}



/* best selling ss protectors additional css -----------------------------*/
.tfc-best-selling {
  background: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 30px;
}

.tfc-best-selling-titlte {
  font-size: 2rem;
  color: #1a1a1a;
  width: 100%;
  font-weight: 500;
}

.tfc-best-selling-subtitle {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto !important;
  font-size: 1.125rem;
  color: #666666;
  position: relative;
  padding-bottom: 1rem;
}

.tfc-best-selling-subtitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #ffb800 0%, rgba(255, 184, 0, 0) 100%);
}


/* popular stove brand protectors css --------------- */

.brand-protectors-container {
  padding: 3rem 1.875rem;
  background-color: #1a1a1a;
}
.home .tfc-global-container .tfc-brands-button{
  margin-top: 0px !important;
}

.popular-brand-title {
  font-size: 2.5rem !important;
  margin-bottom: 0 !important;
  background: linear-gradient(45deg, #ffffff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
}

.brand-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  text-align: center;
  max-width: 1330px;
  width: 100%;
  position: relative;
  padding-bottom: 1rem;
}

.brand-description::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #ffb800 0%, rgba(255, 184, 0, 0) 100%);
}

.tfc-subcategory-carousel .owl-dots {
  display: none;
}

.tfc-subcategory-carousel-container {
  position: relative;
/*   padding: 2rem 0 0; */
}

.tfc-subcategory-carousel .tfc-category-slide {
  margin: 0 10px;
}

.tfc-subcategory-carousel .owl-stage-outer {
  padding: 1rem 0;
}


/* Best Seller Badge */

/* Hover Effect Enhancement */
.product-item {
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 30px;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tfc-best-selling .product-item:hover .product-image-wrapper img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.product-image-wrapper img {
  transition: transform 0.5s ease;
}

/* Product Grid Layout */
.tfc-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

/* Cart Icon Animation */
@keyframes cartRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.add-to-cart-button .fa-shopping-cart.rotating {
  display: inline-block;
  animation: cartRotate 1s linear;
}

/* Pagination Styling */
.tfc-pagination {
  margin-top: 40px;
  text-align: center;
}

.tfc-pagination .page-numbers {
  padding: 8px 14px;
  margin: 0 3px;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;	
}

.tfc-pagination a {
  border: 1px solid #e0e0e0;	
}


.tfc-pagination {
  display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 0 0;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
}

.tfc-pagination .page-numbers.current {
  background-color: #FFD700;
  color: #000;
  border-color: #FFD700;
}

.tfc-pagination .prev,
.tfc-pagination .next {
  padding: 8px 20px;
}

.tfc-category-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tfc-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tfc-category-image {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tfc-category-image img {
  max-width: 100%;
  height: auto;
}

.tfc-placeholder-image {
  width: 100%;
  height: 200px;
  background: #eee;
  border-radius: 8px;
}

.tfc-category-card p {
  margin: 0;
  font-size: 1rem;
  color: #333;
  text-transform: capitalize;
  font-weight: 700;
}

.tfc-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  z-index: 2;
  transition: all 0.3s ease;
  padding: 0 !important;
}

.tfc-nav-button:hover {
  background: #ffd700;
}

.tfc-nav-button .tfc-prev {
  left: -24px;
}

.tfc-nav-button .tfc-next {
  right: -24px;
}





/* popular stove shield models carousal section css*/
.product-carousel-wrapper {
  width: 100%;
  position: relative;
  padding: 2rem 0 0;
}

.tfc-popular-ss-model-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 30px;
}

.tfc-popular-ss-model-title {
  font-size: 2.5rem;
  width: 100%;
  color: #1a1a1a;
  margin-bottom: .5rem !important;
}

.tfc-popular-ss-model-description {
  font-size: 1.1rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto !important;
  color: #666666;
  position: relative;
  padding-bottom: 1rem;
}

.tfc-popular-ss-model-description::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #ffb800 0%, rgba(255, 184, 0, 0) 100%);
}

.product-category {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 5;
  transition: transform 0.3s ease;
}

.product-item {
  background: white;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.product-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  height: 210px;
  object-fit: contain;
}

.archive .product-image-wrapper img {
  height: 180px;
}

tfc-best-selling .product-item:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.product-details {
  padding: 1.5rem;
}

.product-brand {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 8px;
  text-transform: capitalize;
}


.compatibility-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(51, 51, 51, 0.9);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
}

.best-seller-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #FFD700;
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  z-index: 10;
}

.quick-view-btn {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 51%;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: bottom 0.3s;
  z-index: 10;
  background-color: #fff;
  color: #000000;
  font-weight: 500;
}

.product-item:hover .quick-view-btn {
  bottom: 0.5rem;
  background-color: #FFD700;
}

.product-title {
  font-size: 1.125rem;
  font-weight: 600;
  display: block;
  color: #1a1a1a;
  text-decoration: none;
}

/* .product-title-link:hover .product-title {
  color: #ffd700;
} */

.tfc-product-specs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #666;
  font-size: 14px;
}

.quick-view-btn i {
  margin-right: 5px;
}

.tfc-product-specs .dot-separator {
  height: 4px;
  width: 4px;
  background-color: #aaa;
  border-radius: 50%;
  display: inline-block;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.tfc-products-grid .product-item .product-details .product-rating {
   margin-bottom: 0px;
   margin-top:10px;
}
.tfc-global-container .tfc-row-filter-wrap .product-details .product-price{
margin-top: 0px;
margin-bottom: 10px;
}
.product-rating .review-pro-overall-rating {
  display: inline-flex;
  flex-flow: row-reverse;
  align-items: center;
  gap: .25rem;
}

.review-count {
  color: #666;
  font-size: 0.875rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-block: 1rem;
  flex-wrap: wrap;
}

/* sale price (when product is on sale) */
.product-price .sale-price {
  font-size: 1.25rem;
  font-weight: 600;
}

/* regular price shown alongside sale price */
.product-price .regular-price s {
  color: #666;
}

.product-price>.regular-price:only-child {
  font-size: 1.25rem;
  font-weight: 600;
  color: inherit;
}

.p-savings-badge {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.add-to-cart-button {
  width: 100%;
  background: #ffd700 !important;
  color: black !important;
  border: none !important;
  padding: 0.75rem !important;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  display: block;

}

.add-to-cart-button:hover {
  background: #ffe44d !important;
  transform: translateY(-2px);
  color: black !important;
}

.product-carousel-wrapper .view-cart-button,
.tfc-best-selling .added_to_cart {
  margin: 1rem;
  display: block;
  background: black !important;
  color: white !important;
  text-align: center;
  padding: 0.5rem;
  border-radius: 5px;
}

.product-carousel-wrapper .view-cart-button,
.tfc-best-selling .view-cart-button {
  display: none !important;
}

.carousel-nav,
.tfccarousel-nav {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 20;
  transition: all 0.3s ease;
  padding: 0 !important;
}

.carousel-nav:hover,
.tfccarousel-nav:hover {
  background: #ffd700;
  transform: translateY(-2px);
}

.carousel-nav.prev,
.tfccarousel-nav.prev {
  left: -2%;
}

.carousel-nav.next,
.tfccarousel-nav.next {
  right: -2%;
}


/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: white;
  width: 90%;
  max-width: 1100px;
  padding: 2rem;
  border-radius: 8px;
  max-height: 90vh;
  overflow-y: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-modal {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.6em 14.4px 0.4em 0.4em;
}

.quick-view-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}


/* quick view ajax handler */
.quick-view-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.product-images {
  position: relative;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.gallery-thumbs {
  display: flex;
  margin-top: 1rem;
}

.gallery-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
}

.gallery-thumbs img:hover {
  border-color: #ffe44d;
}

.product-info h2 {
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.product-info h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffb800 0%, rgba(255, 184, 0, 0) 100%);

}

.product-info .sku {
  color: #666;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-block: 1rem;
}

.product-info .price {
  border-bottom: 1px solid #eee;
  padding-block: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.quick-view-footer {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}

.shipping-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
}

.view-details a {
  color: #000 !important;
  font-weight: 600;
}

.view-details a:hover {
  color: #000 !important;
}

.product-details a {
  color: #000;
}
.tfc-rating-price{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-direction: row-reverse;
}
.product-details a:hover {
  color: #000;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 600;
}

.original-price {
  color: #666;
}

.key-features {
  margin: 1.5rem 0;
}

.key-features h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: .5rem;
}

.key-features ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.key-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 12px;
}

.key-features li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #fbbf24;
  border-radius: 50%;
}

/* .stock-status {
    font-weight: 600;
} */

.in-stock {
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
}

.out-of-stock {
  color: #d32f2f;
}


.quick-view-layout .cart {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-block: 2rem;
}


.product-info .qty {
  max-width: 120px;
  width: 100%;
  text-align: center;
  height: 48px;
}

.product-info .minus,
.product-info .plus {
  display: none;
}

.quantity-wrapper label {
  display: none !important;
}

.quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.quantity input {
  width: 60px;
  text-align: center;
  border: none;
  padding: 0.5rem;
}


.single_add_to_cart_button {
  flex: 1;
  background: #ffd700 !important;
  color: black !important;
  border: none !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.single_add_to_cart_button:hover {
  background: #ffe44d !important;
  transform: translateY(-2px);
}


/* latest blog posts css ------------------*/

.tfc-latest-blog {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 30px;
}

.tfc-our-blog-title {
  font-size: 2rem;
  margin-bottom: 2rem !important;
  width: 100%;
  text-align: center;
  font-weight: 500 !important;
  padding-bottom: 1rem;
  position: relative;
}

.tfc-our-blog-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #ffb800 0%, rgba(255, 184, 0, 0) 100%);
}

.tfc-blog-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
/*   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem 0; */
}

.tfc-blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.tfc-blog-card:hover {
  transform: translateY(-5px);
}

.tfc-blog-image {
  position: relative;
}

.tfc-blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tfc-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ffd700;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
}

.tfc-blog-content {
  padding: 1.5rem;
}

.tfc-blog-content h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.tfc-blog-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.tfc-blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.tfc-post-date {
  color: #666;
  font-size: 0.875rem;
}

.tfc-read-more {
  color: #333 !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.tfc-read-more:hover {
  text-decoration: none;
  color: #ffe44d !important;
}

/* single blog post */
.single-post .tfc-article {
  padding: 0;
}

/* category page css */
.custom-gallery-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 20px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.custom-gallery-container .owl-dots {
  display: none;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  transform-origin: center center;
  will-change: transform;
}

.zoom-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.zoom-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.gallery-thumbnails {
  max-width: 100%;
  margin-top: 20px;
  padding: 0 30px;
}

.gallery-thumbnails .owl-nav {
  position: absolute;
  top: 30%;
  width: 100%;
  transform: translateY(-50%);
  left: 0;
}

.archive .gallery-thumbnails .owl-nav.disabled {
  display: block !important;
}

.gallery-thumbnails .owl-prev,
.gallery-thumbnails .owl-next {
  position: absolute;
  margin: 0;
  background-color: #ffd700 !important;
  color: #000 !important;
  border-radius: 50% !important;
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
}

.gallery-thumbnails .owl-prev:hover,
.gallery-thumbnails .owl-next:hover {
  background-color: #ffe44d !important;
  color: #000 !important;
}

.gallery-thumbnails .owl-prev {
  left: -30px;
}

.gallery-thumbnails .owl-next {
  right: -30px;
}

.gallery-thumb {
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.7;
  border-radius: 8px;
}

.gallery-thumb.active {
  border-color: #ffd700;
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 1;
}

.tfc-product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  padding:0px 10px;
}

.tfc-product-count {
  font-weight: 500;
}

.woocommerce-ordering select.orderby {
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  min-width: 200px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.tfc-category-header-section {
  padding: 30px 0 40px;
  margin-bottom: 0px;
  border-bottom: 1px solid #eee;
}

.tfc-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  padding-inline: 1rem;
  max-width: 1400px;
  margin: 0 auto;
/*   padding: 0 2rem; */
}

.tfc-col-md-6 {
  position: relative;
  width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

.tfc-category-title {
  font-size:3rem;
  margin-bottom: 20px;

}

.tfc-category-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

span.tfc-price-value {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}

.woocommerce-edit-address .woocommerce .woocommerce-address-fields .button {
  padding: 12px 40px !important;
}


/* ----custom additional info search css----- */
.amana-search-title {
  display: block;
  margin-block: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.additional-info-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 20px;
}

.amana-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 0.9rem;
}

.amana-info-item .svg-icon {
  width: 20px;
  height: 20px;
  color: #ffd700;
}


/* product category filter section css */
.tfc-product-section {
  padding: 48px 0;
  background-color: #fff;
}

.tfc-row-filter-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 30px;
  /* padding: 0 1.875rem; */
}

.tfc-fibosearch-container {
  padding: 0 ;
}



.category-section {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  position: sticky; /* Re-add sticky to category-section */
  top: 20px; /* Re-add top property */
  height: fit-content;
}

.category-filter-desktop {
    align-self: flex-start; /* Important for sticky to work in a grid container */
}

.filter-group {
  margin-bottom: 25px;
}

.filter-title {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 15px;
  font-weight: 600;
  display: block;
}

.category-section ul li {
  list-style: none;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: max-content;
}

.tfc-filter-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.tfc-filter-group {
  margin-top: 25px;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: #ffd700;
}

.tfc-products .woocommerce-result-count {
  float: left;
}

.tfc-products .woocommerce-ordering {
  float: right;
}

.product-categories,
.parent-category,
.child-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 !important;
}

.archive .tfc-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
  margin-top: 3rem;
}

.tfc-products-grid .type-product .onsale {
  display: none;
}

.tfc-products-grid .type-product {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  list-style: none;
}

.tfc-products-grid .type-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tfc-products-grid .type-product a {
  position: relative;
}

.tfc-products-grid .type-product a img {
  width: 100%;
  border-radius: 8px;
}

.tfc-products-grid .type-product .woocommerce-loop-product__title {
  font-size: 1.2rem;
  margin-block: 12px;
  color: #000;
}

.tfc-products-grid .type-product .add_to_cart_button {
  width: 100%;
  padding: 12px;
  background: #ffd700;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
  text-align: center;
  color: #000 !important;
}

.tfc-products-grid .type-product .add_to_cart_button:hover {
  background: #ffe44d;
}

.tfc-products-grid .type-product .price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.tfc-products-grid .type-product .price .woocommerce-Price-amount bdi {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  background-color: inherit !important;
}

.tfc-products-grid .type-product .price del {
  color: #999;
  font-size: 0.9rem;
}

.tfc-products-grid .type-product .added_to_cart {
  margin: 1rem;
  display: block;
  background: black;
  color: white;
  text-align: center;
  padding: 0.5rem;
  border-radius: 5px;
}

.tfc-products-grid .review-pro-container {
  padding: 0;
  margin-inline: 0;
}

.tfc-products-grid .review-pro-reviews-summary {
  margin-bottom: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.tfc-products-grid .review-pro-reviews-summary:hover {
  transform: none;
  box-shadow: none;
}

.tfc-products-grid .review-pro-reviews-summary-left {
  padding-right: 0;
  border-right: none;
}

.tfc-products-grid .review-pro-overall-rating {
  padding: 0;
}

.tfc-products-grid .review-pro-rating-number {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0;
  line-height: normal;
  text-shadow: none;
}

.tfc-products-grid .review-pro-rating-stars {
  margin-bottom: 0;
  transform: none;
}

/* pagination css */
.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0 0;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
}

.woocommerce-pagination .page-numbers li span,
.page-numbers li a {
  margin-top: 0;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.woocommerce-pagination .page-numbers li span.current {
  background: #FFD700;
  border-color: #FFD700;
}


/* search-bar css start */
.dgwt-wcas-search-wrapp {
  margin: 0 0 1rem 0;
}

.dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  padding: 1.8rem 1rem 1.8rem 4rem;
  border: 1px solid #ddd;
  border-radius: 8px !important;
  -webkit-border-radius: 3px;
  -webkit-appearance: none;
}

.hero-blk-container .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{
  padding: 1.8rem 1rem 1.8rem 4rem;
  border-radius: 10px !important;
  font-size: 16px !important;
}

.hero-blk-container .dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier {
    left: 32px;
}

.dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier {
  left: 25px;
  fill: #000;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  box-shadow: none !important;
  border: none;
  background: #f5f5f5 !important;
}

/* time-saving search-bar */
.shortcode-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* stp hero search-bar css */
.pss-search-section .dgwt-wcas-search-form {
  background: #fff !important;
}

.pss-search-section .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  background: #fff !important;
}

.pss-search-section .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus {
  outline: none;
  border-color: #ffd700 !important;
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.1) !important;
}

/* ss-finder search-bar */
.tfc-ss-finder-search-container .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.1)
}

.tfc-ss-finder-search-container .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus {
  outline: none;
  border-color: #ffd700 !important;
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.1) !important;
}

.tfc-ss-finder-search-container .dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier {
  fill: #ffd700;
}




/* fibo search alignment */
.tfc_custom_fibo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.tfc_custom_fibo .tfc_custom_fibo_item:first-of-type {
  border-bottom: 1px solid #444140;
  padding-bottom: 1rem;
}

.tfc_custom_fibo_item,
.tfc_custom_fibo .tfc_custom_fibo_item div {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.tfc_custom_fibo_item p {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.dgwt-wcas-suggestion-nores p {
  font-size: 14px;
  padding: 0;
  margin: 0 0 10px;
  font-weight: 400;
  color: #666;
}

.tfc_custom_fibo_item h3 {
  font-size: 22px !important;
  text-align: center;
  margin-bottom: .5rem;
  font-weight: 400;
}

.tfc_custom_fibo_item a {
  margin-bottom: .5rem;
  padding: 10px 15px;
  background-color: #ffd700;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3sease;
  text-align: center;
  max-width: fit-content;
  font-weight: 500;
}


/* popular stove brand protectors slider btn css */
.tfc-subcategory-carousel-container .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  z-index: 2;
  transition: all 0.3sease;
  padding: 0 !important;
}

.tfc-subcategory-carousel-container .owl-carousel .owl-nav button.owl-prev,
button.owl-next {
  width: 50px;
  height: 50px;
  background-color: #ffd700 !important;
  color: #000000 !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  background-color: #ffd700 ;
  color: #000000 !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tfc-nav-button.tfc-prev {
  left: -24px !important;
}

.tfc-nav-button.tfc-next {
  right: -24px !important;
}

.tfc-subcategory-carousel-container .owl-next {
  position: absolute;
  left: 84.4rem;
  top: 0%;
}

/* blog next pre button  */
@media (max-width: 767px) {
.tfc-blog-grid .owl-nav .owl-next{
	position: absolute;
    right: -15px;
    top: 38%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    background-color:#ffffff !important;
}
	.tfc-blog-grid .owl-nav .owl-next:hover{
	background-color:#ffd700 !important;
}
.tfc-blog-grid .owl-nav .owl-prev{
	position: absolute;
    left: -15px;
    top: 38%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    background-color:#ffffff !important;
}
	.tfc-blog-grid .owl-nav .owl-prev:hover{
		background-color:#ffd700 !important;
	}
	.tfc-owl-prev , .tfc-owl-next{
		background-color:transparent !important;
        color:#000000 !important;
	}
.tfc-owl-prev , .tfc-owl-next:hover{
		background-color:transparent !important;
        color:#000000 !important;
	}
/* 	.owl-theme .owl-nav{
			color:#000000 !important;
	} */
	.tfc-category-slide .tfc-category-card {
		padding: 10px;
	}
.tfc-category-slide .tfc-category-card .tfc-category-image{
    padding: 10px;
}
.tfc-subcategory-carousel .tfc-category-slide {
    margin: 0 !important;
}

}


/* stove select your brand */
.brand-search-container {
  max-width: 650px;
  margin: 0 auto 30px;
}

.brand-search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: #202020;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#global-brand-search-input {
  flex: 1;
  border: none;
  background: transparent;
  color: #ffffff;
  padding: 10px 5px;
  font-size: 16px;
  outline: none;
}

#global-brand-search-input::placeholder {
  color: #aaaaaa;
}

#global-brand-search-button {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card.hidden {
  display: none;
}

.no-results-message {
  text-align: center;
  width: 100%;
  padding: 20px;
  font-size: 16px;
}

.brands-container {
  position: relative;
}



/* testimonial video block css */
.strong-view.wpmtst-modern .wpmtst-testimonial-content:before,
.strong-view.wpmtst-modern .wpmtst-testimonial-content:after {
  background: #ffd700 !important;
}

/* Quick View Gallery Styles */
.gallery-thumbs {
  display: flex;
  margin-top: 10px;
}

.thumb-item {
  margin: 5px;
  cursor: pointer;
}

.gallery-thumb {
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.gallery-thumb:hover {
  border-color: #ddd;
}

.gallery-thumb.active {
  border-color: #333;
}

.main-image-container {
  width: 100%;
}

#search_modal .dgwt-wcas-search-wrapp form,
.tfc_home_banner_search form {
  float: left !important;
  border-radius: 10px;
  max-width: -webkit-fill-available;
  padding: 1rem;
  background: #F9F9F9;
  border: 1px solid #d6dad4;
  outline: none;
}

#search_modal .dgwt-wcas-search-wrapp form input,
.tfc_home_banner_search form input {
  border-radius: 10px !important;
  border: none !important;
  background: #F9F9F9 !important;
  font-style: normal !important;
}

#search_modal .dgwt-wcas-search-wrapp form input:focus,
#tfc_banner .fl-module.fl-module-rich-text.tfc_banner_items_search form input,
.tfc_home_banner_search form input:focus {
  outline: none !important;
  box-shadow: none !important;
}

#search_modal .dgwt-wcas-search-wrapp form input::placeholder,
.tfc_home_banner_search form input::placeholder {
  font-style: normal !important;
}


/* cuatom row block css (about-us)*/
.tfc-aboutus-page .wp-block-my-theme-custom-row-block {
  background-color: #f6f6f6;
}

/* cuatom row block css (contact page)*/
.tfc-contact-page .custom-row-block div#gform_wrapper_1 {
  padding: 40px 40px 20px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.tfc-contact-page .custom-row-block .gform_heading {
  display: none;
}

.tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme .gfield_label {
  font-weight: 300;
  color: #444140;
}

.tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme input[type=text],
.tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme input[type=email],
.tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background-color: #f7f7f7;
}

.tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme input[type=text]:focus-visible,
.tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme input[type=email]:focus-visible,
.tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme textarea:focus-visible {
  border-color: #ee513b;
  outline: none !important;
}

.tfc-contact-page .custom-row-block .ginput_container.ginput_container_email:focus-visible,
.tfc-contact-page .custom-row-block .ginput_container.ginput_container_text:focus-visible,
.tfc-contact-page .custom-row-block .ginput_container.ginput_container_textarea:focus-visible {
  outline: 0 !important;
}

.tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme input[type=text]::placeholder,
.tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme input[type=email]::placeholder,
.tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme textarea::placeholder {
  color: #ddddddaf;
}

.tfc-contact-page .custom-row-block textarea#input_1_5 {
  overflow: auto;
  resize: vertical;
}

.tfc-contact-page .custom-row-block .gform-footer.gform_footer.top_label {
  justify-content: center;
}

.tfc-contact-page .custom-row-block input#gform_submit_button_1 {
  background: #ffd700;
  padding: 1rem 2rem;
  margin: auto;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tfc-contact-page .custom-row-block input#gform_submit_button_1:hover {
  background: #ffe44d;
}

.tfc-contact-page .custom-row-block p.has-text-align-center {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 40px;
  line-height: 1.8em;
  text-align: center;
}

.ss-contact-info .ss-info-item:nth-child(2) {
  display: none;
}

/* Mobile Filter Trigger */
.mobile-filter-trigger {
    display: none; /* Hidden by default on desktop */
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

.mobile-filter-trigger h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
}

.mobile-filter-trigger .open-filter-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-filter-trigger .open-filter-btn svg {
    width: 24px;
    height: 24px;
    color: #000;
}

/* Mobile Filter Sidebar */
.mobile-filter-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px; /* Adjust width as needed */
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    display: none; /* Hidden by default */
}

.mobile-filter-sidebar.open {
    transform: translateX(0);
}

.mobile-filter-sidebar .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: #f8f8f8;
}

.mobile-filter-sidebar .sidebar-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-filter-sidebar .sidebar-header .close-filter-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.mobile-filter-sidebar .sidebar-content {
    padding: 20px;
}

/* Mobile Filter Overlay */
.mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none; /* Hidden by default */
}

.mobile-filter-overlay.active {
    display: block;
}

/* Desktop filter visibility */
.category-filter-desktop {
    display: block; /* Shown by default on desktop */
}

/* Responsive visibility */
@media (max-width: 768px) {
    .category-filter-desktop {
        display: none; /* Hide desktop filter on mobile */
    }
    .mobile-filter-trigger {
        display: flex; /* Show mobile trigger on mobile */
    }
    .tfc-row-filter-wrap {
        grid-template-columns: 1fr; /* Stack filter and products on mobile */
    }
	.tfc-category-header-info .amana-search-title{
		display: none;
	}
	    .tfc-amana-hero-title .amana-brand {
        font-size: 48px !important;
    }
	.finder-section-blk .section-header {
    margin-bottom: 25px;
}
}

@media (min-width: 769px) {
    .mobile-filter-trigger,
    .mobile-filter-sidebar,
    .mobile-filter-overlay {
        display: none !important; /* Hide mobile elements on desktop */
    }
    .category-filter-desktop {
        display: block; /* Show desktop filter on desktop */
    }
    .tfc-row-filter-wrap {
        grid-template-columns: 380px 1fr; /* Original desktop layout */
    }
}

/* Fixed CSS for Accordion */
.tfc_faq_page .wrapper {
  display: flex;
  align-items: baseline;
}

.tfc_faq_page .flex_column {
  width: 450px;
  position: sticky;
  top: 10rem;
}

#gas-stove-shield-faqs h2 {
  margin: 2rem 0;
}

#ceramic-stove-shield-faqs h2 {
  margin: 2rem 0;
}

#general-faqs h2 {
  margin: 2rem 0;
}

.tfc-accordion-title {
  margin-left: 3rem;
  margin-bottom: 4rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion .tab {
  padding: 1.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion .tab .tab_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion .tab .tab_title h3 {
  color: #000;
  font-weight: 500;
  margin: 0;
  width: calc(100% - 30px);
}

.accordion .tab .content {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.accordion .tab .content.open {
  max-height: 1000px;
  /* Increased for longer content */
  padding: 1rem 0 0;
  visibility: visible;
}

.accordion .tab .tab_title svg {
  transition: transform 0.3s ease-in-out;
  min-width: 24px;
}

.accordion .tab .tab_title svg.opensvg {
  transform: rotate(45deg);
}

/* Link styles */
.section_1_faq .wrapper>.tfc-column ul li {
  position: relative;
  list-style: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.section_1_faq .wrapper>.tfc-column ul li a {
  color: #000000;
  font-weight: 500;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section_1_faq .wrapper>.tfc-column ul li.faq-link-open a {
  font-size: 1.5rem;
  color: #ffd700;
}


/* Account page css */
/* .woocommerce-MyAccount-navigation {
  float: left;
  width: 30%;
} */

.woocommerce-account .woocommerce table.shop_table th {
  font-weight: 600;
  padding: 9px 12px;
  line-height: 1.5em;
}

.woocommerce-account .woocommerce table.shop_table th span {
  color: #444140;
}

.woocommerce-account .woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 700;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.woocommerce-account .woocommerce table.shop_table tbody th a {
  color: #000;
}

.woocommerce-account .woocommerce table.shop_table tbody th a:hover {
  color: #444140;
}

.woocommerce-account .woocommerce table.shop_table {
  border: 1px solid rgba(0, 0, 0, .1);
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
  font-size: .85em;
}

.woocommerce-account .woocommerce table.shop_table td {
  border-top: 1px solid rgba(0, 0, 0, .1);
  padding: 9px 12px;
  vertical-align: middle;
  line-height: 1.5em;
  letter-spacing: .05em;
}

.woocommerce-account .woocommerce .woocommerce-customer-details address {
  font-style: normal;
  margin-bottom: 0;
  border: 1px solid rgba(0, 0, 0, .1);
  border-bottom-width: 2px;
  border-right-width: 2px;
  text-align: left;
  width: 100%;
  border-radius: 5px;
  padding: 6px 12px;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.woocommerce-account .woocommerce-customer-details .woocommerce-columns {
  display: flex;
  gap: 2rem;
}

.woocommerce-account .woocommerce-customer-details .woocommerce-column {
  width: 50%;
}

/* .woocommerce-MyAccount-content {
  float: right;
  width: 68%;
} */

.woocommerce-MyAccount-navigation ul {
  line-height: 2em;
}

.woocommerce-MyAccount-navigation ul li a {
  color: #000 !important;
}

.woocommerce-account .woocommerce table.shop_table td a.view {
  color: #000;
  background-color: #ffd700;
  border-radius: 5px;
  padding: 10px 40px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.woocommerce-account .woocommerce table.shop_table td a.view:hover {
  background-color: #ffe44d;
}


.woocommerce-MyAccount-content .woocommerce-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 3px solid #1e85be;
  background-color: #f6f5f8;
  padding: 1em 2em 1em 3.5em;
  margin: 0 0 2em;
  flex-wrap: wrap;
  gap: 1rem;
}

.woocommerce-MyAccount-content .woocommerce-info a.button {
  color: #000;
  background-color: #ffd700;
  border-radius: 5px;
  padding: 14px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.woocommerce-MyAccount-content .woocommerce-info a.button:hover {
  background-color: #ffe44d;
}

.woocommerce-MyAccount-content div.woocommerce-Addresses {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.woocommerce-MyAccount-content div.woocommerce-Addresses .u-column1.col-1.woocommerce-Address,
.woocommerce-MyAccount-content div.woocommerce-Addresses .u-column2.col-2.woocommerce-Address {
  width: 48%;
}

.woocommerce-MyAccount-content div.woocommerce-Addresses header.woocommerce-Address-title.title {
  box-shadow: none;
  border-bottom: 1px solid #eee;
  z-index: -1;
}

.woocommerce-MyAccount-content div.woocommerce-Addresses header.woocommerce-Address-title.title h2 {
  margin-bottom: 8px;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
}

.woocommerce-MyAccount-content div.woocommerce-Addresses header.woocommerce-Address-title.title a {
  float: inline-end;
}
.woocommerce-edit-address .tfc-account .woocommerce-Address .woocommerce-Address-title a{
  padding: 4px 12px !important;
    border-radius: 5px;
    background-color: #FFD700;
    font-size: 14px;
}
.woocommerce-MyAccount-content div.woocommerce-Addresses address {
  line-height: 2em;
  font-style: normal;
}

/* account detail css */
.woocommerce-MyAccount-content p.woocommerce-form-row.woocommerce-form-row--first.form-row.form-row-first,
.woocommerce-MyAccount-content p.woocommerce-form-row.woocommerce-form-row--last.form-row.form-row-last {
  width: 48%;
  margin-bottom: 8px !important;
}

.woocommerce-MyAccount-content form.woocommerce-EditAccountForm.edit-account input {
  border: 1px solid #000;
  border-radius: 4px;
  padding: 5px;
  width: 100%;
}

.woocommerce-MyAccount-content form.woocommerce-EditAccountForm.edit-account .password-input input[type=password] {
  padding-right: 2.5rem;
}

.woocommerce-MyAccount-content form .password-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.woocommerce-MyAccount-content form .show-password-input {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: #000;
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  position: absolute;
  right: .7em;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce-MyAccount-content form .show-password-input::after {
  font-family: WooCommerce;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  content: "👁";
  text-decoration: none;
  margin-left: 0;
  margin-top: -2px;
  vertical-align: middle;
  display: inline-block;
}

.woocommerce-MyAccount-content form .show-password-input.display-password::after {
  color: #585858;
}

.woocommerce-MyAccount-content form.woocommerce-EditAccountForm.edit-account input:focus-visible {
  outline: none;
  box-shadow: none;
}

.woocommerce-MyAccount-content input#account_display_name {
  width: 100%;
}

.woocommerce-MyAccount-content p.woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide input#account_display_name span {
  display: block;
}

.woocommerce-MyAccount-content label,
.woocommerce-MyAccount-content label {
  margin-bottom: 6px !important;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account p.woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide {
  margin-bottom: 8px !important;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button {
  color: #000;
  background-color: #ffd700;
  padding: 22px 40px;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button:hover {
  background-color: #ffe44d;
}

.woocommerce-MyAccount-content .woocommerce-message {
  background-color: #f6f5f8;
  color: #515151;
  border-top: 3px solid #8fae1b;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
  padding: 1em 2em 1em 3.5em;
  margin: 0 0 2em;
  position: relative;
}

.woocommerce-MyAccount-content .woocommerce-message::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f058";
  color: #8fae1b;
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 1.5em;
}

.tfc-account .woocommerce-notices-wrapper {
  padding: 0 !important;
}

.tfc-account .woocommerce-MyAccount-content p>mark.order-number,
.tfc-account .woocommerce-MyAccount-content p>mark.order-date,
.tfc-account .woocommerce-MyAccount-content p>mark.order-status {
  background: none;
  font-weight: 700;
}

/* order detail css */
.woocommerce-MyAccount-content h2 {
  text-transform: capitalize;
  font-weight: 400;
  color: #000;
  margin-bottom: .5rem;
 
}

.woocommerce-account .woocommerce .review-pro-edit-review .review-pro-form-row .button{
  padding: 16px 40px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info a .button {
   padding: 16px 40px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Button{
   padding: 12px 40px !important;
}
.woocommerce-account .woocommerce .woocommerce-form-login .form-row .woocommerce-form-login__submit{
    padding: 7px 40px !important; 
    border-radius: 5px !important;
}
.woocommerce-account .woocommerce .woocommerce-form-register .form-row  .woocommerce-form-register__submit{
   padding: 7px 40px !important; 
   border-radius: 5px !important;
}
.woocommerce-MyAccount-navigation ul li a {
        display: flex;
        align-items: center;
        padding: 10px 15px;
    }
    
    .woocommerce-MyAccount-navigation-link--dashboard a:before {
        content: "📊";
        margin-right: 8px;
        font-size: 16px;
    }
    
    .woocommerce-MyAccount-navigation-link--orders a:before {
        content: "🛒";
        margin-right: 8px;
        font-size: 16px;
    }
    
    .woocommerce-MyAccount-navigation-link--reviews a:before {
        content: "⭐";
        margin-right: 8px;
        font-size: 16px;
    }
    
    .woocommerce-MyAccount-navigation-link--downloads a:before {
        content: "⬇️";
        margin-right: 8px;
        font-size: 16px;
    }
    
    .woocommerce-MyAccount-navigation-link--edit-address a:before {
        content: "🏠";
        margin-right: 8px;
        font-size: 16px;
    }
    
    .woocommerce-MyAccount-navigation-link--edit-account a:before {
        content: "👤";
        margin-right: 8px;
        font-size: 16px;
    }
    
    .woocommerce-MyAccount-navigation-link--customer-logout a:before {
        content: "🚪";
        margin-right: 8px;
        font-size: 16px;
    }

.woocommerce-order-details td.woocommerce-table__product-name.product-name a,
.woocommerce-order-details td.woocommerce-table__product-name.product-name a:hover {
  color: #000;
}

.woocommerce-order-details p.order-again .button,
.woocommerce-order-details .review-pro-product-actions .button {
  color: #000;
  background-color: #ffd700;
  padding: 12px 40px;
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 5px;
}

.woocommerce-order-details p.order-again .button:hover,
.woocommerce-order-details .review-pro-product-actions .button:hover {
  background-color: #ffe44d;
}

/* login-register css */
.tfc-account .custom-row-block {
  /* max-width: 90% !important; */
  margin: 0 auto !important;
}

.tfc-account .col2-set {
  width: 100%;
}

.tfc-account .col2-set .u-column1.col-1 {
  float: left;
  width: 48%;
}

.tfc-account .col2-set .u-column2.col-2 {
  float: right;
  width: 48%;
}

.tfc-account .col2-set .u-column1.col-1 h2,
.tfc-account .col2-set .u-column2.col-2 h2 {
  font-weight: 400;
}

.tfc-account .col2-set form.login,
.tfc-account .col2-set form.register {
  border: 1px solid #cfc8d8;
  padding: 20px;
  margin: 2em 0;
  text-align: left;
  border-radius: 5px;
}

.tfc-account .col2-set form label {
  margin-bottom: .5rem;
}

.tfc-account .col2-set form .form-row .input-text {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  padding: .5em;

}

.tfc-account .col2-set form .password-input input[type=password] {
  padding-right: 2.5rem;
}

.tfc-account .col2-set form .password-input {
  position: relative;
}

.tfc-account .col2-set form .show-password-input {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: #000;
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  position: absolute;
  right: .7em;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
}

.tfc-account .col2-set form .show-password-input::after {
  font-family: WooCommerce;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  content: "👁";
  text-decoration: none;
  margin-left: 0;
  margin-top: -2px;
  vertical-align: middle;
  display: inline-block;
}

.tfc-account .col2-set .show-password-input.display-password::after {
  color: #585858;
}

.tfc-account .col2-set form button[type="submit"],
.tfc-account form.woocommerce-ResetPassword.lost_reset_password button[type="submit"] {
  color: #000 !important;
  background-color: #ffd700 !important;
  border-radius: 0px !important;
  padding: 22px 40px;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.woocommerce-ResetPassword p.woocommerce-form-row.woocommerce-form-row--first.form-row.form-row-first {
    float: none;
}

.woocommerce-ResetPassword .woocommerce-form-row .woocommerce-Input {
    margin-top: 10px;
    padding: 12px;
}

.tfc-account .col2-set form button[type="submit"]:hover,
.tfc-account form.woocommerce-ResetPassword.lost_reset_password button[type="submit"]:hover {
  background-color: #ffe44d !important;
}

.tfc-account .col2-set form .form-row:nth-child(3) {
  display: flow-root;
}

.tfc-account form.woocommerce-ResetPassword.lost_reset_password .form-row-first {
  width: 47%;
}

.tfc-account .woocommerce-notices-wrapper .woocommerce-error {
  background-color: #f6f5f8;
}

/* my-reviews css */
.review-pro-my-account-reviews .review-pro-review-product a {
  color: #1e85be !important;
}

.review-pro-my-account-reviews .review-pro-review-actions .button,
.woocommerce-MyAccount-content .review-pro-edit-review a.button,
.woocommerce-MyAccount-content .review-pro-edit-review .review-pro-form-row .button {
  color: #000;
  background-color: #ffd700;
  padding:22px 40px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.review-pro-my-account-reviews .review-pro-review-actions .button:hover,
.woocommerce-MyAccount-content .review-pro-edit-review a.button:hover,
.woocommerce-MyAccount-content .review-pro-edit-review .review-pro-form-row .button:hover {
  background-color: #ffe44d;
}

/* downloads my account */
.woocommerce-MyAccount-content .woocommerce-info::after {
  display: none;
}



/*----- sub-menu display on mobile -------*/
.menu-item-has-children {
  position: relative;
}

.submenu-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.submenu-toggle i {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  /* Default state is 0 degrees */
}

.menu-item-has-children>ul {
  display: none;
  padding-left: 20px;
  /* Important: Position the submenu as part of the normal flow */
  position: static;
  background: rgba(0, 0, 0, 0.05);
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  margin: 5px 0 5px 10px;
}

.menu-item-has-children.submenu-open>ul {
  display: block;
}

.product-carousel-wrapper .carousel-nav {
  top: 38%;
}
.woocommerce-product-gallery__image.flex-active-slide {
    min-height: auto !important;
}
.single-product div.product .woocommerce-product-gallery {
    margin-top: 1.5em;
}
.tfc-meta-value{
	    padding: 6px 12px;
    background: #f0f0f0;
    color: var(--text-primary);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 12px;
}


/* Responsivenss of Tab screen */
@media (max-width: 1024px) {
  .tfc_faq_page .tfc-column {
    position: unset !important;
}
  header {
    position: sticky;
    top: 0;
  }
  .tfc-product-header {
    display: flex;
    gap: 10px;
  }
  .head_nav_container .navbar_menu ul .sub-menu{
    position: inherit;
    visibility: visible;
    box-shadow: none;
    transform: none;
  }
.radio-toggle-buttons{
		margin-bottom:0px !important;
	}
.tfc-row-filter-wrap {
		gap:20px;
	}
.product_title {
		font-size:24px;
	}
.tfc-product-section {
    padding: 30px 16px 30px 16px !important;
    }
  .head_nav_container .actions .account,
  .head_nav_container .actions .searchbar {
    display: none;
  }

  .head_nav_container .actions {
    flex-direction: row-reverse;
    flex: auto;
  }
.head_nav_container{
    padding: 10px 1rem;
    gap: 10px;
  }

  .head_nav_container .actions .find-ss-btn-hdr a {
    padding: 10px 10px;
  }

  .tfc-breadcrumb {
    padding-inline: 1rem;
  }
  
  /* Hamburger button styling */
  .hamburger-menu {
    display: block;
  }

  .hamburger-button {
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
    align-items: center;
  }

  .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    display: block;
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  /* Hamburger animation when open */
  .hamburger-button.menu-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger-button.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-button.menu-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Menu overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    opacity: 1;
  }

  /* Main navigation container - MOBILE ONLY */
  .head_nav_container .navbar_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: block;
    padding-top: 27px;
  }
  .head_nav_container .tfc-filter-img{
    padding-left: 10px;
    width: 55%;
    display: block;
  }

  /* Close button */
  .close-menu-btn {
    position: absolute;
    top: 20px;
    right: 5px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
  }

  .close-menu-btn:hover {
    background-color: #f0f0f0;
    color: #333;
  }

  /* Hide desktop menu, show mobile menu */
  ul#primary-menu {
    display: none !important;
  }

  ul#mobile-menu {
    display: block !important;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  /* Menu items styling */
  .navbar_menu ul {
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .navbar_menu li {
    text-align: left;
    position: relative;
  }

  /* Menu item links */
  .head_nav_container .navbar_menu ul li > a {
    color: #333 !important;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    width: 100%;
    text-transform: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    	-webkit-tap-highlight-color: transparent;
  }

  .head_nav_container .navbar_menu ul li:last-child > a {
    border-bottom: none;
  }

  .head_nav_container .navbar_menu ul li > a:hover {
    background-color: #f8f9fa;
  }

  /* Submenu toggle button */
  .submenu-toggle {
    cursor: pointer;
    padding: 5px;
    color: #666;
    transition: transform 0.3s ease, color 0.2s ease;
    font-size: 14px;
  }

  .submenu-toggle:hover {
    color: #333;
  }

  /* Submenu styling */
  .head_nav_container .navbar_menu ul .sub-menu {
    background-color: #f8f9fa !important;
    width: 100%;
    padding: 0;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    border-top: 1px solid #e9ecef;
    display: block;
  }

  .menu-item-has-children.submenu-open .sub-menu {
    max-height: 500px;
    opacity: 1;
  }

  .head_nav_container .navbar_menu ul .sub-menu li {
    border-bottom: 1px solid #e9ecef;
  }

  .head_nav_container .navbar_menu ul .sub-menu li:last-child {
    border-bottom: none;
  }

  .head_nav_container .navbar_menu ul .sub-menu li > a {
    color: #555 !important;
    padding: 15px 20px 15px 20px;
    font-size: 15px;
    font-weight: 400;
    border-bottom: none !important;
    text-transform: capitalize;
  }

  .head_nav_container .navbar_menu ul .sub-menu li > a:hover {
    background-color: #e9ecef;
    color: #333 !important;
  }

  /* Remove default dropdown arrow */
  .navbar_menu .menu-item-has-children > a::after {
    display: none;
  }

  /* Mobile menu products section */
  .mobile-menu-products {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
  }

  .mobile-menu-products h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
  }

  .mobile-product-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-product-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-product-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
  }

  .mobile-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-product-badge {
    position: absolute;
    top: 0px;
    left: 5px;
    background: #ff4757;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
  }

  .mobile-product-info {
    flex: 1;
  }

  .mobile-product-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
  }

  .mobile-product-description {
    margin: 8px 0 4px 0 !important;
    font-size: 14px;
    color: #474747;
    line-height: 1.3;
    font-weight: 600;
  }

  .mobile-product-price {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-top: 8px;
  }

  .mobile-btn-buy {
    background: #000;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    transition: background-color 0.2s ease;
  }

  .mobile-btn-buy:hover {
    background: #FFD700;
    color: #000000;
  }

  /* Smooth scrolling for menu */
  .navbar_menu {
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
  }

  .navbar_menu::-webkit-scrollbar {
    width: 4px;
  }

  .navbar_menu::-webkit-scrollbar-track {
    background: transparent;
  }

  .navbar_menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
  }

  .navbar_menu::-webkit-scrollbar-thumb:hover {
    background: #999;
  }


  .tfc-best-selling-titlte {
    font-size: 1.75rem;
  }

  .tfc-best-selling-subtitle {
    font-size: 1.125rem;
  }

  .tfc-best-selling {
    padding: 30px 16px;
  }

  .tfc-popular-ss-model-wrapper {
    padding: 3rem 1rem;
  }

  .popular-brand-title {
    font-size: 1.75rem !important;
  }

  .quick-view-layout {
    grid-template-columns: 1fr;
  }

  .tfc-popular-ss-model-title {
    font-size: 1.75rem;
  }

  .quick-view-layout {
    grid-template-columns: 1fr;
  }

  .gallery-thumbs img {
    width: 60px;
    height: 60px;
  }

  

  /* Responsive settings */
  .tfc-latest-blog {
    padding: 48px 16px;
  }

  .gallery-thumbnails {
    padding: 0 20px;
  }


  .gallery-thumbnails .owl-nav {
    top: 12%;
  }

  .gallery-thumb img {
    width: 60px;
    height: 60px;
  }

  .tfc-row {
    flex-direction: column;
    padding: 0 1rem !important;
  }

  .tfc-col-md-6 {
    width: 100%;
  }

  .tfc-row-filter-wrap {
    grid-template-columns: 1fr;
  }


  /* Fix for media queries */
  .tab_title h3 {
    font-size: 20px;
  }

 

  .tfc-accordion-title {
    margin-left: 0rem;
    margin-bottom: 1rem;
  }

  .tfc_faq_page .flex_column {
    margin-left: 0;
    margin-bottom: 0;
  }

  .section_1_faq .wrapper>.column {
    position: static;
  }

  #general-faqs h2,
  #gas-stove-shield-faqs h2,
  #ceramic-stove-shield-faqs h2 {
    margin: 1rem 0;
  }

  .section_1_faq .wrapper .faq_container .column {
    padding-top: 30px;
  }

  .accordion .tab {
    padding: 1rem;
  }

  .dgwt-wcas-om-bar.js-dgwt-wcas-om-bar .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    padding: 10px 15px 10px 40px;
    border-radius: 0 !important;
  }

  .dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier {
    left: 14px;
  }

  .brand-protectors-container {
    padding: 3rem 1rem;
  }

  /* .tfc-row-filter-wrap {
    padding: 0 1rem;
  } */

  .tfc-account .custom-row-block {
    max-width: 100% !important;
    padding-inline: 16px !important;
  }

  .tfc-products-grid .review-pro-reviews-summary-left {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }

  .tfc-contact-page .custom-row-block div#gform_wrapper_1 {
    padding: 20px 0;
  }

  .tfc-contact-page .custom-row-block p.has-text-align-center {
    padding: 0;
  }

  .tfc-contact-page .custom-row-block {
    padding: 10px 16px !important;
  }

  /* .tfc-amana-hero-title .amana-brand {
    display: unset !important;
  } */
.single-product div.product .woocommerce-product-gallery {
    margin-top: 0;
}
}

@media (max-width: 768px) {
.tfc-amana-hero-title{
  margin-bottom:5px !important;	
font-size:36px;
text-align:center;
}
.archive .tfc-popular-brands-carousel {
		    padding: 20px 0px 30px 0px !important;
	}
.tfc-gas-description .custom-cat-section {
    padding: 30px 0px !important;
}
.tfc-container {
		padding:30px 20px !important;
	}
    .tfc-latest-blog {
        padding: 10px 30px;
    }
.tfc-category-header-info .tfc-starting-price{
	text-align:center;
}
}
/* Responsivenss of Mobile screen */
@media (max-width: 480px) {
	.tfc-amana-hero-title{
		font-size:24px;
	}
  .tfc-product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  padding: 1.8rem 1rem 1.8rem 2.5rem;
  }
  .admin-bar header {
    top: 0;
  }
  .product_title {
		font-size:20px !important;
       line-height:1.5;
	}
.tfc-pagination {
    margin: 20px 0 0 0;
}
.tfc-filter-group {
    margin-top: 0px;
}
  .logo_stove_shield {
    width: 145px;
  }

  .head_nav_container .actions {
    gap: 0;
  }
	.benefits-header {
		margin-bottom:24px;
	}
  .head_nav_container .actions .find-ss-btn-hdr a {
    padding: 7px 8px;
        font-size: 10px;
        font-weight: 600;
  }

  nav.navbar_menu {
    width: 80%;
  }

  .brand-protectors-container {
    padding:30px 16px !important;
  }

  .quick-view-footer {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 20px;
  }

  .current-price {
    font-size: 1rem;
  }

  .close-modal {
    right: 10px;
    top: 0px;
    padding: 0;
    z-index: 1;
  }


  .tfc-latest-blog {
    padding: 30px 16px;
  }

  .tfc-our-blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }


  .custom-gallery-container {
    padding: 0 12px 20px;
  }

  .tfc-col-md-6 {
    padding-right: 0;
    padding-left: 0;
  }
	

  .custom-gallery-container button.owl-next {
    margin-right: 12px !important;
  }

  .custom-gallery-container button.owl-prev {
    margin-left: 12px !important;
  }

  .tfc-contact-page .custom-row-block div#gform_wrapper_1 {
    max-width: 100%;
  }

  .tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme input[type=text],
  .tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme input[type=email],
  .tfc-contact-page .custom-row-block .gform_wrapper.gravity-theme textarea {
    padding: 10px;
  }

  .accordion .tab .tab_title h3 {
    font-size: 0.875rem;
    width: 85%;
  }

  .section_1_faq .wrapper .faq_container {
    gap: 1rem;
  }

  .section_1_faq .wrapper>.column ul li a {
    font-size: 0.875rem;
  }

  .section_1_faq .wrapper li.faq-link-open a {
    font-size: 0.95rem !important;
  }

  .archive .tfc-products-grid {
    margin-top: 1rem;
  }

  /* responsiveness of my account page- orders */
  .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }

  .woocommerce-account .woocommerce-customer-details .woocommerce-columns {
    flex-direction: column;
  }

  .woocommerce-account .woocommerce-customer-details .woocommerce-column {
    width: 100%;
  }

  .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
  }

  .tfc-account div.woocommerce {
    flex-direction: column;
    max-width: 100%;
  }

  .woocommerce-MyAccount-content div.woocommerce-Addresses {
    flex-direction: column;
  }

  .woocommerce-MyAccount-content div.woocommerce-Addresses .u-column1.col-1.woocommerce-Address,
  .woocommerce-MyAccount-content div.woocommerce-Addresses .u-column2.col-2.woocommerce-Address {
    width: 100%;
  }

  .tfc-account .custom-row-block {
    max-width: 100% !important;
    padding-inline: 16px !important;
  }

  .tfc-account .col2-set .u-column1.col-1 {
    float: none;
    width: 100%;
  }

  .tfc-account .col2-set .u-column2.col-2 {
    float: right;
    width: 100%;
  }

  .tfc-account form.woocommerce-ResetPassword.lost_reset_password .form-row-first {
    width: 100%;
  }

  .modal-content {
    padding: 1rem;
  }

  .quick-view-layout .product-info h2 {
    font-size: 1rem;
  }

  .quick-view-layout .price-wrapper {
    gap: .5rem;
  }

  .additional-info-wrap {
    justify-content: space-between;
  }

  .amana-info-item {
    font-size: .6rem;
  }
  .owl-item .product-item:hover{
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
  }
.tfc-global-container .tfc-col-12 .carousel-heading {
        font-size: 24px !important;
    }
	.popular-brand-title {
		font-size:1.5rem !important;
	}
.tfc-best-selling-titlte {
        font-size: 1.5rem !important;
    }
	.cta-block>span {
		font-size: 1.5rem !important;
	}
	.protection-solutions__subtitle {
		font-size:1.125rem;
	}
	.tfc-ss-contact-heading {
		font-size:1.5rem;
	}
	.tfc-ss-contact-text {
		font-size:1.125rem;
	}
.radio-toggle-buttons {
    margin-bottom: 0px !important;
	}
	.tfc-col-md-6 {
		   margin-bottom: 0px !important;
	}
	.tfc-product-section {
		padding: 30px 20px !important;
	}
  .woocommerce-shop .tfc-product-section {
    		padding:0px 20px 30px 20px !important;
  }
    .summary .product_title {
        font-size: 1.5rem !important;
    }
	.price-card-section {
		padding:12px !important;
	}
	.tfc-amana-protector-section h2 {
		font-size:1.5rem !important;
       margin-bottom:20px !important;
	}
	.tfc-amana-protector-section p{
		margin-bottom:10px !important;
	}
	.single-product .siderOuter {
		padding: 1rem 0rem !important;
	}
	.tfc-ss-finder-container .tfc-ss-finder-title {
        padding-bottom:0px !important;
    }
	#post-41 .wp-block-my-theme-custom-row-block {
		margin-top:30px;
	}
	#post-43 .wp-block-my-theme-custom-row-block{
		margin-top:30px;
	}
}









/* customer-reviews-display css */
.review-pro-theme-light {
  background-color: inherit !important;
  color: #ffff !important;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.review-pro-theme-light .review-pro-category-review-item {
  background-color: inherit !important;
}

.review-pro-category-reviews-carousel {
  padding: 0;
}

.review-pro-category-reviews-header,
.review-pro-category-rating {
  display: none;
}

.review-pro-category-reviews-carousel-nav {
  display: none;
}

.review-pro-category-reviews[data-grid="4"] .review-pro-category-review-item {
  flex: 6 0 calc(100% - 30px) !important;
  align-self: center;
}

.review-pro-category-stats {
  margin-bottom: 0;
}

.review-pro-category-review-text {
  font-style: normal;
}

.review-pro-category-review-item {
  border: none !important;
  padding: 0 !important;
}

.review-pro-category-review-author,
.review-pro-category-review-author-info {
  gap: .3rem;
}

.review-pro-category-review-author-name {
  font-size: 1rem;
  color: #ffd700;
}

.review-pro-theme-light .review-pro-category-review-author-verified {
  color: #D1D5DB;
  font-size: .9rem;
}

.review-pro-category-review-item:hover {
  border-color: none !important;
  transform: none;
  box-shadow: none;
}





/* pop-up search modal in header */
.search-modal-content .dgwt-wcas-search-wrapp {
  margin: 0 !important;
}

.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: slideDown 0.3s ease-in-out;
}


@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}


.search-modal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.search-input-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 75%;
}


#searchInput {
  width: 100%;
  padding: 12px 50px 12px 55px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

#searchInput:focus {
  border-color: #555;
}

.close-btn {
  position: absolute;
  right: -12%;
  background: #ffe44d;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.close-btn:hover {
  background-color: #eee;
}

/* Style for the search icon in the header */
.searchbar {
  cursor: pointer;
  padding: 8px;
}

.searchbar i {
  font-size: 18px;
  color: #333;
  transition: color 0.3s;
}

.searchbar:hover i {
  color: #000;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
.tfc_faq_page .wrapper {
  flex-direction: column;
  margin-top: 40px;
}
    .section_1_faq .wrapper .faq_container .column {
        padding-top: 0px;
    }

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.tfc-amana-hero-title{
  margin-bottom:5px !important;	
}
    .finder-section-blk {
        padding: 0px !important;
    }
.tfc-category-header-section {
    margin-bottom: 30px !important;
    padding: 30px 0 30px;
  }
	.radio-toggle-buttons {
		margin-bottom:0px !important;
	}
.tfc-product-section {
    padding: 0px 16px 30px 16px !important;
    }
	.tfc-row-filter-wrap {
		gap:20px;
	}
	.archive .tfc-popular-brands-carousel {
		    padding: 20px 0 20px 0px !important;
	}

  .tfc-popular-brands-carousel .tfc-global-container{
     padding: 20px 0 20px 0px !important;
  }
      .tfc-installation-heading {
        padding: 20px 25px 20px 25px;
    }

.tfc-subcategory-carousel .owl-stage-outer {
    padding: 0rem 0;
}
.tfc-gas-description .custom-cat-section {
    padding: 30px 0 !important;
}
.tfc-stove-shield-block {
    padding: 30px 0px 20px 0 !important;
	}
	.tfc-container {
		padding:0px 20px !important;
	}
}

/* Mobile Sticky Filter Bar Styles */
.mobile-sticky-filter-bar {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 15px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}
.tfc-filter-img{
  width: 48%;
}

.mobile-sticky-filter-bar.show {
    transform: translateY(0);
}

.filter-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 100%;
}

.filter-toggle-btn {
    background: #ffd700;
    color:#000000;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.filter-toggle-btn:hover {
    background: rgb(255, 228, 77);;
}

.filter-toggle-btn i {
    font-size: 14px;
}

.filter-results-count {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

/* Mobile Filter Sidebar */
.mobile-filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-filter-sidebar.show {
    transform: translateX(0);
}

.filter-sidebar-header {
    padding: 20px 15px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    position: sticky;
    top: 0;
    z-index: 10;
}

.filter-sidebar-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.close-filter-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-filter-btn:hover {
    background: #e9ecef;
    color: #333;
}

.filter-sidebar-content {
    padding: 20px 15px 80px;
}

.filter-sidebar-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.apply-filters-btn {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.apply-filters-btn:hover {
    background: #218838;
}

/* Filter Overlay */
.mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-filter-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Hide desktop filter on mobile */
@media (max-width: 600px) {
    .tfc-category-filter {
        display: none !important;
    }
    
    
    /* Adjust body padding when sticky bar is visible */
    /* body.sticky-filter-active {
        padding-top: 60px;
    } */
    
    /* Ensure mobile filter content is styled properly */
    .mobile-filter-sidebar .tfc-filter {
        margin: 0;
        padding: 0;
    }
    
    .mobile-filter-sidebar .tfc-sidebar {
        margin: 0;
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
    }
    
    .mobile-filter-sidebar .tfc-filter-group {
        margin-bottom: 25px;
    }
    
    .mobile-filter-sidebar .tfc-filter-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 12px;
        display: block;
    }
    
    .mobile-filter-sidebar .tfc-filter-options {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-filter-sidebar .tfc-filter-options li {
        margin-bottom: 8px;
    }
    
    .mobile-filter-sidebar .clickable-category {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }
    
    .mobile-filter-sidebar .clickable-category:hover {
        background: #f8f9fa;
        border-radius: 4px;
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .mobile-filter-sidebar .checkbox-label-text {
        display: flex;
        align-items: center;
        cursor: pointer;
        font-size: 14px;
        color: #555;
    }
    
    .mobile-filter-sidebar .tfc-checkmark {
        width: 18px;
        height: 18px;
        border: 2px solid #ddd;
        border-radius: 3px;
        margin-right: 12px;
        position: relative;
        transition: all 0.2s ease;
    }
    
    .mobile-filter-sidebar .brand-filter-checkbox:checked + .checkbox-label-text .tfc-checkmark {
        background: #ffd700;
        border-color: #ffd700;
    }
    
    .mobile-filter-sidebar .brand-filter-checkbox:checked + .checkbox-label-text .tfc-checkmark::after {
        content: '✓';
        position: absolute;
        color:#000;
        font-size: 20px;
        top: 50%;
        left: 50%;
        font-weight: bolder;
        transform: translate(-50%, -50%);
    }
    
    .mobile-filter-sidebar .brand-filter-checkbox {
        display: none;
    }
    
    .mobile-filter-sidebar .brand-name {
        flex: 1;
        font-weight: 500;
    }
    
    /* Fibosearch styling in mobile filter */
    .mobile-filter-sidebar .tfc-fibosearch-container {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }
}

/* Hide mobile filter elements on desktop */
@media (min-width: 601px) {
    .mobile-sticky-filter-bar,
    .mobile-filter-sidebar,
    .mobile-filter-overlay {
        display: none !important;
    }
}

/* Animation for smooth transitions */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutToLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Additional mobile responsive adjustments */
@media (max-width: 480px) {
  .mobile-sticky-filter-bar {
    border-bottom:none; 
  box-shadow: none;
  width: 100%;
  
  }
  
    .filter-bar-content {
        padding: 0;
    }
    .search .tfc-product-section {
    padding: 30px 16px 30px 16px !important;
    }
    .mobile-filter-sidebar .tfc-fibosearch-container {
        padding-bottom: 0px;
    }
    .filter-toggle-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .filter-results-count {
        font-size: 12px;
    }
    
    .mobile-filter-sidebar {
        width: 90%;
    }
    
    .filter-sidebar-header {
        padding: 15px;
    }
    
    .filter-sidebar-header h3 {
        font-size: 16px;
    }
    
    .filter-sidebar-content {
        padding: 15px;
    }
    .tfc-amana-hero-title .amana-brand {
        font-size: 56px !important;
    }
}

/*========================================================================== cart css============================================================= */

/* TFC Desktop Special Offers Section Styles */

.tfc-special-offers-box {
    margin-top: 30px;
}

.tfc-special-offers-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tfc-special-offers-box h3 span {
    font-size: 20px;
    margin-right: 8px;
}

.tfc-special-offers-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Buy 2 Get 1 Free Offer */
.tfc-offer-buy2get1 {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #ffffff, #ffeaa7);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #f5e7a1;
    text-align: center;
   
}
.tfc-offer-buy2get1:hover{
 box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.tfc-offer-buy2get1 h4 {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    justify-content: center;
}

.tfc-offer-buy2get1 h4 span {
    font-size: 18px;
    margin-right: 8px;
}

.tfc-offer-buy2get1 p {
    margin: 0 0 8px;
    color: #555;
    font-size: 14px;
}

.tfc-offer-buy2get1 .save-badge {
    font-size: 12px;
    background: #f39c12;
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: bold;
}

/* Free Express Shipping Offer */
.tfc-offer-express {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #e8f4ff, #74b9ff);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #b3dbff;
    text-align: center;
 
}
.tfc-offer-express:hover{
   box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.tfc-offer-express h4 {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    justify-content: center;
}

.tfc-offer-express h4 span {
    font-size: 18px;
    margin-right: 8px;
}

.tfc-offer-express p {
    margin: 0 0 8px;
    color: #555;
    font-size: 14px;
}

.tfc-offer-express .qualified-badge {
    font-size: 12px;
    background: #00b894;
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: bold;
}

/* OvenShield Add-on Offer */
#tfc-desktop-ovenshield {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, #f5f0ff, #a29bfe);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #cdb7f0;

}
#tfc-desktop-ovenshield:hover{
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.tfc-ovenshield-content label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.tfc-ovenshield-content input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 4px;
    transform: scale(1.2);
}

.tfc-ovenshield-content strong {
    color: #333;
    font-size: 14px;
}

.tfc-ovenshield-content p {
    margin: 8px 0;
    color: #555;
    font-size: 13px;
    line-height: 1.4;
}

.tfc-ovenshield-content .price-section {
    margin-top: 10px;
}

.tfc-ovenshield-content .price-section del {
    color: #999;
    font-size: 14px;
}

.tfc-ovenshield-content .price-section .sale-price {
    color: #e74c3c;
    font-size: 16px;
    margin-left: 8px;
    font-weight: bold;
}

/* Loading and Success States */
.tfc-ovenshield-loading {
    text-align: center;
    padding: 20px;
}

.tfc-ovenshield-success {
    text-align: center;
    padding: 20px;
    color: #00b894;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tfc-special-offers-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .tfc-offer-buy2get1,
    .tfc-offer-express,
    #tfc-desktop-ovenshield {
        min-width: 100%;
        flex: none;
    }
    .fc-post-grid {
  display: grid;
  grid-template-columns: 1fr !important;
}
}
/* Animation for fade in/out */
.tfc-fade-in {
    animation: tfcFadeIn 0.3s ease-in;
}

.tfc-fade-out {
    animation: tfcFadeOut 0.3s ease-out;
}

@keyframes tfcFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tfcFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}



.fc-archive-header{
  position: unset !important;
  box-shadow: none !important;
}
.fc-post-thumb img{
  width:100%;
  border-radius: 5px;
}
.fc-category-page {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
.fc-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fc-post-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
  transition: 0.3s;
}
.fc-post-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.fc-post-title {
  font-size: 18px;
  margin-top: 10px;
}


/* thankyou page css */

.woocommerce-order-received .woocommerce {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.woocommerce-order-received .woocommerce-order {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    animation: fadeInUp 0.6s ease-out;
}

.woocommerce-order-received .woocommerce-notice--success {
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
}

.woocommerce-order-received .woocommerce-order .woocommerce-notice {
    text-align: center;
    font-size: 1.2rem;
    margin: 10px 0 30px 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 25px;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    border: none;
    font-weight: 600;
}

.woocommerce-order-received .woocommerce-order p {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin: 10px 0;
    line-height: 1.6;
}

.woocommerce-order-received .woocommerce-order-overview {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    background: #f8f9fa;
    border-radius: 12px;
    border: none;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.woocommerce-order-received .woocommerce-order-overview li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.woocommerce-order-received .woocommerce-order-overview li:hover {
    background-color: #f1f3f4;
}

.woocommerce-order-received .woocommerce-order-overview li:last-child {
    border-bottom: none;
}

.woocommerce-order-received .woocommerce-order-overview li strong {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.woocommerce-order-received .woocommerce-order-overview li span:last-child {
    color: #333;
    font-weight: 500;
}

/* Order Details Title */
.woocommerce-order-received .woocommerce-order-details__title {
    font-size: 1.5rem;
    color: #333;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-weight: bold;
    position: relative;
}

.woocommerce-order-received .woocommerce-order-details__title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

/* Order Details Table */
.woocommerce-order-received .woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.woocommerce-order-received .woocommerce-table--order-details th,
.woocommerce-order-received .woocommerce-table--order-details td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.woocommerce-order-received .woocommerce-table--order-details thead th {
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-order-received .woocommerce-table--order-details tbody tr:hover {
    background-color: #f8f9fa;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name a:hover {
    color: #ffd700;
    text-decoration: none;
}

.woocommerce-order-received .woocommerce-table--order-details .product-quantity {
    color: #666;
    font-weight: 500;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot th {
    color: #333;
    font-weight: 500;
    background: #f8f9fa;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot .order-total th {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    border-top: 2px solid #ffd700;
}

.woocommerce-order-received .woocommerce-table--order-details .woocommerce-Price-amount {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

.woocommerce-order-received .woocommerce-table--order-details .shipped_via {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Customer Details */
.woocommerce-order-received .woocommerce-customer-details {
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.woocommerce-order-received .woocommerce-columns--addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.woocommerce-order-received .woocommerce-column--billing-address,
.woocommerce-order-received .woocommerce-column--shipping-address {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    position: relative;
}

.woocommerce-order-received .woocommerce-column--billing-address::before,
.woocommerce-order-received .woocommerce-column--shipping-address::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ffd700;
    border-radius: 2px 0 0 2px;
}

.woocommerce-order-received .woocommerce-column__title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    padding-left: 0;
}

.woocommerce-order-received address {
    font-style: normal;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.woocommerce-order-received address br {
    line-height: 1.8;
}

.woocommerce-order-received .woocommerce-customer-details--phone,
.woocommerce-order-received .woocommerce-customer-details--email {
    margin: 8px 0;
    color: #666;
    font-weight: 500;
}

.woocommerce-order-received .woocommerce-customer-details--phone::before {
    content: '📞 ';
    margin-right: 5px;
}

.woocommerce-order-received .woocommerce-customer-details--email::before {
    content: '✉️ ';
    margin-right: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Payment Method Badge */
.woocommerce-order-received .woocommerce-order-overview li:last-child span:last-child {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .woocommerce-order-received .woocommerce {
        padding: 15px;
        margin: 10px auto;
    }

    .woocommerce-order-received .woocommerce-order {
        padding: 20px;
    }

    .woocommerce-order-received .woocommerce-notice--success {
        font-size: 1.4rem;
    }

    .woocommerce-order-received .woocommerce-order .woocommerce-notice {
        font-size: 1rem;
        padding: 20px;
    }

    .woocommerce-order-received .woocommerce-order-overview li {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .woocommerce-order-received .woocommerce-columns--addresses {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .woocommerce-order-received .woocommerce-table--order-details th,
    .woocommerce-order-received .woocommerce-table--order-details td {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .woocommerce-order-received .woocommerce-table--order-details {
        font-size: 0.9rem;
    }

    .woocommerce-order-received .woocommerce-column--billing-address,
    .woocommerce-order-received .woocommerce-column--shipping-address {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .woocommerce-order-received .woocommerce-table--order-details th,
    .woocommerce-order-received .woocommerce-table--order-details td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
    
    .woocommerce-order-received .woocommerce-order-overview li {
        padding: 12px 15px;
    }
    
    .woocommerce-order-received .woocommerce-order-details__title {
        font-size: 1.3rem;
    }
}