body {
  background: #f6f6f6;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.filters a {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
  cursor: pointer;
}

.filters a:hover,
.filters a.active {
  background: #e65100;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,152,0,0.18);
}

.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.menu-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 2.2rem;
  color: #222;
  letter-spacing: 1px;
}
.search-wrapper {
  display: flex;
  align-items: center;
  max-width: 400px;
  margin: 0 auto 32px auto;
  background: #f1f1f1;
  border-radius: 8px;
  padding: 8px 16px;
}
.search-wrapper input[type="search"] {
  border: none;
  background: transparent;
  font-size: 1rem;
  flex: 1;
  outline: none;
  padding: 8px 0;
}
.search-wrapper .material-icons {
  color: #888;
  font-size: 1.4rem;
  margin-left: 8px;
}
.menu-section {
  margin-bottom: 40px;
}
.menu-section h2 {
  margin-bottom: 18px;
  color: #ff9800;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.menu-card {
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  min-height: 420px;
}
.menu-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.menu-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(255,152,0,0.10);
    margin: 0 auto 12px auto;
    display: block;
    background: #fffbe7;
    transition: transform 0.2s, box-shadow 0.2s;
}

.menu-card:hover img,
.menu-card:focus img {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(255,152,0,0.18);
    filter: brightness(1.07) saturate(1.1);
}
.menu-card-content {
  padding: 18px 16px 12px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-card-title {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #222;
  font-weight: 600;
}
.menu-card-desc {
  margin: 0 0 12px 0;
  color: #666;
  font-size: 0.98rem;
}
.price-container {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}
.old-price {
  color: #bdbdbd;
  text-decoration: line-through;
  font-size: 0.95rem;
  margin-left: 8px;
}
.order-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  justify-content: flex-end;
}
.btn-minus, .btn-plus {
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-minus:hover, .btn-plus:hover {
  background: #e65100;
}
.order-amount {
  min-width: 24px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
}
.menu-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 32px 0 18px 0;
}
.menu-nav-buttons button {
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.menu-nav-buttons button:hover {
  background: #e65100;
}

.cart-link:hover {
  background: linear-gradient(90deg, #e65100 60%, #ff9800 100%);
  box-shadow: 0 8px 24px rgba(255,152,0,0.18);
  color: #fff;
}
.cart-icon {
  font-size: 1.5rem;
  margin-right: 12px;
}
.cart-count {
  background: #fff;
  color: #ff9800;
  font-weight: bold;
  border-radius: 50%;
  padding: 4px 12px;
  margin-left: 16px;
  font-size: 1.1rem;
  min-width: 32px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
}
.cart-bar-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #ff9800 60%, #ffb74d 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(255,152,0,0.10);
  text-decoration: none;
  margin: 32px auto 32px 0;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  min-width: 220px;
  justify-content: center;
  gap: 14px;
}
.cart-bar-btn:hover {
  background: linear-gradient(90deg, #e65100 60%, #ff9800 100%);
  box-shadow: 0 8px 24px rgba(255,152,0,0.18);
  color: #fff;
}
.cart-bar-count {
  background: #fff;
  color: #ff9800;
  font-weight: bold;
  border-radius: 50%;
  padding: 4px 12px;
  margin-left: 16px;
  font-size: 1.1rem;
  min-width: 32px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
}
/* Specifiek voor drankjes-afbeeldingen */
.menu-section[aria-labelledby="drankjes-heading"] .menu-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;   /* Zorgt dat het blikje/flesje niet wordt afgesneden */
  background: #fffbe7;   /* Zachte achtergrondkleur voor contrast */
  padding: 16px 0;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

/* Specifiek voor pizza-afbeeldingen */
.menu-section[aria-labelledby="pizza-heading"] .menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;      /* Vult het vlak mooi op, snijdt eventueel bij */
  background: #fffbe7;    /* Zachte achtergrondkleur voor contrast */
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .menu-card {
    width: 100%;
  }
  .nav-container {
    flex-direction: column;
    height: auto;
    gap: 8px;
    padding: none;
    padding-top: 12px;
    padding-right: 0px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-logo img {
    height: 40px;
  }
  .nav-title {
    font-size: 1.3rem;
  }
  .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}
.cart-bar-btn {
position: fixed;
  bottom: 0 ;
  left: 0;
  right: 0;
  width: 70%;
  max-width: 380px;
  margin-bottom: 10px;
  margin-left: auto;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
}
}