/* Mobile Menu Styles - Shared across all pages */

/* Mobile hamburger button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #1E293B;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

@media (max-width: 991px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 0 0 20px 20px;
    z-index: 1000;
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .header-badges {
    display: none !important;
  }

  .header-inner {
    position: relative;
  }
}
