/* MOBILE STYLES */
/* MOBILE STYLES */
@media (max-width: 768px) {
  /* Hide original links */
  .nav-links,
  .order-online-button {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: left;       /* left justify menu items */
    background-color: #add8e6;
    padding-left: 1rem;     /* small indent from left edge */
    margin: 0;
    position: absolute;
    top: 100%;              /* position below logo/container */
    left: 0;
  }
  .nav-links
  {
    padding-bottom: 1rem;
  }
  /* Menu items spacing */
  .nav-links li {
    margin: 0.5rem 0;
  }

  /* Show when active */
  .nav-links.active,
  .order-online-button.active {
    display: flex;
  }

  /* Hamburger */
  .hamburger {
    display: block;
  }
  .fixed-buttons {
  position: fixed;
  bottom: 1rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  z-index: 1000;
}

.fixed-btn {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 500;
}

.fixed-btn:hover {
  opacity: 0.85;
}

}