/* ================= TF TOP BAR ================= */
/* .Lmenu-bars {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 40px;
    left: 40px;
    overflow: hidden;
    z-index: 9999; /* Keep it above everything else */
/*     cursor: pointer;
} */

/* =========================================================
   TF TOP BAR — FINAL ALIGNMENT FIX
   Works with existing Lmenu-bars (fixed → header-aligned)
   ========================================================= */

/* ---------- TOP BAR CONTAINER ---------- */
.tf-topbar {
  position: relative;                 /* anchor for hamburger */
  display: flex;
  align-items: center;                /* vertical alignment */
  justify-content: space-between;
  height: 70px;                       /* consistent header height */
  padding: 0 16px;
  background: #ffffff;
  z-index: 900;
	
    /* top: 20px; */
    width: 97%; /* Adjust the width as needed */
    padding-bottom: 10px; /* Adds space below the menu items */
    border-bottom: 1px solid #cccccc; /* #333 Creates a line under the menu */	
	
}

/* ---------- LEFT (hamburger anchor) ---------- */
.tf-topbar-left {
  position: relative;
  flex: 0 0 50px;                     /* reserve space */
  height: 100%;
}

/* OVERRIDE your existing .Lmenu-bars (IMPORTANT) */
.tf-topbar .Lmenu-bars {
  position: absolute;                 /* NOT fixed */
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 36px;
  height: 26px;
  z-index: 9999;
}

/* Hamburger bars size tweak */
.tf-topbar .Lmenu-bars span {
  width: 30px;
  height: 3px;
}

/* ---------- CENTER (logo) ---------- */
.tf-topbar-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tf-topbar-center img {
  max-height: 46px;                   /* balanced size */
  width: auto;
  display: block;
}

/* ---------- RIGHT (cart + modal triggers) ---------- */
.tf-topbar-right {
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Cart wrapper */
.tf-cart {
  display: flex;
  align-items: center;
}

/* ---------- CART BUTTON ---------- */
#shopping-cart-container {
  position: relative;
  display: flex;
  align-items: center;
}

#shopping-cart-icon {
  width: 22px;
  height: auto;
  display: block;
}

/* Cart badge */
#cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  color: #fff;
  background: #e74c3c;
  border-radius: 50%;
  font-weight: bold;
}

 .menu-separator {
     width: 100%; /* Adjust the width as needed */
     margin: 0 auto; /* Centers the <hr> horizontally */
 	margin-top: 10px;
     border: none; /* Remove default border */
     height: 1px; /* Set the thickness of the line */
     border-top: 1px solid #cccccc; /* #333 Adjust thickness and color */
     background-color: #cccccc; /* #cccccc Choose a color */
 } 

/* ---------- MOBILE REFINEMENT ---------- */
@media (max-width: 767px) {
  /* .tf-topbar {
    height: 64px;
    padding: 0 12px;
  }

  .tf-topbar-center img {
    max-height: 40px;
  }

  .tf-topbar-left,
  .tf-topbar-right {
    flex: 0 0 44px;
  } */
/* } */

.tf-topbar {
  display: flex;
  align-items: center;        /* true vertical centering */
  justify-content: space-between;
	
  /* height: 70px; */
  height: 0px;	
  padding: 0 12px;
  background: #fff;
  /* position: relative; */
	position: fixed;
	top: 40px;
	
    width: 97%; /* Adjust the width as needed */
    padding-bottom: 10px; /* Adds space below the menu items */
    border-bottom: 0px solid #cccccc; /* #333 Creates a line under the menu */	
	
}

/* LEFT */
.tf-topbar-left {
  flex: 0 0 44px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* CENTER */
.tf-topbar-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tf-topbar-center img {
  max-height: 40px;
  display: block;
}

/* RIGHT */
.tf-topbar-right {
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* CART */
.tf-cart {
  display: flex;
  align-items: center;
}

#shopping-cart-container {
  position: relative;
  display: flex;
  align-items: center;
}

#shopping-cart-icon {
  width: 22px;
  height: auto;
}

/* CART BADGE */
#cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  background: #e74c3c;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
}
	
}