/* === Hide mobile by default, show desktop === */
.custom-menu {
  display: block;
}
.mobile-menu[wpbox-custom-menu="1"],
.mobile-menu-toggle {
  display: none;
}

@media screen and (max-width: 960px) {
  .custom-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a0a40;
    color: white;
    padding: 10px 16px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;

    /* 👉 Add these */
    margin-left: auto;
    margin-right: 0;
  }

  .mobile-menu-toggle:hover {
    background: #1c1c6e;
  }

  .mobile-menu {
    display: none;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    font-size: 15px;
    
    position: absolute;
    right: 0;
}

.mobile-menu i.fas.fa-sort-down {
    margin-top: -6px;
}

  .mobile-menu[wpbox-custom-menu="1"]{display: none;}
  .mobile-menu.open {
    display: block;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: 280px;
    font-size: 12px;
}

  .mobile-menu li {
    margin-bottom: 12px;
  }

  .mobile-menu a {
    text-decoration: none;
    color: #0a0a40;
/*    font-weight: 500;*/
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }

  .mobile-menu a:hover {
    background: #f2f2f2;
    color: #56b966;
}

  .mobile-menu summary {
/*    font-weight: 600;*/
    font-size: 12px;
    cursor: pointer;
    padding: 10px 12px;
/*    background: #f3f3f3;*/
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
  }

 .mobile-menu summary:hover {
    background: #56b966;
    color: white;
}


  .mobile-menu details[open] > summary {
    background: #e8e8e8;
  }

  .mobile-menu details ul {
    padding-left: 20px;
    margin-top: 8px;
  }

  .mobile-menu details ul li {
    margin-bottom: 8px;
  }
  
  .cexpress-header .elementor-column {
    width: 50%;
}

}