.elementor-11 .elementor-element.elementor-element-d31b157{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-fc1a7df */body {
  background: #000;
  font-family: sans-serif;
}

/* MAIN BUTTONS */
.main-tabs {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px;
}

.main-tabs button {
  background: #111;
  color: #fff;
  border: 1px solid #333;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.main-tabs button.active,
.main-tabs button:hover {
  background: #ff0000;
  box-shadow: 0 0 10px rgba(255,0,0,0.6);
}

/* SUB */
.sub-tabs {
  display: flex;
  gap: 10px;
  margin: 20px 10px;
  overflow-x: auto;
}

.sub-tabs button {
  background: #111;
  color: #fff;
  border: 1px solid #333;
  padding: 8px 16px;
  border-radius: 20px;
  transition: 0.3s;
}

.sub-tabs button.active {
  background: #ff0000;
}

/* GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 10px;
}

/* CARD */
.menu-card {
  background: #111;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-card:hover {
  box-shadow: 0 0 15px rgba(255,0,0,0.3);
}

.menu-card img {
  width: 80px;
  border-radius: 50%;
  border: 2px solid red;
}

.menu-card h3 {
  color: #fff;
  margin: 0;
}

.menu-card p {
  color: #aaa;
  font-size: 14px;
}

.flavor-text {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #888;
  border-top: 1px dashed #333;
  padding-top: 5px;
}

.price {
  color: #ffcc00;
  font-weight: bold;
}

.combo-highlight {
  color: #ff0000;
  font-weight: bold;
}

/* MOBILE */
@media(max-width:768px){
  .menu-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */