.ristoranti-box, .categorie-box, .piatti-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.ristorante, .categoria, .piatto {
  border: 2px solid #009688;
  border-radius: 10px;
  padding: 20px;
  width: calc(50% - 20px);
  background: #e0f2f1;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.ristorante:hover, .categoria:hover {
  transform: scale(1.02);
}

.ristorante a, .categoria a {
  text-decoration: none;
  color: #00695c;
  font-weight: bold;
  font-size: 18px;
}

.piatto h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #004d40;
}

.piatto p {
  margin: 0;
  font-size: 16px;
}
