body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #222;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}


.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  background: #fff;
}

.tooltip {
  position: relative;
}

.tooltip button {
  background: #f4f4f4;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 8px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tooltip:hover .tooltip-text,
.tooltip:active .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.flip-icon {
  transform: rotate(90deg);
}


.actions button {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  white-space: nowrap;
}

.actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Icons inside buttons */
.actions .icon {
  font-size: 18px;
}

/* Colored Icons */
.icon.contact   { color: #007bff; } /* Blue */
.icon.menu      { color: #e67e22; } /* Orange */
.icon.share     { color: #9b59b6; } /* Purple */
.icon.whatsapp  { color: #25d366; } /* WhatsApp green */
.icon.phone     { color: #2ecc71; } /* Green */

/* Desktop View: All buttons in one row */
@media (min-width: 768px) {
  .actions {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .actions button {
    flex: 0 0 auto;
  }
}

/* Mobile View: Wrap buttons into 2 rows */
@media (max-width: 767px) {
  .actions {
    flex-wrap: wrap;
  }

  .actions button {
    flex: 1 0 45%; /* 2 per row */
    justify-content: center;
  }
}


.menu-section {
  padding: 0; /* remove side padding */
  max-width: 95%;
  margin: 0 auto;
}

.menu-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #333;
}

.menu-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.menu-card:hover {
  transform: scale(1.02);
}

.menu-img {
  position: relative;
}

.menu-img img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.menu-price {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background-color: #ff9900;
  color: #fff;
  padding: 4px 8px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
}

.menu-content {
  padding: 10px;
  text-align: center;
}

.menu-tag {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  border-radius: 20px;
  background-color: #eafaf1;
  color: #34a853;
  font-weight: bold;
}


.menu-content h4 {
  margin: 0;
  font-size: 1.1rem;
}

.footer {
  background-color: #f8f9fa;
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #eaeaea;
  margin-top: 40px;
}

.footer a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}
.order-panel {
  text-align: center;
  margin: 40px 0;
}
.order-panel button {
  background-color: #28a745;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.order-panel button:hover {
  background-color: #218838;
}

.menu-category {
  margin-bottom: 40px;
}

.menu-category-banner {
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}

.menu-category-img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

/* Responsive for mobile: 3 items per row */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}





