/* Desktop Mega Menu */
.wc-mega-menu {
  display: flex;
	font-family: 'Inter';
	font-size: 15px;
	font-weight: 500;
}

.wc-col {
  flex: 1;
}

.wc-col:first-child ul{
  border-right: none;
}

.wc-col ul {
  list-style: none;
  margin: 0;
	padding: 0;
background: #fff;
	height: 100%;
	overflow-y: auto;
}

.wc-col ul::-webkit-scrollbar-track
{
	border-radius: 10px;
	background-color: #F5F5F5;
}

.wc-col ul::-webkit-scrollbar
{
	width: 6px;
	background-color: #D9D9D7;
}

.wc-col ul::-webkit-scrollbar-thumb
{
	border-radius: 4px;
	background-color: #555;
}

.wc-col li {
  padding: 8px 10px;
  position: relative;
  cursor: pointer;
	display: flex;
	align-items: center;
}

.wc-col li.has-children::after {
	border-style: solid;
	border-width: 0.14em 0.14em 0 0;
	content: '';
	display: inline-block;
	height: 0.55em;
	right: 12px;
	position: absolute;
	transform: rotate(45deg);
	vertical-align: top;
	width: 0.55em;
	transition: 0.2s;
}

.wc-col li:hover {
  background: #f5f5f5;
}

@media (min-width: 768px) {
	.wc-col ul {
		padding: 10px;
	}
}

/* 📱 Mobile Style */
@media (max-width: 767px) {
  .wc-mega-menu {
    display: block;
    border: none;
    max-width: 100%;
  }

  .wc-col {
    border: none;
    padding: 0;
    min-height: auto;
  }

  .wc-col-2, .wc-col-3 {
    display: none; /* Hide 2nd & 3rd columns on mobile */
  }
	
  .wc-col-1 li {
    position: relative;
	      flex-direction: column;
    align-items: normal;
  }
	
li.has-children ul {
    margin-top: 8px;
}
	
	.wc-col li.has-children::after {
		top: 15px;
	}
	
	.wc-col li.has-children.open::after {
		transform: rotate(135deg)!important;
	}

  .wc-col-1 li ul {
    display: none;
	  
  }

  .wc-col-1 li.open > ul {
    display: block; /* expand submenu when open */
	          background: transparent!important;
  }

}
