* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}


:root {
  --text-color: #ffffff;
  --main-color: #ffc400;
  --second-color: #b0b0b0;
  --bg-color: #1a1a1a;
  --dark-bg: #0f0f0f;
  --card-bg: rgba(26, 26, 26, 0.9);
  --big-font: 4.5rem;
  --h2-font: 2.6rem;
  --p-font: 1.1rem;
}


body {
  background: var(--bg-color);
  color: var(--text-color);
  margin-top: 80px;
  background-image: url('../images/Desktopbg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}


header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(15px);
  padding: 20px 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 196, 0, 0.2);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0px;
  flex: 0 0 auto;
  position: absolute;
  left: 50px;
}

.navbar {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 0;
  padding: 0;
}

.h-icons {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin: 0;
  position: absolute;
  right: 50px;
}


header ul {
  display: flex;
  justify-content: center; 
  align-items: center; 
  gap: 0px; 
  flex-grow: 1; 
}

.logo{
  font-size: 32px;
  font-weight: 800;
  color: var(--text-color);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-left: 0;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 196, 0, 0.5);
}

span{
  color: var(--main-color);
  font-weight: 900;
}

.navbar a {
  color: var(--text-color);
  font-size: var(--p-font);
  font-weight: 600;
  padding: 8px 16px;
  
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.navbar a:hover {
  border-color: var(--main-color);
  color: var(--main-color);
  background: rgba(255, 196, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 196, 0, 0.3);
}





.h-icons{
  display: flex;
  align-items: center;
  padding: 12px 25px;
  background: linear-gradient(135deg, var(--main-color), #ffd54f);
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(255, 196, 0, 0.4);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  gap: 16px;
}

.h-icons:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 196, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}

.h-icons i{
  font-size: 22px;
  color: var(--dark-bg);
  margin-right: 15px;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.h-icons:hover i {
  transform: scale(1.1);
}

#menu-icon{
  font-size: 32px;
  color: var(--dark-bg);
  z-index: 10001;
  cursor: pointer;
  display: none;
}

section, .home, .menu, .contact {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

.home-text, .menu-content, .contact-grid {
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.home{
  height:92vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  margin-right: 100px;
  padding: 80px 5% 80px 15%;
  box-shadow: 0 8px 32px rgba(255, 174, 0, 0.317);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid rgba(255, 196, 0, 0.2);
}
.home-img img{
  width: 100%; 
  height: auto;
}
.home-text{
  max-width: 700px;
  text-align: right;
  margin-right: 0px;
  margin-bottom: 100px;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.home-text h1{
  font-size: 100px;
  line-height: 1.1;
margin-bottom: 2rem;
  text-align: left;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(255, 196, 0, 0.3);
  letter-spacing: 1px;
}

.home-text p{
  font-size: var(--p-font);
  font-weight: 400;
color: var(--second-color);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  text-align: left;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  letter-spacing: 0.5px;
  max-width: 470px;
  margin-right: auto;
}

.opening-status-home {
  display: none;
}

.opening-status-nav {
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.opening-status-nav.open {
  background: rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.4);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.opening-status-nav.closed {
  background: rgba(244, 67, 54, 0.2);
  border-color: rgba(244, 67, 54, 0.4);
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.2);
}

.opening-status-nav i {
  font-size: 1rem;
  animation: pulse 2s infinite;
}

.opening-status-nav:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.opening-status-nav.open:hover {
  background: rgba(76, 175, 80, 0.3);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.opening-status-nav.closed:hover {
  background: rgba(244, 67, 54, 0.3);
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.opening-status-home.open {
  background: rgba(76, 175, 80, 0.15);
  border-color: rgba(76, 175, 80, 0.4);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.opening-status-home.closed {
  background: rgba(244, 67, 54, 0.15);
  border-color: rgba(244, 67, 54, 0.4);
  box-shadow: 0 8px 32px rgba(244, 67, 54, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.opening-status-home i {
  font-size: 1.4rem;
  animation: pulse 2s infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  
}

.opening-status-home:hover {
  transform:  scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.opening-status-home.open:hover {
  background: rgba(76, 175, 80, 0.25);
  box-shadow: 0 15px 45px rgba(76, 175, 80, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.opening-status-home.closed:hover {
  background: rgba(244, 67, 54, 0.25);
  box-shadow: 0 15px 45px rgba(244, 67, 54, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.status-text {
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
}


/* Mobile/Tablet: Show home status, hide nav status */

/* Pulse Animation for View Menu Button */
@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 32px 8px rgba(255, 196, 0, 0.25), 0 0 0 0 rgba(255, 196, 0, 0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 32px 8px rgba(255, 196, 0, 0.4), 0 0 0 0 rgba(255, 196, 0, 0.3);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 32px 8px rgba(255, 196, 0, 0.25), 0 0 0 0 rgba(255, 196, 0, 0.15);
    transform: scale(1);
  }
}

.btn{
 display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, var(--main-color), #ffd54f);
  color: var(--dark-bg);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 0 32px 8px rgba(255, 196, 0, 0.25), 0 0 0 0 rgba(255, 196, 0, 0.15);
  margin-right: 0;
  margin-left: 0;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  animation: buttonPulse 2s ease-in-out infinite;
  right: 330px;
}
.btn-menu{
  margin-right: 30px;
}
.btn-contact{
  margin-left: 0;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover{
  transform:  scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
}

header.sticky{
  padding: 0px 3%;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0px 0.7px 15px rgba(255, 107, 53, 0.3);
}


.main-text h2 {
  font-size: var(--h2-font);
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 800;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 196, 0, 0.3);
  letter-spacing: 1px;
  
}

.main-text p {
  font-size: var(--p-font);
  font-weight: 500;
  color: var(--second-color);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

.container-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 2rem; 
  align-items: center; 
  margin-top: 4rem;
  transition: all 0.3s ease-out;

}


.container-img img {
  width: 80px; 
  height: auto; 
  border-radius: 10px; 
}

.c-mainbx {
  display: flex;
  align-items: center; 
  justify-content: flex-start; 
  gap: 1.4rem; 
  padding: 20px; 
  cursor: pointer;
  border-radius: 20px;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.c-mainbx::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.1), transparent);
  transition: left 0.5s;
}

.c-mainbx:hover::before {
  left: 100%;
}

.c-mainbx:hover{
  transform: translateY(-8px) scale(1.05);
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(255, 196, 0, 0.3);
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(255, 196, 0, 0.3);
}

.container-text p {
  font-size: var(--p-font);
  font-weight: 500;
  margin: 0;
  color: var(--text-color);
}


.about-img img {
  width: 100%; 
  height: auto; 
  
}
.about{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  gap: 2rem;
  background: transparent;
  margin: 0;
  padding: 80px 10% 80px;
}
.about-text h2{
  font-size: var(--h2-font);
  margin-bottom: 2rem;
  line-height: 1.3;
  color: var(--text-color);
}
.about-text p{
  font-size: var(--p-font);
  color: var(--second-color);
  font-weight: 500;
  line-height: 32px ;
  margin-bottom: 2.3rem ;
}

.menu-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  gap: 2rem ;
  align-items: center;
  margin-top: 4rem;
  cursor: pointer;
}

.row img {
  width: 100%;
  height: auto; 
  border-radius: 10px;
}

.row{
  transition: all 0.4s ease;
  background: rgba(26, 26, 26, 0.8);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.row::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.1), transparent);
  transition: left 0.5s;
}

.row:hover::before {
  left: 100%;
}

.row:hover{
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 196, 0, 0.2);
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(255, 196, 0, 0.2);
}

.menu-text{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
}
.menu-left h4{
  font-size: 24px;
  color: var(--text-color);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.menu-right h5{
  color: var(--main-color);
  font-size: 24px;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 196, 0, 0.3);
}

.row p{
  color: var(--second-color);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.star i{
  color: var(--main-color);
  font-size: 18px;
  margin-right: 3px;
  transition: all 0.3s ease;
}

.star i:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 196, 0, 0.5);
}

.contact{
  padding: 50px 15% 40px;
  background: transparent;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 70px;
  margin-top: 48px;
  justify-items: center;
  align-items: stretch;
  max-width: 100%;
  margin-right: 50px;
  margin-left: 50px;
  
}

.contact-card {
  min-width: 220px;
  max-width: 320px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-card {
  background: rgba(30,30,30,0.95);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255,196,0,0.12), 0 4px 16px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,196,0,0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 280px;
  max-width: 320px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,196,0,0.1), transparent);
  transition: left 0.5s;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,196,0,0.2), 0 6px 20px rgba(0,0,0,0.15);
  border-color: rgba(255,196,0,0.4);
}

.contact-card i {
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 16px;
  display: block;
  text-shadow: 0 0 20px rgba(255,196,0,0.3);
}

.contact-card h3 {
  color: var(--text-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.contact-card p {
  color: var(--second-color);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.4;
}

.contact-card a {
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255,196,0,0.5);
}


.main-contact{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  gap: 2rem;
}
.contact-content h4{
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 1.5rem;
 }
 .contact-content li{
  margin-bottom: 15px;
 }
 .contact-content li a{
  display: block;
  color: var(--second-color);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.36s ease;
 }

 .contact-content li a:hover{
  transform: translateX(10px);
  color: var(--main-color);
 }

 .last-text p{
  text-align: center;
  padding: 25px;
  color: var(--second-color);
  font-size: 15px;
  letter-spacing: 1px;
 }
 .scroll-top{
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  transition: all 0.3s ease;
 }
 .scroll-top:hover {
  transform: translateY(-5px);
 }
 .scroll-top i{
  padding: 12px;
  font-size: 1.5rem;
  color: var(--dark-bg);
  background: linear-gradient(135deg, var(--main-color), #ffd54f);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(255, 196, 0, 0.4);
  transition: all 0.3s ease;
 }
 .scroll-top:hover i {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 196, 0, 0.6);
 }




.navbar.open{
  right: 0;
}
      



/* Menu Section Styles */
.menu-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  justify-items: center;
  align-items: stretch;
  margin: 32px auto 24px auto;
  width: 100%;
  max-width: 1200px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.menu-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}
.menu-tab {
  width: 100%;
  min-width: 120px;
  max-width: 180px;
  min-height: 130px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px 10px 12px;
  gap: 0.5em;
  background: rgba(30,30,30,0.92);
  color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 8px;
}
.menu-tab span {
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--main-color);
  text-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.menu-tab:hover, .menu-tab:focus {
  background: var(--main-color);
  color: #181818;
  box-shadow: 0 4px 16px rgba(255,196,0,0.15);
  transform: scale(1.1);
}
.menu-tab:hover span, .menu-tab:focus span {
  color: #181818;
}


.menu-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

.menu-popup-content {
  background: var(--card-bg);
  border: 2px solid var(--main-color);
  border-radius: 20px;
  padding: 30px;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: popupSlideIn 0.4s ease-out;
}

.menu-popup-content h3 {
  color: var(--main-color);
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.menu-popup-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 196, 0, 0.2);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.menu-item:hover::before {
  left: 100%;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 196, 0, 0.2);
  border-color: var(--main-color);
  background: rgba(255, 255, 255, 0.08);
}

.menu-item.highlight {
  animation: highlightPulse 2s ease-in-out;
  border-color: var(--main-color);
  box-shadow: 0 0 30px rgba(255, 196, 0, 0.5);
}

@keyframes highlightPulse {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(255, 196, 0, 0.5);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 50px rgba(255, 196, 0, 0.8);
    transform: scale(1.02);
  }
}

.menu-item.detailed {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu-item.simple {
  text-align: center;
}

.menu-item-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 196, 0, 0.3);
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1);
}

.menu-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-item-content h4 {
  color: var(--text-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-item-content .description {
  color: var(--second-color);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-item-footer .price {
  color: var(--main-color);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  flex-shrink: 0;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, var(--main-color), #ffd54f);
  color: var(--dark-bg);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 196, 0, 0.3);
  min-width: 100px;
  justify-content: center;
  flex-shrink: 0;
}

.add-to-cart-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 196, 0, 0.5);
  background: linear-gradient(135deg, #ffd54f, var(--main-color));
}

.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 8px rgba(255, 196, 0, 0.2);
}

.add-to-cart-btn i {
  font-size: 1.1rem;
}

/* Menu popup scrollbar styling */
.menu-popup-content::-webkit-scrollbar {
  width: 8px;
}

.menu-popup-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.menu-popup-content::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 10px;
}

.menu-popup-content::-webkit-scrollbar-thumb:hover {
  background: #ffd54f;
}

/* Responsive design for menu popup */

/* Enhanced close button styles */
.close-popup {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.close-popup:hover {
  color: var(--text-color);
  background: var(--main-color);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 196, 0, 0.5);
}

.close-popup-bottom {
  background: linear-gradient(135deg, var(--main-color), #ffd54f);
  color: var(--dark-bg);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 196, 0, 0.3);
}

/* Body scroll lock when popup is open */
body.menu-popup-open {
  overflow: hidden;
}

/* Animation keyframes */
@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Loading Animation Styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  margin-bottom: 40px;
  animation: logoPulse 2s ease-in-out infinite;
}

.logo-image {
  width: 200px;
          height: auto;
  max-width: 80vw;
  filter: drop-shadow(0 0 30px rgba(255, 196, 0, 0.5));
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(255, 196, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 50px rgba(255, 196, 0, 0.8));
  }
}

/* Remove the old text logo styles */
.logo-text {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(255, 196, 0, 0.5);
}

.logo-highlight {
  color: var(--main-color);
  font-weight: 900;
}

.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 30px auto;
}

.spinner-ring {
  position: absolute;
          width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid var(--main-color);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
  animation-delay: 0s;
  border-top-color: var(--main-color);
}

.spinner-ring:nth-child(2) {
  animation-delay: 0.5s;
  border-top-color: #ffd54f;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
}

.spinner-ring:nth-child(3) {
  animation-delay: 1s;
  border-top-color: #fff;
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
}

.loading-text {
  font-size: 1.1rem;
  color: #ccc;
  font-weight: 500;
  letter-spacing: 1px;
  animation: textFade 2s ease-in-out infinite;
}

.loading-status {
  font-size: 0.9rem;
  color: var(--main-color);
  margin-top: 0.5rem;
  opacity: 0.8;
  font-weight: 500;
  letter-spacing: 0.5px;
  animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes textFade {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Loading dots animation */
.loading-text::after {
  content: '';
  animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
  0%, 20% {
    content: '';
  }
  40% {
    content: '.';
  }
  60% {
    content: '..';
  }
  80%, 100% {
    content: '...';
  }
}

/* Responsive loading animation */



/* Quantity Selector Styles */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #ffffff;
}

.quantity-btn {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}



.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.quantity-display {
  font-size: 18px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  min-width: 30px;
          text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 12px;
  border-radius: 15px;
  border: 1px solid rgba(255, 196, 0, 0.5);
}

/* Loading Animation for Add to Cart Button */
.menu-popup-card-cart-btn.loading {
  background: #666;
  cursor: not-allowed;
  transform: scale(0.98);
}

.menu-popup-card-cart-btn.loading:hover {
  background: #666;
  transform: scale(0.98);
}

.bx-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Enhanced Add to Cart Button */
.menu-popup-card-cart-btn {
  background: var(--main-color);
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 196, 0, 0.3);
}

.menu-popup-card-cart-btn:hover:not(.loading) {
  background: #ffd54f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 196, 0, 0.4);
}

.menu-popup-card-cart-btn:active:not(.loading) {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 196, 0, 0.3);
}

/* Responsive quantity controls */




/* Popup Loading Animations */
.menu-popup.loading,
.cart-popup.loading {
  animation: popupLoad 0.3s ease-out;
}

@keyframes popupLoad {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Loading overlay for popups */
.popup-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
           width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 20px;
}

.popup-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid transparent;
  border-top: 3px solid var(--main-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Enhanced popup animations */
.menu-popup,
.cart-popup {
  animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Smooth transitions for all interactive elements */


/* Hover effects for better UX */
.menu-popup-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-popup-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Header Improvements for Mobile --- */


/* --- Cart & Menu Button Spacing --- */


.h-icons .cart-btn {
  margin-right: 6px;
}

/* --- Opening Status Widget --- */
.opening-status-home {
  position: static;
  transform: none;
  margin-left: 0;
}



/* --- Glow/Shadow Softening --- */
.logo-text, .main-glow, .glow-text, .main-btn, .main-btn-yellow, .main-btn:focus {
  text-shadow: 0 0 12px rgba(255, 196, 0, 0.35) !important;
  box-shadow: 0 0 18px 4px rgba(255, 196, 0, 0.18) !important;
}

.main-btn, .main-btn-yellow {
  box-shadow: 0 0 18px 4px rgba(255, 196, 0, 0.18) !important;
}

/* --- Ensure touch targets are large enough --- */
.h-icons .cart-btn, .h-icons .menu-btn {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- iPhone 16 Pro & Modern Mobile Layout Fixes --- */




.close-popup-bottom {
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  margin: 24px 0 0 0;
  padding: 16px 32px;
  background: var(--main-color);
  color: #181818;
  border: none;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 196, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.close-popup-bottom:hover {
  background: #fff;
  color: var(--main-color);
  box-shadow: 0 -4px 16px rgba(255, 196, 0, 0.18);
  
}

.specials {
  margin: 48px 0 32px 0;
  padding: 48px 0 0 0;
}

.specials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.special-card {
  background: rgba(30, 30, 30, 0.95);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(255, 196, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}

.special-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 196, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.13);
}

.special-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  background: #222;
}

.special-info {
  padding: 24px 20px 28px 20px;
  text-align: center;
  width: 100%;
}

.special-info h3 {
  color: var(--main-color);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.special-info p {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.btn.btn-small {
  padding: 10px 28px;
  font-size: 1rem;
  border-radius: 18px;
}

.gallery {
  margin: 32px 0 32px 0;
  padding: 0 0 32px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 32px;
  justify-items: center;
}

.gallery-grid img {
  width: 100%;
  max-width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  background: #222;
  transition: transform 0.18s, box-shadow 0.18s;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(255, 196, 0, 0.13);
}

.menu {
  width: 100%;
  margin: 40px auto;
  padding: 60px 60px 60px 60px;
  background: rgba(18, 18, 18, 0.85);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(255, 174, 0, 0.317);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 196, 0, 0.2);
}



/* Enhanced Menu Popup Styles - Additional Features */
.menu-item {
  cursor: pointer;
  position: relative;
}

.menu-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 196, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.menu-item:hover::after {
  opacity: 1;
}



/* Menu category button enhancement */
.menu-tab {
  position: relative;
  overflow: hidden;
}

.menu-tab::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.menu-tab:active::before {
  width: 300px;
  height: 300px;
}

/* URL hash navigation enhancement */
.menu-popup-content {
  scroll-behavior: smooth;
}

/* Loading state for menu items */
.menu-item.loading {
  opacity: 0.7;
  pointer-events: none;
}

.menu-item.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--main-color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

/* Enhanced mobile responsiveness */
 

/* Accessibility improvements */
.menu-tab:focus,
.add-to-cart-btn:focus,
.close-popup:focus {
  outline: 2px solid var(--main-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .menu-item {
    border: 2px solid var(--main-color);
  }
  
  .menu-item:hover {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .menu-item,
  .menu-popup-content,
  .add-to-cart-btn,
  .close-popup {
    transition: none;
  }
  
  .menu-item::before,
  .menu-item::after {
    display: none;
  }
}

/* Enhanced Quantity Controls for Real-time Cart */
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: rgba(255, 196, 0, 0.05);
  padding: 12px;
  border-radius: 15px;
  border: 1px solid rgba(255, 196, 0, 0.2);
  transition: all 0.3s ease;
  flex-wrap: wrap;
  justify-content: center;
}

.quantity-controls.has-items {
  background: rgba(255, 196, 0, 0.1);
  border-color: var(--main-color);
  box-shadow: 0 0 15px rgba(255, 196, 0, 0.2);
}

.quantity-btn {
  width: 36px;
  height: 36px;
  border: 2px solid var(--main-color);
  background: transparent;
  color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.quantity-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
 
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.quantity-btn:hover:not(:disabled)::before {
  width: 100%;
  height: 100%;
}

.quantity-btn:hover:not(:disabled) {
box-shadow: linear-gradient(135deg, #fff200, var(--main-color));
  transform: scale(1.1);
  
}

.quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  
}

.quantity-display {
  min-width: 40px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--main-color);
  background: rgba(255, 196, 0, 0.15);
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid rgba(255, 196, 0, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.quantity-display.has-items {
  
  color: #ffffff;
  border-color: var(--main-color);
  box-shadow: 0 0 15px rgba(41, 31, 0, 0.4);
}

/* Enhanced Add to Cart Button */
.add-to-cart-btn {
  background: linear-gradient(135deg, var(--main-color), #ffd54f);
  color: var(--dark-bg);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 196, 0, 0.3);
  min-width: 100px;
  justify-content: center;
  flex-shrink: 0;
}

.add-to-cart-btn:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 196, 0, 0.5);
  background: linear-gradient(135deg, #ffd54f, var(--main-color));
}

.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 8px rgba(255, 196, 0, 0.2);
}

.add-to-cart-btn i {
  font-size: 1.1rem;
}

/* Menu Item Footer Layout */
.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-item-footer .price {
  color: var(--main-color);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}

/* Responsive enhancements */
 

/* Enhanced Cart notification system */
.cart-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: linear-gradient(145deg, var(--main-color) 0%, #ffaa00 50%, #ffb300 100%);
  color: #000;
  padding: 18px 24px;
  border-radius: 20px;
  box-shadow: 
    0 12px 32px rgba(255, 196, 0, 0.35),
    0 0 20px rgba(255, 196, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 10001;
  animation: notificationSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  max-width: 320px;
  min-width: 280px;
  transform-origin: top right;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-notification:hover {
  transform: translateX(-5px) scale(1.02);
  box-shadow: 
    0 16px 40px rgba(255, 196, 0, 0.45),
    0 0 25px rgba(255, 196, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@keyframes notificationSlideIn {
  0% {
    opacity: 0;
    transform: translateX(100%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.cart-notification i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cart-notification i.bx-check {
  color: #4CAF50;
}

.cart-notification i.bx-refresh {
  animation: spin 1s linear infinite;
}

.cart-notification i.bx-trash {
  color: #f44336;
}

.cart-notification i.bx-cart {
  color: var(--dark-bg);
}

.cart-notification i.bx-phone {
  color: #4CAF50;
  animation: phoneRing 0.5s ease-in-out 3;
}

.cart-notification i.bx-info-circle {
  color: #2196F3;
}

.cart-notification span {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.3;
  color: #000000;
}

.notification-close {
  background: none;
  border: none;
  color: var(--dark-bg);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.notification-close i {
  font-size: 1rem;
}

/* Cart icon pulse animation */
.h-icons .bx-cart.cart-pulse {
  animation: cartPulse 1s ease-in-out;
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    color: var(--main-color);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced cart icon with count */
.h-icons .bx-cart[data-count]::after {
  content: attr(data-count);
  position: absolute;
  top: -8px;
  right: -8px;
  background: #f44336;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceIn 0.6s ease-out;
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.4);
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Notification stack for multiple notifications */
.cart-notification:nth-child(2) {
  top: 160px;
}

.cart-notification:nth-child(3) {
  top: 220px;
}

.cart-notification:nth-child(4) {
  top: 280px;
}

/* Responsive notifications */
 

/* Menu item enhancements for cart state */
.menu-item.in-cart {
  border-color: var(--main-color);
  background: rgba(255, 196, 0, 0.05);
  box-shadow: 0 0 20px rgba(255, 196, 0, 0.1);
}

.menu-item.in-cart .menu-item-content h4 {
  color: var(--main-color);
}

/* Responsive enhancements */

/* Enhanced Cart Popup Modal Styling */
.cart-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: popupSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Opening Hours Popup Modal Styling */
.hours-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: popupSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-popup-content {
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
  border-radius: 28px;
  padding: 48px;
  max-width: 550px;
  width: 98vw;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.6), 
    0 0 50px rgba(255, 196, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 196, 0, 0.25);
  animation: popupSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hours-popup-content {
  background: rgba(0, 0, 0, 0);
  border-radius: 20px;
  padding: 24px;
  max-width: 480px;
  width: 92vw;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6), 
    0 0 40px rgba(255, 196, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 196, 0, 0.25);
  animation: popupSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hours-header {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hours-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--main-color), #ffd54f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(255, 196, 0, 0.3);
  animation: pulse 2s infinite;
}

.hours-icon i {
  font-size: 1.8rem;
  color: var(--dark-bg);
}

.hours-header h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0;
  text-shadow: 0 2px 4px rgba(255, 196, 0, 0.3);
  letter-spacing: 1px;
}

.current-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
}

.current-status.open {
  background: rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.4);
  color: #4CAF50;
  box-shadow: 0 3px 15px rgba(76, 175, 80, 0.2);
}

.current-status.closed {
  background: rgba(244, 67, 54, 0.2);
  border-color: rgba(244, 67, 54, 0.4);
  color: #f44336;
  box-shadow: 0 3px 15px rgba(244, 67, 54, 0.2);
}

.current-status i {
  font-size: 1rem;
  animation: pulse 2s infinite;
}

.hours-schedule {
  width: 100%;
  margin-bottom: 20px;
}

.schedule-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 196, 0, 0.2);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.schedule-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.schedule-item:hover::before {
  left: 100%;
}

.schedule-item:hover {
  border-color: var(--main-color);
  box-shadow: 0 6px 20px rgba(255, 196, 0, 0.2);
  transform: translateY(-2px);
}

.day-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.days {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.times {
  color: var(--main-color);
  font-size: 1.2rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(255, 196, 0, 0.3);
}

.schedule-note {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--second-color);
  font-size: 0.85rem;
  font-style: italic;
}

.schedule-note i {
  color: var(--main-color);
  font-size: 1rem;
}

.hours-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 196, 0, 0.3);
  transform: scale(1.02);
}

.detail-item i {
  font-size: 1.2rem;
  color: var(--main-color);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.detail-content h4 {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 3px 0;
  letter-spacing: 0.3px;
}

.detail-content p {
  color: var(--second-color);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.3;
}

.next-opening {
  border-color: rgba(255, 196, 0, 0.3) !important;
  background: rgba(255, 196, 0, 0.05) !important;
}

.next-opening i {
  animation: pulse 2s infinite;
}

.phone-order {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.phone-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
  transition: left 0.6s ease;
}

.phone-order:hover::before {
  left: 100%;
}

.phone-order:hover {
  background: rgba(76, 175, 80, 0.08);
  border-color: rgba(76, 175, 80, 0.4);
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.2);
}

.phone-order:hover i {
  color: #4CAF50;
  animation: phoneRing 1s ease-in-out infinite;
}

.phone-order:hover .detail-content h4 {
  color: #4CAF50;
}

.phone-order:hover .detail-content p {
  color: var(--text-color);
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
  20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}



.cart-popup-content h3 {
  color: var(--main-color);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-shadow: 0 2px 4px rgba(255, 196, 0, 0.3);
}

.cart-popup-content h3 i {
  font-size: 1.8rem;
  color: var(--main-color);
  filter: drop-shadow(0 2px 4px rgba(255, 196, 0, 0.3));
}

.cart-items {
  margin-bottom: 28px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 196, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cart-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.cart-item:hover::before {
  left: 100%;
}

.cart-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 196, 0, 0.3);
  
}

.cart-item-info {
  flex: 1;
  margin-right: 20px;
}

.cart-item-info h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cart-item-info p {
  color: var(--main-color);
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--main-color), #ffd54f);
  color: #181818;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(255, 196, 0, 0.3);
}




.quantity-display {
  min-width: 28px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cart-item-total {
  color: var(--main-color);
  font-weight: 800;
  font-size: 1.2rem;
  margin-right: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.remove-item {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.2), rgba(255, 59, 48, 0.15));
  color: #ff3b30;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 59, 48, 0.3);
}

.remove-item:hover {
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.4), rgba(255, 59, 48, 0.3));
  transform: scale(1.15) ;
  box-shadow: 0 8px 20px rgba(255, 59, 48, 0.3);
}

.cart-total {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 32px 0;
  padding: 28px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, 
    rgba(255, 196, 0, 0.08) 0%, 
    rgba(255, 196, 0, 0.03) 50%, 
    transparent 100%);
  border: 2px solid rgba(255, 196, 0, 0.15);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(255, 196, 0, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.cart-total::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 196, 0, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.cart-total:hover::before {
  left: 100%;
}

.cart-total span:first-child {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cart-total span:last-child {
  color: var(--main-color);
  font-size: 1.6rem;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(255, 196, 0, 0.3);
}

.cart-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.btn-clear, .btn-order {
  min-width: 140px;
  max-width: 180px;
  height: 48px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s, border 0.3s;
  white-space: nowrap;
  padding: 0 24px;
  right: 0;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  box-shadow: none;
}

.btn-clear {
  background: red;
  color: #ffffff;
  margin-right: 10px;
  margin-left: auto;
  box-shadow: none;
  transition: 0.3s ease-in-out;
}
.btn-clear:hover {
  box-shadow: 0 0 18px 2px rgba(255, 0, 0, 0.491);
  color: #fff;
  transform: scale(1.1);
}



.btn-order {
  background: linear-gradient(135deg, var(--main-color), #ffd54f);
  color: var(--dark-bg);
  margin-left: 10px;
  margin-right: 0;
  box-shadow: none;
  transition: 0.3s ease-in-out;
}

.btn-order:hover {
  background: linear-gradient(135deg, #fff200, var(--main-color));
  color: #181818;
  box-shadow: 0 0 18px 2px rgba(255,196,0,0.38);
  transform: scale(1.1);
}

.close-popup-bottom {
  display: flex;
  margin: 18px 0 0 0;
  width: 220px;
  max-width: 90vw;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: auto;
}

.cart-popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.cart-total {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  margin-top: 12px;
  padding: 24px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.05) 0%, transparent 100%);
  border-top: 3px solid rgba(255, 196, 0, 0.25);
}

.empty-cart {
  font-family: 'Raleway', sans-serif;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 32px 0 24px 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 28px;
}



.btn-clear{
  animation: none;
}



   
@media (max-width: 768px) {

  header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-left: 10;
    margin-right: 0;
    padding: 40px 20px;
    height: auto;
  }
  .logo{
    margin-left: 0;
    font-size: 20px;
  }
  .header-left{
    display: flex;
    gap: 0.5rem;
  }

    .navbar {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 0.5rem;
      display: none;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: rgba(0, 0, 0, 0.95);
      padding: 12px 0;
      z-index: 999;
    }
    .h-icons{
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 0.5rem;
      font-size: 20px;
      margin-left: auto;
    }

    .navbar.open {
      display: flex;
    }
    .opening-status-nav {
      display: none;
    }
    .opening-status-home {
      display: flex;
      margin: 0 0 16px 0;
      padding: 12px 20px;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 25px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      margin-top: 0px;
    }



  .home {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-right: 0;
    padding:120px 20px;
    height: auto;
    margin-top: 10px;
  }

  .home-text {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 0;
    margin-bottom: 30px;
    margin-top: 0px;
  }

  .home-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .home-text p {
    margin: 0 auto;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
    text-align: center; 
  }

  .btn {
    margin: 20px 7px 0 7px;
    display: inline-block;
    right: 0;
    left: 0;
  }

  .menu-categories {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-template-columns: 1fr !important;
    gap: 20px;
    width: 100%;
    padding: 0 10px;
  }

  .contact-grid {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-template-columns: 1fr !important;
    gap: 20px;
    width: 100%;
    padding: 0 10px;
  }

  .container-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-template-columns: 1fr !important;
    gap: 20px;
    width: 100%;
    padding: 0 10px;
  }

  .contact-card {
    width: 90%;
    margin: 0 auto;
  }

  .cart-popup-content,
  .menu-popup-content {
    width: 95vw;
    padding: 16px;
    border-radius: 16px;
  }

  .menu-item-footer {
    flex-direction: column;
    align-items: center;
  }
}

/* Tablets */
@media (max-width: 768px) {
  /* Header */
  header {
    padding: 10px 0;
    justify-content: space-between;
  }
  
  .header-left {
    left: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
  }
  
  .h-icons {
    right: 0;
    position: relative;
    margin-right: 20px;
  }
  
  .logo {
    font-size: 28px;
  }
  
  .opening-status-nav {
    margin-left: 12px;
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    transition: 0.4s ease;
    z-index: 1000;
  }
  
  .navbar.open {
    right: 0;
  }
  
  
  
  #menu-icon {
    display: block;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  /* Header */
  header {
    padding: 8px 0;
    justify-content: space-between;
  }
  
  .header-left {
    left: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
  }
  
  .h-icons {
    right: 0;
    position: relative;
    margin-right: 15px;
    padding: 8px 16px;
    gap: 12px;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .opening-status-nav {
    margin-left: 8px;
    padding: 4px 8px;
    font-size: 0.75rem;
  }
  
  .h-icons i {
    font-size: 18px;
    margin-right: 10px;
    margin-left: 4px;
  }
  
  #menu-icon {
    font-size: 24px;
  }
}

/* Small Mobile Phones */
@media (max-width: 360px) {
  header {
    padding: 10px 0;
    justify-content: space-between;
  }
  
  .header-left {
    left: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
  }
  
  .h-icons {
    right: 0;
    position: relative;
    margin-right: 10px;
    padding: 6px 12px;
    gap: 8px;
  }
  
  .logo {
    font-size: 22px;
  }
  
  .opening-status-nav {
    margin-left: 6px;
    padding: 3px 6px;
    font-size: 0.7rem;
  }
  
  .h-icons i {
    font-size: 16px;
    margin-right: 8px;
    margin-left: 2px;
  }
  
  #menu-icon {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 16px;
    margin: 0;
    height: 70px;
    text-align: center;
  }
  .header-left, .h-icons {
    position: static;
    margin: 0;
    left: auto;
    right: auto;
  }
  .logo {
    margin-left: 0;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 8px 12px;
  }
  .header-left, .h-icons {
    position: static;
    margin: 0;
    left: auto;
    right: auto;
  }
}

@media (max-width: 360px) {
  header {
    padding: 10px 6px;
  }
  .header-left, .h-icons {
    position: static;
    margin: 0;
    left: auto;
    right: auto;
  }
}

@media (max-width: 600px) {
  .menu-categories {
    display: grid !important;
    grid-template-columns: repeat(2, 23fr) !important;
    gap: 16px !important;
    justify-items: center;
    align-items: stretch;
  }
  .menu-tab{
    width: 120px;
    height: 160px;
   
    border-radius: 12px;
  }
  .menu-popup{
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
  }
  .menu-popup-content{
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }

}

@media (max-width: 600px) {
  .menu-popup-content {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    padding: 8px 0 2px 0 !important;
    margin: 0 !important;
    left: 0; right: 0; top: 0; bottom: 0;
  }
  
  .hours-popup-content {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    padding: 20px 16px !important;
    margin: 0 !important;
    left: 0; right: 0; top: 0; bottom: 0;
  }
  
  .hours-header {
    margin-bottom: 24px !important;
    gap: 12px !important;
  }
  
  .hours-icon {
    width: 60px !important;
    height: 60px !important;
  }
  
  .hours-icon i {
    font-size: 2rem !important;
  }
  
  .hours-header h3 {
    font-size: 1.6rem !important;
  }
  
  .current-status {
    font-size: 1rem !important;
    padding: 10px 20px !important;
  }
  
  .day-group {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  
  .days {
    font-size: 1.1rem !important;
  }
  
  .times {
    font-size: 1.2rem !important;
  }
  
  .schedule-item {
    padding: 18px !important;
  }
  
  .detail-item {
    padding: 12px 16px !important;
    gap: 12px !important;
  }
  
  .detail-item i {
    font-size: 1.3rem !important;
  }
  
  .detail-content h4 {
    font-size: 1rem !important;
  }
  
  .detail-content p {
    font-size: 0.9rem !important;
  }
  
  /* Menu popup specific styles */
  .close-popup {
    top: 8px !important;
    right: 8px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 1.4rem !important;
    border: 1.5px solid var(--main-color);
    box-shadow: none;
    z-index: 1001;
  }
  .menu-popup-content h3 {
    font-size: 1.2rem !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px !important;
    font-weight: 800;
    text-align: left;
    padding-left: 10px;
    letter-spacing: 0.5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .menu-popup-content ul {
    gap: 0px !important;
  }
  .menu-item.detailed, .menu-item.simple {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 8px 4px !important;
    margin: 0 0 0px 0 !important;
    border-radius: 8px !important;
    border-width: 1px !important;
    min-height: 100px !important;
    box-shadow: none !important;
    background: rgba(30,30,30,0.97);
  }
  .menu-item-image {
    width: 100% !important;
    height: 90px !important;
    margin-bottom: 6px;
    border-radius: 8px !important;
    border: 1.5px solid var(--main-color) !important;
    overflow: hidden;
  }
  .menu-item-image img {
    width: 200%;
    height: 100%;
    max-width: 200%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px !important;
  }
  .menu-item-content h4 {
    font-size: 0.95rem !important;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--main-color);
    text-align: left;
    letter-spacing: 0.3px;
  }
  .menu-item-content .description {
    font-size: 0.85rem !important;
    color: #b0b0b0;
    margin-bottom: 4px;
    text-align: left;
  }
  .menu-item-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    margin-top: 4px !important;
  }
  .menu-item-footer .price {
    font-size: 1rem !important;
    font-weight: 900;
    color: var(--main-color);
    text-align: left;
    margin-bottom: 1px;
  }
  .quantity-controls {
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 4px 2px 0 0 !important;
    width: 150%;
  }
  .quantity-btn, .add-to-cart-btn {
    max-width: 318px !important;
    max-height: 138px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }
  .add-to-cart-btn {
    flex: 1 1 100%;
    margin-left: 0 !important;
    margin-top: 0 !important;
    font-weight: 800;
    font-size: 0.95rem !important;
    padding: 10px 0 !important;
    border-radius: 10px !important;
    box-shadow: none;
    margin-bottom: 0 !important;
  }
  .quantity-display {
    min-width: 28px !important;
    font-size: 0.95rem !important;
    border-radius: 7px !important;
    padding: 6px 0 !important;
  }
}

@media (max-width: 600px) {
  .menu-popup-content {
    background: transparent !important;
    padding: 8px 0 24px 0 !important;
  }
  .menu-item.detailed, .menu-item.simple {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background:rgba(0, 0, 0, 0.069) !important;
    border: 1.5px solid var(--main-color) !important;
    border-radius: 14px !important;
    margin-bottom: 10px !important;
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.08) !important;
    padding: 10px 8px !important;
    min-height: 80px !important;
  }
  .menu-item-image {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    border-radius: 10px !important;
    border: 2px solid var(--main-color) !important;
    margin: 0 12px 0 0 !important;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
  }
  .menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px !important;
  }
  .menu-item-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    gap: 2px;
  }
  .menu-item-content h4 {
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 800;
    margin-bottom: 2px;
    text-align: left;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .menu-item-content .description {
    color: #b0b0b0 !important;
    font-size: 0.85rem !important;
    margin-bottom: 4px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .menu-item-footer {
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 2px !important;
    flex-wrap: wrap;
  }
  .menu-item-footer .price {
    color: var(--main-color) !important;
    font-size: 1.1rem !important;
    font-weight: 900;
    text-align: left;
    margin-bottom: 0;
    margin-right: 8px;
    white-space: nowrap;
  }
  .quantity-controls {
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto;
  }
  .quantity-btn {
    max-width: 32px !important;
    max-height: 32px !important;
    font-size: 1rem !important;
    border-radius: 50% !important;
    background: #222 !important;
    color: var(--main-color) !important;
    border: 1.5px solid var(--main-color) !important;
    box-shadow: none !important;
  }
  .add-to-cart-btn {
    background: linear-gradient(135deg, var(--main-color), #ffd54f) !important;
    color: #181818 !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 11rem !important;
    max-width: 44px !important;
    max-height: 44px !important;
    margin-left: 8px !important;
    box-shadow: 0 2px 8px rgba(255,196,0,0.13) !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px !important;
    white-space: nowrap;
  }
  .add-to-cart-btn i {
    font-size: 1.2rem !important;
    margin-right: 4px;
  }
  .quantity-display {
    min-width: 24px !important;
    font-size: 0.95rem !important;
    border-radius: 7px !important;
    padding: 4px 0 !important;
    background: #222 !important;
    color: var(--main-color) !important;
    border: 1.5px solid var(--main-color) !important;
  }
}

@media (max-width: 600px) {
  .menu-item.detailed, .menu-item.simple {
    min-height: 100px !important;
    padding: 16px 10px !important;
    border-radius: 18px !important;
  }
  .menu-item-image {
    width: 90px !important;
    height: 90px !important;
    min-width: 90px !important;
    border-radius: 14px !important;
    margin: 0 16px 0 0 !important;
  }
  .menu-item-content h4 {
    font-size: 1.08rem !important;
    font-weight: 900;
    margin-bottom: 2px;
    letter-spacing: 0.4px;
  }
  .menu-item-content .description {
    font-size: 0.75rem !important;
    color: #b0b0b0 !important;
    margin-bottom: 2px;
    line-height: 1.3;
  }
  .menu-item-footer {
    gap: 10px !important;
    margin-top: 2px !important;
  }
  .menu-item-footer .price {
    font-size: 1.18rem !important;
    font-weight: 900;
    margin-right: 10px;
  }
  .quantity-controls {
    gap: 2px !important;
  }
  .quantity-btn {
    min-width: 22px !important;
    min-height: 22px !important;
    font-size: 0.85rem !important;
    border-radius: 50% !important;
    padding: 0 !important;
  }
  .quantity-display {
    min-width: 18px !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
    padding: 2px 0 !important;
  }
  .add-to-cart-btn {
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin-left: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--main-color), #ffd54f) !important;
    color: #181818 !important;
    box-shadow: 0 2px 8px rgba(255,196,0,0.13) !important;
    border: none !important;
    font-size: 1.3rem !important;
    font-weight: 900 !important;
  }
  .add-to-cart-btn span, .add-to-cart-btn .btn-text {
    display: none !important;
  }
  .add-to-cart-btn i {
    font-size: 1.3rem !important;
    margin: 0 !important;
    color: #181818 !important;
  }
}

@media (max-width: 600px) {
  .menu-item.detailed, .menu-item.simple {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 130px !important;
    padding: 18px 10px !important;
    border-radius: 20px !important;

  }
  
  @keyframes highlightPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,196,0,0.18); }
    50% { box-shadow: 0 0 18px 6px rgba(255,196,0,0.35); }
    100% { box-shadow: 0 0 0 0 rgba(255,196,0,0.18); }
  }
 
  .menu-item-image {
    width: 120px !important;
    height: 120px !important;
    min-width: 120px !important;
    border-radius: 12px !important;
    margin: 0 18px 0 0 !important;
    box-shadow: 0 0 0 3px var(--main-color);
    margin-left: 10px !important;
    animation: highlightPulse 4s infinite;
    box-shadow: 0 0 0 0 rgba(255,196,0,0.18);
    transition: box-shadow 0.5s ease;
    
  }
  .menu-item-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-align: center;
    padding: 0 8px;
  }
  .menu-item-content h4 {
    width: 100%;
    text-align: center;
    margin: 0 auto 4px auto;
    font-size: 1.18rem !important;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: wrap;
  }
  .menu-item-content .description {
    font-size: 0.82rem !important;
    color: #b0b0b0 !important;
    margin-bottom: 6px;
    line-height: 1.4;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    max-width: 100%;
    display: block;
  }
  .menu-item-footer {
    justify-content: center !important;
    margin: 0 auto 0 auto !important;
    gap: 10px !important;
  }
  .menu-item-footer .price {
    font-size: 1.22rem !important;
    font-weight: 900;
    margin: 0 auto 0 auto;
    color: var(--main-color) !important;
  }
  .controls-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    margin-left: 16px;
    gap: 4px;
  }
  .quantity-controls {
    gap: 1px !important;
    margin-right: 1px !important;
    margin-left: 12px !important;
    margin-top: 1px !important;
   
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
   
  }
  .quantity-btn {
    width: 50px !important;
    height: 50px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    font-size: 1rem !important;
    border-radius: 50% !important;
    padding: 10px !important;
  }
  .quantity-display {
    max-width: 15px !important;
    font-size: 1.2rem !important;
    border-radius: 5px !important;
    padding: 1px 0 !important;
    margin: 2px !important;
    width: 50px !important;
    height: 50px !important;
    max-width: 30px !important;
    max-height: 30px !important;
  }
  .add-to-cart-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    padding: 8px !important;
    margin-left: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    color: var(--main-color) !important;
    box-shadow: none !important;
    border: none !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
  }
  .add-to-cart-btn span, .add-to-cart-btn .btn-text {
    display: none !important;
  }
  .add-to-cart-btn i {
    display: none !important;
    font-size: 1.3rem !important;
    margin: 0 !important;
    color: var(--main-color) !important;
  }
}



@media (max-width: 768px) {
  .header-image {
    display: flex !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 0px !important;
    box-sizing: border-box !important;
    background-color: #18181891 !important;
  }
  .navbar a{
    display: flex !important;
    padding: 20px !important;
    margin: 15px 20px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: calc(100% - 40px) !important;
    box-sizing: border-box !important;
  }
}

/* Hide .mobile-only on desktop, show only on mobile */
.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }
}


  @media (max-width: 768px) {
    body {
      background-image: url('../images/mobliebg.png'); /* Corrected filename */
      background-size: cover;
      background-position: center;
    }
  .contact {
    margin-top: 0 !important;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.85), rgba(18, 18, 18, 0.9)) !important;
    backdrop-filter: blur(10px) !important;
    border-top: 1px solid rgba(255, 196, 0, 0.15) !important;
    border-bottom: 1px solid rgba(255, 196, 0, 0.15) !important;
    box-shadow: inset 0 4px 20px rgba(255, 196, 0, 0.05) !important;
    border-radius: 30px !important;
  }
  
  .contact h2 {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 8px rgba(255, 196, 0, 0.3) !important;
    letter-spacing: 0.5px !important;
  }
  
  .contact p {
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.5 !important;
  }

}

  .btn-clear, .btn-order {
    min-width: 100px;
    height: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 0 16px;
    margin: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
  }
  .btn-clear:hover, .btn-order:hover {
    transform: none;
    box-shadow: none;
  }

  /* Mobile Cart Items - Smaller Size */
  .cart-item {
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 16px;
  }

  .cart-item-info {
    margin-right: 12px;
  }

  .cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .cart-item-info p {
    font-size: 0.9rem;
  }

  .cart-item-quantity {
    gap: 8px;
    margin-right: 12px;
  }

  .cart-item-quantity .quantity-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .cart-item-quantity .quantity-display {
    min-width: 24px;
    font-size: 1rem;
  }

  .cart-item-total {
    font-size: 1.1rem;
    margin-right: 12px;
  }

  .cart-item .remove-item {
    width: 32px;
    height: 32px;
  }

  .cart-total {
    padding: 20px 16px;
    margin: 8px 0 24px 0;
  }

  .cart-total span:first-child {
    font-size: 1.1rem;
  }

  .cart-total span:last-child {
    font-size: 1.4rem;
  }

  .cart-actions {
    gap: 8px;
    margin-bottom: 20px;
  }




/* Fix linter error: ensure all brackets are closed */

footer, .last-text {
  background-color: #18181887;
  border-top: 2px solid var(--main-color);
  box-shadow: 0 -4px 24px rgba(255,196,0,0.08);
  color: var(--second-color);
  text-align: center;
  width: 100%;
}

/* Enhanced Mobile Navigation Styles */
.mobile-nav-content {
  display: none;
  flex-direction: column;
  padding: 32px 0 24px 0;
  gap: 24px;
  border-top: 1px solid rgba(255, 196, 0, 0.2);
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.open .mobile-nav-content {
  opacity: 1;
  transform: translateY(0);
}

.nav-info-card {
  text-align: center;
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.08) 0%, rgba(255, 196, 0, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 196, 0, 0.2);
  backdrop-filter: blur(10px);
  margin: 0 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--main-color);
  box-shadow: 0 4px 16px rgba(255, 196, 0, 0.3);
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-info-card h3 {
  color: var(--text-color);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.nav-info-card h3 span {
  color: var(--main-color);
}

.nav-info-card p {
  color: var(--second-color);
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}

.nav-opening-status {
  margin: 0 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.nav-status-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-status-content i {
  font-size: 1.4rem;
  color: var(--main-color);
  animation: pulse 2s infinite;
}

.nav-status-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.status-label {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
}

.status-hours {
  color: var(--second-color);
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 20px;
}

.nav-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.1) 0%, rgba(255, 196, 0, 0.05) 100%);
  border: 1px solid rgba(255, 196, 0, 0.3);
  border-radius: 16px;
  color: var(--text-color);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  gap: 6px;
  min-height: 70px;
}

.nav-action-btn i {
  font-size: 1.4rem;
  color: var(--main-color);
  transition: all 0.3s ease;
}

.nav-action-btn:hover {
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.2) 0%, rgba(255, 196, 0, 0.1) 100%);
  border-color: var(--main-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 196, 0, 0.2);
}

.nav-action-btn:hover i {
  transform: scale(1.1);
  animation: pulse 1s infinite;
}

.nav-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-contact-item i {
  font-size: 1.2rem;
  color: var(--main-color);
  width: 24px;
  text-align: center;
}

.nav-contact-item span {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-contact-item:hover {
  color: var(--main-color);
  transform: translateX(5px);
}

.nav-contact-item:hover span {
  color: var(--main-color);
}

.nav-social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 20px;
  padding: 20px 0;
}

.nav-social-btn {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.1) 0%, rgba(255, 196, 0, 0.05) 100%);
  border: 1px solid rgba(255, 196, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-social-btn:hover {
  background: linear-gradient(135deg, var(--main-color), #ffd54f);
  color: var(--dark-bg);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 196, 0, 0.4);
  border-color: transparent;
}

.nav-footer {
  text-align: center;
  margin: 0 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-footer p {
  color: var(--second-color);
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.7;
}

/* Mobile navigation backdrop */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.234);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Show mobile nav content only on mobile when nav is open */
@media (max-width: 768px) {
  .navbar.open .mobile-nav-content {
    display: flex;
  }
  
  .navbar.open {
    padding-bottom: 20px;
    max-height: 100vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--main-color) transparent;
  }
  
  .navbar.open::-webkit-scrollbar {
    width: 6px;
  }
  
  .navbar.open::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .navbar.open::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 3px;
  }
  
  .navbar.open::-webkit-scrollbar-thumb:hover {
    background: #ffd54f;
  }
  
  .nav-opening-status.open {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.4);
  }
  
  .nav-opening-status.open .nav-status-content i {
    color: #4CAF50;
  }
  
  .nav-opening-status.open .status-label {
    color: #4CAF50;
  }
  
  .nav-opening-status.closed {
    background: rgba(244, 67, 54, 0.15);
    border-color: rgba(244, 67, 54, 0.4);
  }
  
  .nav-opening-status.closed .nav-status-content i {
    color: #f44336;
  }
  
  .nav-opening-status.closed .status-label {
    color: #f44336;
  }
}

/* Admin Table Styles */
#itemsTableContainer {
  margin-top: 20px;
  overflow-x: auto;
}

#itemsTable {
  width: 100%;
  border-collapse: collapse;
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

#itemsTable th {
  background-color: #ffc400;
  color: #1a1a1a;
  font-weight: bold;
  padding: 12px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#itemsTable td {
  padding: 12px;
  border-bottom: 1px solid #3a3a3a;
  color: white;
  vertical-align: middle;
}

#itemsTable tr:hover {
  background-color: #3a3a3a;
}

#itemsTable tr:last-child td {
  border-bottom: none;
}

.table-item-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid #ffc400;
}

.table-category {
  background-color: #ffc400;
  color: #1a1a1a;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
}

.table-price {
  font-weight: bold;
  color: #ffc400;
  font-size: 16px;
}

.delete-btn {
  background-color: #ff4444;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.delete-btn:hover {
  background-color: #cc0000;
}

.delete-btn:active {
  transform: scale(0.98);
}

.loading-spinner {
  color: #ffc400;
  font-style: italic;
}

.no-items {
  text-align: center;
  color: #888;
  font-style: italic;
  padding: 20px;
}

.table-description {
  max-width: 200px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.4;
}

#categoryFilter {
  background-color: #2a2a2a;
  color: white;
  border: 2px solid #ffc400;
  font-weight: bold;
}

/* Remove old background-image rules for Desktopbg.png and mobilebg.png */

.bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
}

.bg-img-desktop {
  display: block;
}
.bg-img-mobile {
  display: none;
}

@media (max-width: 768px) {
  .bg-img-desktop {
    display: none;
  }
  .bg-img-mobile {
    display: block;
  }
}






