.category-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}

.category-buttons button {
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  border: 2px solid #d2691e;
  border-radius: 6px;
  background-color: transparent;
  color: #d2691e;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.category-buttons button:not(.active):hover {
  background-color: #d2691e;
  color: white;
  transform: scale(1.05);
}

.category-buttons button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #d2691e;
}

.category-buttons button.active {
  background-color: #d2691e;
  color: white;
  border-color: #d2691e;
}


/*pizza*/
.pizza-list {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  max-width: 600px;
}

.pizza-list li {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.4;
}

.pizza-list .price {
  color: #3cb371; /* ngjyrë jeshile */
  font-weight: 500;
}
