.menu-section {
  padding: 6rem 0;
  background: var(--white);
}
.menu-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.menu-intro h2 {
  font-size: 2.5rem;
  color: var(--primary-brand);
  font-weight: 800;
}

/* Delivery Toggle Tabs */
.delivery-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4rem;
}
.tab input {
  display: none;
}
.tab-box {
  padding: 1rem 2rem;
  background: var(--yogurt-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.tab input:checked + .tab-box {
  background: var(--primary-brand);
  color: white;
  border-color: var(--primary-brand);
  box-shadow: 0 10px 20px rgba(0, 74, 173, 0.2);
}

/* Category Headings injected by JS */
.category-header {
  grid-column: 1 / -1;
  margin: 3rem 0 1.5rem;
  font-size: 1.8rem;
  color: var(--primary-brand);
  border-bottom: 3px solid var(--creamy-beige);
  padding-bottom: 0.5rem;
  width: fit-content;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* Small Cards for individual products */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-brand);
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-details {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.card-price {
  font-weight: 700;
  color: var(--primary-brand);
  margin-bottom: 1.5rem;
}
.order-btn {
  margin-top: auto;
  background: var(--yogurt-white);
  border: 2px solid var(--primary-brand);
  color: var(--primary-brand);
  padding: 0.8rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.order-btn:hover {
  background: var(--primary-brand);
  color: white;
}
