/* legal.css */
.legal-content {
  margin-top: 100px;
  color: var(--_color---blue);
  font-family: Oswald, Arial, sans-serif;
  line-height: 1.6;
}
.text-style-primary {
  margin-top: 100px;
}

.legal-date {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
  color: var(--_color---neon-green);
}

.legal-section-title {
  color: var(--_color---neon-green);
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-sub-title {
  color: var(--_color---pink);
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-text {
  font-size: 18px;
  margin-bottom: 20px;
}
.nutrition-heading-wrapper {
        margin-bottom: 20px;
    }
/* Updated CSS for burger and mobile menu with visibility fixes */

/* Base styles */
.menu-button {
  display: none; /* Hidden on desktop */
  cursor: pointer;
  z-index: 1001; /* Ensure above other elements */
}

.navbar-menu {
  display: flex; /* Visible on desktop */
  z-index: 1000;
}

/* Hamburger Icon */
.hamburger-icon {
  width: 32px;
  height: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.bar {
  background-color: var(--_color---blue);
  height: 4px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
  border-radius: 2px; /* Slight rounding for better look */
}

.top-bar {
  top: 0;
}

.middle-bar {
  top: 10px;
}

.bottom-bar {
  top: 20px;
}

/* Open state - transform to X */
.menu-button.open .top-bar {
  transform: rotate(45deg);
  top: 10px;
}

.menu-button.open .middle-bar {
  opacity: 0;
  transform: scale(0);
}

.menu-button.open .bottom-bar {
  transform: rotate(-45deg);
  top: 10px;
}
.box {
  padding: 80px 0; max-width: 800px; margin: 0 auto;
}

/* Mobile Menu */
@media screen and (max-width: 991px) {
  .menu-button {
    display: block; /* Visible on mobile */
  }

  .navbar-menu {
    display: none!important; /* Hidden by default on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--_color---lghit-blue);
    border-radius: 0 0 32px 32px;
    padding: 24px;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .navbar-menu.open {
    display: flex!important;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
  }

  

  .navbar-menu-left,
  .navbar-menu-rghit {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .navbar-link-wrapper {
    margin-bottom: 16px;
    width: 100%;
    text-align: center;
  }

  .navbar-link {
    display: block;
    padding: 12px 0;
    font-size: 20px;
  }
}