.lws-foodmenu-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.lws-food-wrapper .food-category-caption {
  margin-bottom: 50px;
  text-align: center;
  font-size: 22px;
  width: 100%;
}
.lws-food-wrapper .food-category-caption h2 {
  margin-bottom: 30px;
  font-size: 2em;
}

.foodmenu-item {
  background: linear-gradient(90deg, #231f20, rgba(202, 164, 122, 0.5));
  padding: 15px;
  border-radius: 5px;
  height: 100%;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.food-menu-item-image {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.food-menu-item-image .foodmenu-item-meta {
  width: 68%;
}
.food-menu-item-image .foodmenu-item-image {
  width: 30%;
}
.foodmenu-item-image img {
  width: 100%;
}
.foodmenu-item h3 {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dee;
  padding-bottom: 10px;
  font-size: 1em;
  margin-top: 0px;
}
.foodmenu-item h3 span {
  font-size: 1.4em;
  font-weight: bold;
  margin-left: 15px;
}
/*=========== Food Menu Tabs ===========*/
.tabs-wrapper {
  margin: 20px 0;
}

.food-tabs {
  list-style: none !important;
  display: flex;
  gap: 10px;
  padding: 0px !important;
  margin: 0px;
  justify-content: center;
  flex-wrap: wrap;
}
.food-tabs li {
  padding: 10px 20px;
  cursor: pointer;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
}

.food-tabs li.active {
  background: inherit;
  color: #000;
  border: 1px solid #000;
}
.food-tabs-content .food-tab-content {
  display: none;
  margin-top: 20px;
}
@media screen and (max-width: 991px) {
  .food-menu-item-image .foodmenu-item-meta {
    width: 100%;
    order: 2;
  }
  .food-menu-item-image .foodmenu-item-image {
    width: 100%;
    order: 1;
  }
}
@media screen and (max-width: 642px) {
  .lws-foodmenu-grid {
    grid-template-columns: 1fr !important;
  }
}
