/* Hamburger menu styles for mobile nav */
/*
@media (max-width: 480px) {
  .nav-hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 2000;
    cursor: pointer;
    gap: 5px;
  }
  .nav-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    margin: 2px 0;
    transition: all 0.2s;
  }
}
*/
