/* ===============================
   RESTAURANT MENU UX – BASE
================================ */

.restaurant-menu {
  max-width: 1100px;
  margin: auto;
}

/* ===============================
   TWO COLUMN LAYOUT
   (Left categories / Right items)
================================ */

.layout-two-column {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  align-items: flex-start;
}

/* ===============================
   LEFT CATEGORY SIDEBAR
================================ */

.menu-sidebar {
  position: sticky;
  overflow-x: scroll;
  top: 80px;
  height: fit-content;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  z-index: 99;
}

.menu-nav a {
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
}

.menu-nav a.active,
.menu-nav a:hover {
  background: #e9f7ec;
  color: #60b246;
}

/* ===============================
   RIGHT CONTENT AREA
================================ */

.menu-content {
  min-width: 0;
}

/* ===============================
   CATEGORY SECTIONS
================================ */

.menu-category {
  margin-bottom: 40px;
}

.menu-category h2 {
  margin-bottom: 16px;
}

/* ===============================
   PRODUCT GRID
================================ */

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ===============================
   PRODUCT CARD
================================ */

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease;
}

.menu-item:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* LEFT CONTENT */
.menu-item-left h3 {
  font-size: 18px !important;
  margin-bottom: 6px;
}

/* RIGHT IMAGE */
.menu-item-image img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* ===============================
   BADGES & TAGS
================================ */

.badge {
  font-size: 12px;
  display: inline-block;
  margin-bottom: 4px;
}

.veg {
  color: green;
}

.nonveg {
  color: red;
}

.bestseller {
  background: #ffcc00;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

/* ===============================
   QUANTITY CONTROLS
================================ */

.qty-box {
  display: inline-flex;
  border: 1px solid #60b246;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 10px;
}

.qty-box button {
  background: #60b246;
  color: #fff;
  border: none;
  width: 28px;
  cursor: pointer;
}

.qty-count {
  padding: 0 10px;
  line-height: 28px;
}

/* ===============================
   FLOATING CART
================================ */

#rmux-cart {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #60b246;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  gap: 15px;
  z-index: 9999;
}

/* ===============================
   RESPONSIVE (MOBILE)
================================ */

@media (max-width: 991px) {

  .layout-two-column {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    position: sticky;
    top: 60px;
    background: #fff;
    z-index: 99;
  }

  .menu-nav {
    flex-direction: row;
    gap: 15px;
    padding-bottom: 10px;
  }

  .menu-nav a {
    white-space: nowrap;
  }

}

@media (max-width: 767px) {
  .menu-items {
    grid-template-columns: 1fr;
  }
}













#rmux-quickview-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
}

.rmux-quickview-inner {
    background: #fff;
    max-width: 520px;
    height: auto;
    padding: 20px;
    border-radius: 14px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rmux-close-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
}

.rmux-success-msg {
  background: #e9f7ec;
  color: #2e7d32;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-weight: 500;
}





/* Success toast */
#rmux-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #323232;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 14px;
  z-index: 100000;
  opacity: 0;
  transition: all 0.3s ease;
}

#rmux-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* Floating cart bump animation */
@keyframes rmux-cart-bump {
  0%   { transform: translateX(-50%) scale(1); }
  30%  { transform: translateX(-50%) scale(1.1); }
  60%  { transform: translateX(-50%) scale(0.95); }
  100% { transform: translateX(-50%) scale(1); }
}

#rmux-cart.bump {
  animation: rmux-cart-bump 0.45s ease;
}

