 .brand-icon{
	position:absolute;
	right:50px;
	bottom:30px;
	z-index:2;
	width:120px;
	height:80px;
	background-image: url(../images/me-logo.svg);
	background-repeat: no-repeat;
	background-position: center center; 
	background-size:90%;
 
 }
.menu-inner{      
    width:50%;
	display: grid;
	height:100%;
    grid-gap:0;
    grid-template-columns: repeat(2, 1fr);
	background:var(--royal-black);
	background-image: url(../images/backgrounds/pattern2.svg);
 	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover; 
}
  
.menu-inner .column{
	padding:50px;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;	 
	flex-direction:column;
	/*background:var(--royal-black);
	border-right:1px solid rgba(255, 255, 255, 0.05);*/
	transition: all 0.4s ease;
	position:relative;
	
}
.menu-inner .column:hover{
	
}

.menu-inner .column h2{
	font-size:20px;
	line-height:normal;
	color:var(--white);
	margin:0 0 15px 0;
}
 .menu-inner .column p{
	font-size:14px;
}
/* Nav Bar */

nav {
 /*background: #fff000;*/
  color: #000;
  font-size: 15px;
 	/*position:absolute;
  left: 20px;
  top: 20px;*/
  float:left;
  z-index:200;
 /* box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);*/
 }

/* Cart Icon */
.cart-icon-link {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 145px; /* Positioned before sound icon with 15px gap (sound is at right: 90px, 40px wide) */
  top: 30px; /* Aligned with sound button */
  z-index: 249;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}

.cart-icon-link:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  transform: scale(1.05);
}

.cart-count-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
  color: var(--black);
  font-size: 10px;
  font-weight: var(--font-bold);
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(206, 142, 60, 0.5);
  border: 2px solid var(--royal-black);
  line-height: 1;
}

.cart-count-badge:empty {
  display: none;
}

/* Responsive Cart Icon */
@media (max-width: 768px) {
  .cart-icon-link {
    right: 125px; /* Adjusted for mobile - before sound icon with proper spacing */
    width: 40px;
    height: 40px;
    font-size: 18px;
    top: 25px;
  }
  
  .cart-count-badge {
    min-width: 16px;
    height: 16px;
    font-size: 9px;
    top: -4px;
    right: -4px;
    padding: 0 3px;
  }
  
  .menu-icon {
    width: 50px;
    height: 50px;
    right: 15px;
    top: 15px;
  }
  
  /* Adjust sound button position on mobile if needed */
  .sound-btn {
    right: 70px;
    top: 25px;
  }
}

.menu-icon {
  width: 60px;
  height: 60px;
  margin: 0;
  position:absolute;
  /*background-color:#1E1232;*/
  right:20px;
  top:20px;
  cursor: pointer;
  z-index:250;  
  transition: background 0.5s;
 	
}

.menu-icon:hover{
	/*background-color:#E31F26;*/
	}
	
.menu-icon span,
.menu-icon span:before,
.menu-icon span:after {
  cursor: pointer;
  /*border-radius: 1px;*/
  height: 1px;
  width: 35px;
  background:#FFF;
  position: absolute;
  left: 30%;
  top: 50%;
  display: block;
  content: '';
  transition: all 0.5s ease-in-out;
}

.menu-icon span:before {
  left: 0;
  top: -8px;
}

.menu-icon span:after {
  left: 0;
  top: 8px;
}

.menu-icon.active {
 /* background: #6E2443;*/
 position:fixed;
}

/******/
.menu-icon:hover span:before, .menu-icon:hover span:after, .menu-icon:hover span {
	background-color:#FFF !important;
}
/*****/


.menu-icon.active span {
  background-color: transparent !important;
  
}

.menu-icon.active span:before,
.menu-icon.active span:after {
  top: 0;
  background-color:#fff;
}

.menu-icon.active span:before {
  transform: rotate(135deg);
}

.menu-icon.active span:after {
  transform: rotate(-135deg);
}
/* Menu */

.overlay-menu {
	background:var(--royal-black);	 
  	color: var(--white);
	position: fixed;	
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0;	
	overflow-y: auto;
    -webkit-overflow-scrolling: touch;
	transform: translateX(0);
	transition: all 0.5s; 
	z-index:-1;
}

.overlay-menu.open {
  opacity: 1;
  transform: translateY(0);
  left: 0;
  z-index:99;
}

.overlay-menu .anim {
  transform: translateY(25px);
  opacity: 0;
  transition: all 0.5s;
  transition-delay: 0s;
}

.overlay-menu.open .anim {
  transition: all 1s;
  transition-delay: 1s;
  opacity: 1;
  transform: translateY(0px);
}

.overlay-menu .anim:nth-child(0) {
  transition-delay: 0.9s;
}

.overlay-menu.open .anim:nth-child(2) {
  transition-delay:0.8s;

}
.overlay-menu.open .anim:nth-child(3) {
  transition-delay:0.7s;

}
.overlay-menu.open .anim:nth-child(4) {
  transition-delay:0.6s;

}
.overlay-menu.open .anim:nth-child(5) {
  transition-delay:0.5s;

}
.overlay-menu.open .anim:nth-child(6) {
   transition-delay:0.4s;
}
.overlay-menu.open .anim:nth-child(7) {
  transition-delay:0.11s;

}
.overlay-menu.open .anim:nth-child(8) {
 transition-delay:0.2s;
}
.overlay-menu.open .anim:nth-child(9) {
 transition-delay:0.1s;
}
.overlay-menu.open .anim:nth-child(10) {
 transition-delay:0.2s;
}
.overlay-menu.open .anim:nth-child(11) {
 transition-delay:0.3s;
}
.overlay-menu.open .anim:nth-child(12) {
 transition-delay:0.4s;
}
.overlay-menu.open .anim:nth-child(13) {
 transition-delay:0.5s;
}
.overlay-menu.open .anim:nth-child(14) {
 transition-delay:0.6s;
}.overlay-menu.open .anim:nth-child(15) {
 transition-delay:0.7s;
}.overlay-menu.open .anim:nth-child(16) {
 transition-delay:0.8s;
}.overlay-menu.open .anim:nth-child(17) {
 transition-delay:0.9s;
}
 
/****************menu styles****************/


.overlay-menu ul, .overlay-menu ul li{	 
	margin:0;
	padding:0;
	list-style:none;
	display:block;
	width:100%;
 
}
 

.overlay-menu ul li a{	 
	font-weight:normal;
	display:inline-block;
	padding:10px 0;
	color:var(--white);	
	font-weight:normal;
	font-family:var(--heading-font);
	font-size:18px;
	line-height:normal;
	position:relative;
	
 
}
.overlay-menu ul li a:hover{
	 color:var(--secondary-color);	
	 padding:10px 25px;
}

.overlay-menu ul li a .active{
	color:var(--secondary-color);	
	}
	
.overlay-menu ul li a span{
	 position:relative;
	 z-index:2;
	
}

.overlay-menu ul li a:after{
	width:0;
	height:1px;
	position:absolute;
	background-image: linear-gradient(to left, rgba(182,131,35,0), rgba(182,131,35,1));
	left:0;
	bottom:0;
	content:'';
    transition: filter 0.4s ease;
}

.overlay-menu ul li a:hover:after{
	width:100%;
	

}
 
@media screen and (max-width: 800px) {
 
 .menu-inner{      
    grid-template-columns: repeat(2, 1fr);
}
  
  
.menu-icon span,
.menu-icon span:before,
.menu-icon span:after {
  background:#fff;
}
.menu-icon {
	right:15px;
	top:15px;
}
.menu-icon.active {
	position:fixed !important;
	}
}

@media screen and (max-width:640px) {
 .brand-icon{
	position:relative;
	left:20px;
	top:20px;
	right:auto;
	bottom:auto;
	z-index:2;
}
 
 .menu-inner{      
	width:100%;
 	grid-template-columns: repeat(1, 1fr);
	background-image:none;
	background-color:transparent;
 

}
  
.menu-inner .column{
	border-right:0;
	padding:0 20px;
	background-color:transparent;
	 
}
.address{
	padding-top:50px;
}
 
  
  }