/*body {*/
/*  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  background-color: #f5f5f5;*/
/*}*/
/*.container {*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*  padding: 20px;*/
/*}*/
.header {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
  padding: 0 1rem;
}
.tab {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #f1f1f1;
  border: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.tab.active {
  background-color: var(--primary-color);
  color: white;
}
.tab:hover:not(.active) {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}
.menu-content {
  display: none;
}
.menu-content.active {
  display: block;
}
.menu-description {
  margin-bottom: 20px;
  font-style: italic;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 30px;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.section-name {
  font-family: Impact, "Coda", "Ariel Black", sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}
.section-description {
  margin-bottom: 20px;
  color: #666;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.item-image {
  height: 200px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f9f9f9;
}
.item-details {
  padding: 15px;
}
.item-name {
  font-size: 18px;
  /*font-weight: bold;*/
  margin-bottom: 10px;
}
.item-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  max-height: 100px;
  overflow-y: auto;

}
.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.meta-item {
  background-color: #f1f1f1;
  padding: 5px 10px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
}
.price-container {
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding: 15px;
}
.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.price {
  /*font-weight: bold;*/
  color: var(--primary-color);
}
.loading {
  text-align: center;
  padding: 50px;
  font-size: 20px;
  color: #666;
}
.error {
  background-color: #ffebee;
  color: #c62828;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .menu-items {
    grid-template-columns: 1fr;
  }
  .tab {
    flex: 1 0 auto;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    min-width: 120px;
  }
}
