.menu-section {
  text-align: center;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.menu-section h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.menu-section .subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.menu-tabs .tab {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 20px;
  background: #f2f2f2;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.menu-tabs .tab.active,
.menu-tabs .tab:hover {
  background: #d81b60;
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-3px);
  cursor: pointer;
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.item-body {
  padding: 1.2rem;
  background: white;
  text-align: center;
}

.item-body .price {
  color: #b10000;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.item-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin: 0.25rem 0;
}

.item-body p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}
