/* Menu Page */
.menu-header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 235, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.menu-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ff8c69;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(255, 140, 105, 0.2);
}

.currency-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center;
}

.currency-selector label {
  font-size: 14px;
  font-weight: 600;
  color: #5a9997;
}

.currency-select {
  padding: 8px 12px;
  border: 2px solid rgba(94, 189, 184, 0.3);
  border-radius: 12px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: white;
  color: #2c5f5d;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
}

.currency-select:focus {
  outline: none;
  border-color: #5ebdb8;
  box-shadow: 0 0 0 3px rgba(94, 189, 184, 0.1);
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.menu-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 235, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.menu-item.hidden {
  display: none;
}

.menu-item-content {
  flex: 1;
}

.menu-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ff8c69;
  text-shadow: 0 1px 2px rgba(255, 140, 105, 0.2);
}

.ingredients {
  font-size: 12px;
  color: #5ebdb8;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 6px;
}

.description {
  font-size: 13px;
  color: #5a9997;
  line-height: 1.5;
  margin-bottom: 10px;
}

.pricing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #ff8c69;
}

.pricing .size {
  color: #5a9997;
  font-size: 13px;
}

.pricing .price {
  color: #ff8c69;
  font-weight: 700;
}

.pricing .divider {
  color: #5a9997;
  opacity: 0.5;
}

.menu-footer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 248, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.menu-footer p {
  font-size: 13px;
  color: #5a9997;
  margin-bottom: 12px;
  line-height: 1.5;
}

.menu-cta {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff9a76 0%, #ffd89b 100%);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 154, 118, 0.3);
  transition: all 0.3s ease;
}

.menu-cta:active {
  transform: scale(0.96);
}



/* Responsive */
@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .menu-header {
    padding: 30px;
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}