.mobile-menu-icon{
	max-width: 45px;
	z-index: -1;
}

.mob-menu-title{
	margin-left: 12px;
}

  /* inver black icons to white */
  .mobile-menu-icon {
    transition: filter 0.2s ease, opacity 0.2s ease;
		filter: invert(1) brightness(2);
	  opacity: 0.7;
  }

.awb-menu_desktop .mobile-shop-menu{
	display: none;
}

.awb-menu.expanded .desktop-shop-menu{
	display: none;
}

.close-mob-menu{	
    position: absolute;
    right: 20px;
    top: 15px;
	padding: 5px 13px;
	padding-bottom: 4px;
	padding-top: 5px;
    z-index: 999;
	color: #ffffff;
	
	cursor: pointer;
  display: inline-block;
	border: 1px solid #f4631b;
    border-radius: 5px;
	background: #f4631b;
	border-radius: 30px;

transition: transform 0.6s ease;
}

/* Spin animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.close-mob-menu.spin {
  animation: spin 0.6s ease;
}

/* Fade out class */
#mobile-menu-wrapper.fade-out {
  opacity: 0;
  pointer-events: none; /* prevent interaction while fading */
}

body.no-scroll {
  overflow: hidden; /* Prevent scrolling */
}

/* ===== WRAPPER ===== */
#mobile-menu-wrapper {
  position: fixed;
  inset: 0;
  background: #333333;
  z-index: 999999;
  display: none;
  overflow: hidden;
	padding-top: 10px;
	opacity: 1;
  transition: opacity 0.5s ease; /* fade effect */
}

/* ===== PANELS ===== */
#mobile-menu-wrapper .mobile-menu,
#mobile-menu-wrapper .sub-menu {
  position: absolute;
  inset: 0;
  background: #333333;
  overflow-y: auto;
  overflow-x: hidden;
  

  transform: translateX(100%);
  transition: transform 0.35s ease;
}

#mobile-menu-wrapper .mobile-menu{
	padding-top: 70px;
	padding-bottom: 20px;
	padding-left: 0;
	padding-right: 0;
}

/* Visible panel */
#mobile-menu-wrapper .mobile-menu.active,
#mobile-menu-wrapper .sub-menu.active {
  transform: translateX(0);
}

/* Previous panel */
#mobile-menu-wrapper .exit-left {
  transform: translateX(-100%);
}

/* ===== LIST ===== */
#mobile-menu-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#mobile-menu-wrapper li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== LINKS ===== */
#mobile-menu-wrapper a,
#mobile-menu-wrapper button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-size: 16px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
}


/* Chevron */
#mobile-menu-wrapper .menu-item-has-children > a::after {
  content: '›';
  margin-left: auto;
  opacity: 0.4;
  font-size: 16px;
	color: #ffffff;
  
  
 /* position: absolute;
  right: 0; */
  z-index: -1;
  pointer-events: none;
  
  
}

/* ===== BACK BUTTON ===== */
#mobile-menu-wrapper .menu-back button {
  font-weight: 600;
	padding-left: 20px;
	width: 70%;
}

#mobile-menu-wrapper .menu-back button::before {
   /*content: '← ';*/
	content: '< ';
	margin-right: 10px;
	
	padding: 9px 14px;
    border: 1px solid #f4631b;
    border-radius: 30px;
    font-size: 16px;
	background: #f4631b;
	
}

#mobile-menu-wrapper li > a{
	padding-left: 20px;
	padding-right: 20px;
}

#mobile-menu-wrapper li:active > a{
	color: #4a4e57;
	background: #ffffff;
}


.mobile-shop-menu a{
	position: relative;
  padding-right: 20px;
}

.mobile-shop-menu a::after {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    content: "\f107";
    font-family: awb-icons;
}


