/* =========================
📱 MOBILE NAV
========================= */
/* Glass Bar Version (Studio/Client) */
.cs-mobile-nav {
  padding: 0 16px;
  z-index: var(--z-header);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(15, 10, 26, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 179, 1, 0.2);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.cs-mobile-nav {
    position: fixed;
    z-index: 9999;
}

.cs-mobile-nav button {
  position: absolute;
  left: 20px;
  font-size: 22px;
  background: none;
  border: none;
  color: #fff;
}

/*==============================================
NEW ADD ON
=============================================*/
.cs-mobile-nav {
  position: fixed;
  top: 0;


  display: flex;

  align-items: center;


  background: rgba(15,15,20,0.85);
  backdrop-filter: blur(10px);
}

@media(min-width:1024px){
  .cs-mobile-nav {
    display: none;
  }
}