/* ===============================
   MENU GRID
================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}






/* ===============================
   FILTERS & TABS
================================ */
.menu-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.menu-tabs button {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #111;
  background: #fff;
  cursor: pointer;
  color: #111;
}

.menu-tabs .active {
  background: #fff0f0;
  border-color: red;
  color: red;
}

.type-filter button {
  border: none;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
}

.menu-search input {
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
}

/* ===============================
   DROPDOWN
================================ */
.type-dropdown {
  position: relative;
  margin-right: 10px;
}

.filter-btn {
  background: #fff;
    border: 1px solid #ddd;
    padding: 0;
    /* border-radius: 6px; */
    cursor: pointer;
    /* font-size: 14px; */
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 50px;
    height: 39px;
    justify-content: space-evenly;
  
}

.filter-btn img{
height:17px;
}


.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  width: 150px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  display: none;
  z-index: 100;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu div {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
}

.dropdown-menu div:hover {
  background: #cdcdcd;
}

.dropdown-menu div:active {
  background: #cdcdcd;
}

/* ===============================
   MENU CARD (BASE)
================================ */
/* ===============================
   MENU CARD – SIMPLE PREMIUM HOVER
================================ */
.menu-card {
  background: #e7e7e7;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,.08);
  padding: 10px;
  position: relative;
  overflow: hidden;
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* Subtle lift */
.menu-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

/* Image zoom – very soft */
.menu-card img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  height: 200px;
}

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

/* Title color change */
.menu-card h4 {
  transition: color 0.25s ease;
}

.menu-card:hover h4 {
  color: #d32f2f;
}

/* Price highlight */
.res_price {
  font-weight: bold;
  transition: color 0.25s ease;
}

.menu-card:hover .res_price {
  color: #2e7d32;
}

/* ===============================
   VEG / NON-VEG ICON
================================ */
.veg {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 18px;
  height: 18px;
  z-index: 5;
}

.veg.veg {
  background-image: url(https://accentpark.com/wp-content/uploads/2026/01/veg.svg);
  background-size: cover;
}

.veg.nonveg {
  background-image: url(https://accentpark.com/wp-content/uploads/2026/01/nonveg.svg);
  background-size: cover;
}


input[type=text], input[type=number], input[type=email], input[type=tel], input[type=url], input[type=password], input[type=search], textarea, .input-text {
    border-radius: 5px;
    padding: 8px 16px;
    border-color: #e0e0e0;
    background-color: #ffffff;
    color: var(--text);
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    box-sizing: border-box;
    font-weight: normal;
    outline: 0;
    transition: all ease-in-out 0.3s;
    font-size: 0.9em;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (hover: none) {
  .menu-card:hover {
    transform: translateY(-6px);
  }
}
