.category-buttons, .tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}

.category-buttons button, .tab-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;
}

/*tabs button*/
.tab-buttons button:not(.active):hover {
  background-color: #d2691e;
  color: white;
  transform: scale(1.05);
}

.tab-buttons button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #d2691e;
}

.tab-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;
}


.menu-section {
  display: none;
}

.menu-section.active {
  display: block;
}

li {
  display: flex;
  justify-content: space-between; /* emri majtas, çmimi djathtas */
  align-items: center;             /* në të njëjtën linjë vertikalisht */
  flex-wrap: wrap;                 /* lejon përshkrimin të thyejë linjën */
}

li span:first-child {
  text-align: left;
  flex-grow: 1;                   /* zgjerohet për hapësirë */
  margin-right: 1rem;
}

li .price {
  white-space: nowrap;
  font-weight: bold;
  flex-shrink: 0;                 /* mos tkurret */
}

li small {
  display: block;
  font-size: 0.85rem;
  color: #777;
  text-align: left;
}

/*footer*/
.footer {
  color: #000;
  text-align: center;
  padding: 1.2rem 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer .brand {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer .brand:hover {
  opacity: 0.6;
}

.footer .phone {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer .phone:hover {
  opacity: 0.6;
}

.phone-icon {
  width: 18px;
  height: 18px;
  fill: #000;
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 0.6rem;
  }
}

