.menu .title {
  font-size: 1.88vw;
  font-weight: 500;
}

.menu h3 {
  margin-bottom: 0.5rem;
}
.menu .input-zone {
  display: flex;
  gap: 1rem;
  width: 63%;
}
.menu input::placeholder {
  color: #5e5e5e;
}
.select {
  border: 1px #d6d6d6 solid;
  height: 40px;
  padding: 0 0.5rem;
  background-color: white;
  text-align: start;
}
.select-wrapper .dropdown-menu {
  width: 100%;
  padding: 1rem;
  border: 1px #c9c8c7 solid;
  box-shadow: unset;
}
.select-wrapper .dropdown-menu ul {
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.product-category .select-wrapper .dropdown-menu ul {
  height: auto;
}
.select-wrapper .dropdown-menu .dropdown-item a {
  padding: 2% 0;
  color: #5e5e5e;
}
.select-wrapper .dropdown-menu .dropdown-item:hover {
  background-color: unset;
  color: #5e5e5e;
}
.select-wrapper .dropdown-menu .dropdown-item input {
  width: fit-content;
  border-color: #c9c8c7;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.select-wrapper .dropdown-menu .btn {
  background-color: #eb0028;
  height: 40px;
  border-radius: 10px;
  width: 100%;
  font-size: 16px;
}
.select-wrapper .dropdown-menu .btn:hover {
  background-color: white;
  border: 1px #eb0028 solid;
  color: #eb0028;
  transition: 0.3s ease-in-out;
}
.menu input,
.menu .select {
  padding-right: 40px;
}
.menu input,
.menu .select {
  font-size: 16px;
  border-radius: 10px;
  color: #5e5e5e;
  width: 100%;
  position: relative;
}
.menu .icon-search {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  display: grid;
  place-items: center;
}
.menu-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-top: 50px;
}
.menu-card {
  font-size: 16px;
  color: black;
  font-weight: 300;
}
.menu-card:hover {
  color: black;
  scale: 1.03;
  transition: 0.5s ease-in-out;
}
/* .menu-card:hover img {
  scale: 1.1;
  transition: 0.3s ease-in-out;
} */
.menu-card:hover .seemore {
  color: #eb0028;
  transition: 0.3s ease-in-out;
}
.menu-card img {
  border-radius: 15px;
  margin-bottom: 3%;
}
.menu-category-card .card-title-category-icon {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  width: 75%;
}
.menu-category-card .card-title-category-icon img {
  margin-right: 1rem;
  border-radius: 0;
  margin-bottom: 0;
}
.menu-card.menu-category-card .card-detail {
  height: 1.5rem;
  -webkit-line-clamp: 2;
  text-align: center;
}
.menu-card .card-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  height: 2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  width: 75%;
}
.menu-card .seemore {
  font-size: 14px;
  font-weight: 400;
  color: #eb0028;
}
/* .menu-card.menulist-card .card-detail {
  height: 4.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
} */
.menu-card .card-detail {
  height: 4.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}
@media (max-width: 991px) {
  .menu .title {
    font-size: 28px;
    margin-bottom: 1rem;
  }
  .menu .input-zone {
    width: 100%;
  }
  .select-wrapper .dropdown-menu {
    padding: 0.5rem;
  }
  .select-wrapper .dropdown-menu ul {
    margin-bottom: 0.5rem;
  }
  .select-wrapper .dropdown-item {
    padding: 0.25rem 0;
    font-size: 16px;
  }
  .menu .select-wrapper.cat .dropdown-menu {
    width: 190px;
  }
  .menu .select-wrapper.brand .dropdown-menu {
    width: 100%;
  }
  .menu .select-wrapper .dropdown-menu ul {
    height: 190px;
    font-size: 16px;
    margin: 0;
  }
  .menu .select-wrapper .dropdown-menu .btn {
    line-height: 1;
    height: 40px;
    font-size: 16px;
  }
  .menu input,
  .menu .select {
    font-size: 16px;
    padding-right: 10px;
  }
  .menu .select .text {
    height: 1.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
  }
  .menu-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  .menu-card {
    margin-bottom: 2rem;
  }

  .menu-card .seemore {
    display: none;
  }
  .menu-card .card-detail {
    height: 4.2rem;
  }

  .menu-category-card .card-title-category-icon img {
    width: 45px;
    margin-right: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-content {
    grid-template-columns: 1fr 1fr;
  }
}
