  .custom-topbar {
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: #ffffff !important;
    border-bottom: 1px solid #e9ecef;
  }

  .topbar-logo {
    width: 100px;
    height: 25px;
    object-fit: contain;
    display: block;
  }

  .topbar-left {
    min-width: 0;
  }

  .topbar-menu {
    gap: 6px;
  }

  .topbar-link {
    color: #111 !important;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .topbar-link:hover {
    background: #f5f7fa;
    color: #000 !important;
  }

  .topbar-cta {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
  }

  .topbar-cta:hover {
    background: #eef3ff;
    border-color: #cfd8ff;
  }

  .topbar-login {
    background: #111;
    color: #fff !important;
    border: 1px solid #111;
  }

  .topbar-login:hover {
    background: #222;
    color: #fff !important;
  }


  /* Desktop alignment */
  @media (min-width: 992px) {
    .custom-topbar .container-fluid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
    }

    .topbar-left {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .navbar-collapse {
      flex-grow: 1;
      justify-content: flex-end !important;
    }
  }

  /* Mobile layout */
  @media (max-width: 991.98px) {
    .custom-topbar .container-fluid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }


    .topbar-left {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1 1 auto;
      min-width: 0;
    }

    .navbar-toggler {
      margin-left: auto;
    }

    .navbar-collapse {
      width: 100%;
      margin-top: 10px;
      background: #fff;
      border-top: 1px solid #eee;
      padding-top: 10px;
      padding-bottom: 6px;
    }

    .topbar-menu {
      width: 100%;
      gap: 0;
    }

    .topbar-menu .nav-item {
      width: 100%;
    }

    .topbar-menu .nav-link {
      display: block;
      width: 100%;
      padding: 10px 12px !important;
      border-radius: 8px;
    }

    .topbar-logo {
      width: 88px;
      height: 24px;
    }
  }

