.burger-btn {
  color: var(--text-light);
}


.burger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  margin-right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding-top: 2px;
}

.burger-btn:hover {
  color: var(--light-color);
}

@media (max-width: 1390px) {
    .nav-menu ul,
    .header-actions {
        display: none !important;
    }
    
    .menu-logo {
        display: flex;
        justify-content: center;
        padding: 15px;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .header .logo {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%; 
        height: 100vh;
        background-color: #474a50;
        z-index: 1000;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        border-radius: 25px;
    }
    
    .nav-menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
        color: var(--text-color);
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: block;
    }

    .burger-btn {
        display: block;
        order: 2;
        z-index: 1002;
    }
    

    .nav-menu.active ul,
    .nav-menu.active .header-actions {
        display: flex !important;
    }
}

.burger-btn i {
    transition: transform 0.3s ease;
}

.burger-btn.active i {
    transform: rotate(90deg);
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .logo img {
    max-height: 60px;
    min-width: 100px;
  }

  .burger-btn {
    font-size: 20px;
  }
}