/* Product grid (unchanged) */
.custom-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.menuitem {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.menuitem:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.menuitem img { width: 100%; height: 220px; object-fit: cover; }
.menuitem .content-box { padding: 20px; }
.menuitem .name { font-size: 1.2rem; margin-bottom: 8px; }
.menuitem p { font-size: 0.95rem; color: #555; margin-bottom: 16px; min-height: 60px; }
.menuitem .btn { display: flex; justify-content: space-between; align-items: center; }
.menuitem .price { color: #222; font-size: 1.4rem; margin: 0; }
.menuitem .btn a {
  background: #ff7300; color: white; padding: 10px 20px;
  border-radius: 8px; text-decoration: none; transition: background 0.3s;
}
.menuitem .btn a:hover { background: #e36400; }

/* Menu list style */
.cmd-menu-list h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  margin: 0 0 10px 0;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 6px;
}
.cmd-menu-list h5 s {
  color: #999;
  font-size: 0.9em;
  margin-left: 5px;
}

/* Fixed bottom cart bar */
#cmd-cart-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #222;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 25px;
  font-size: 16px;
  z-index: 99999;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.25);
}
#cmd-cart-bar .cmd-total {
  font-weight: 500;
  display: inline-block;
  transition: transform 0.22s ease, color 0.22s ease;
  will-change: transform;
}
#cmd-cart-bar .cmd-total.animated {
  transform: scale(1.18);
  color: #ff7300;
}
#cmd-cart-bar .cmd-view-cart {
  background: #ff7300;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
#cmd-cart-bar .cmd-view-cart:hover { background: #e36400; }
