  .navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    font-family: Arial, sans-serif;
  }

  .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu > .menu-item > a {
    padding: 15px 20px;
    display: block;
    text-decoration: none;
    color: #333;
  }










  /* Mega menu */
  .mega-menu {
    display: none; /* hide by default */
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    border-top: 1px solid #eee;
  }
 

.mega-menu {
  display: none; /* hide by default */
  position: absolute;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 1000;
  border-top: 1px solid #eee;
}
/* Desktop hover only */
@media (min-width: 768px) {
  .menu-item:hover .mega-menu {
    display: block;
  }

/* Only items with megamenu get arrows */
.menu-item.has-megamenu > a {
  position: relative;
  padding-right: 18px; /* space for arrow */
}

.menu-item.has-megamenu > a::after {
  content: "\e92b"; /* Font Awesome right arrow */
  font-family: "icomoon";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}




}
.category-box {
  text-align: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  display: inline-grid;
  margin-bottom: 20px;
}
.category-box img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 8px;
  transition: transform 0.2s;
}
.category-box img:hover {
  transform: scale(1.05);
}
@media screen and (min-width:768px){
  .collapse:not(.show) {
    display: block;
}
}  


/* Mobile adjustments */
@media (max-width: 767px) {
  .menu { flex-direction: column; }
  .menu-item { position: relative; }
  .mega-menu { position: static; width:100%; box-shadow:none; border:none; padding:0 15px; max-height:0; }
  .menu-item.open .mega-menu { display:block; max-height:2000px; margin-bottom:15px; }
  .menu-item > a::after { content: '\e92c'; font-family: "icomoon";margin-left:10px; font-size:18px; transition: transform 0.3s; float:right}
  .menu-item.open > a::after { content: '\e92f'; font-family: "icomoon";transform: rotate(180deg);float:right }
}
