 /* Header & Top Bar */
    .top-bar {
   width: 100%;
    z-index: 999;
    position: fixed;
    background: linear-gradient(to right, #6d8184, #2e3f41);
    color: white;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    
    flex-wrap: wrap;
  
}
    .top-bar span {
      font-weight: bold;
      margin-left: 6px;
    }
    
    .top-bar .right{
        padding-right: 30px;
    }

    .top-bar .left,
    .top-bar .right {
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .top-bar {
        z-index: 999; 
        width: 100%;
        position: fixed;
        justify-content: center;
        text-align: center;
        gap: 15px;
        
      }

      .top-bar .phone,
      .top-bar .address {
        display: none;
      }

      .top-bar.show-phone .phone {
        display: inline;
      }

      .top-bar.show-address .address {
        display: inline;
      }
    }

    header {
     
     top: 33px !important;

      background-color: #24383b;
      color: white;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: fixed;
      width: 100%;
      z-index: 999;
    }

    .search-icon {
      font-size: 20px;
      color: white;
      margin-left: 20px;
    }

    .logo {
      text-align: center;
    }

    .logo span {
      display: block;
      margin-top: 10px;
      font-size: 18px;
      letter-spacing: 1px;
      color: white;
    }

    .menu-toggle {
      font-size: 26px;
      cursor: pointer;
      color: white;
      margin-right: 40px;
    }

    /* Sidebar Menu */
    .side-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 319px!important;
      height: 100%;
      background-color: white;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
      transition: right 0.3s ease;
      z-index: 9999;
      padding: 20px;
    }

    .side-menu.active {
      right: 0;
    }

    .menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 20px;
      color: #809496;
    }

    .side-menu ul {
      list-style: none;
    }

    .side-menu ul li {
      padding: 15px 0;
      font-size: 13px;
      cursor: pointer;
      color: #809496;
    }

    .help-section {
      margin-top: 40px;
      text-align: center;
    }

    .help-section p {
      font-weight: bold;
      margin-bottom: 15px;
    }

    .btn-primary,
    .btn-outline {
      display: block;
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      font-size: 16px;
      cursor: pointer;
    }

    .btn-primary {
      background-color: #7f989b;
      color: white;
      border: none;
    }

    .btn-outline {
      border: 1px solid #7f989b;
      background: white;
      color: #7f989b;
    }

    .abx-has-submenu .abx-submenu {
      display: none;
      padding-left: 15px;
      margin-top: 10px;
    }

    .abx-toggle-checkbox:checked~.abx-submenu {
      display: block;
    }

    .abx-submenu-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: #809496;
      font-size: 13px;
      padding: 0;
    }

    .abx-submenu li {
      padding: 8px 0;
      font-size: 13px;
      color: #809496;
      border-bottom: none;
      cursor: pointer;
    }

    .abx-submenu li a {
      display: block;
      text-decoration: none;
      color: #809496;
      font-size: 13px;
      transition: color 0.2s;
    }

    .abx-submenu li a:hover {
      color: #2e3f41;
    }

    ul>li>a {
      display: block;
      text-decoration: none;
      color: #809496;
      font-size: 13px;
      transition: color 0.2s;
    }

    ul>li>a:hover {
      color: #2e3f41;
    }