/* =========================================================
   HEADER DESKTOP - PINBET (AJUSTADO E ALINHADO)
   ========================================================= */
   body, html {
    margin: 0 !important;
    padding: 0 !important;
    background: #000;
    font-family: "Inter", sans-serif;
  }
  
  body {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  
  /* Garantir que o header esteja no topo */
  .header.desktop-header,
  .header.mobile-header {
    top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* =========================================================
     🔹 Header principal (Desktop)
     ========================================================= */
  .header.desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: #2a004a; /* Roxo escuro igual ao mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  }
  
  /* Ocultar header desktop no mobile e mostrar mobile */
  @media (max-width: 768px) {
    .header.desktop-header {
      display: none !important;
    }
    
    .header.mobile-header {
      display: block !important;
    }
  }
  
  /* Ocultar header mobile no desktop e mostrar desktop */
  @media (min-width: 769px) {
    .header.mobile-header {
      display: none !important;
    }
    
    .header.desktop-header {
      display: flex !important;
    }
  }
  
  
  .header-content {
    width: 95%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* 🔸 hdr-main-content-bc (Desktop Autenticado) */
  .header.desktop-header .hdr-main-content-bc {
    width: 95%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
  }
  
  /* 🔸 Logo Container (Desktop) */
  .header.desktop-header .logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
  }
  
  .header.desktop-header .logo-container .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  /* Logo visível apenas quando autenticado no desktop */
  .header.desktop-header.header-authenticated .hdr-logo-bc {
    display: block !important;
    height: 40px;
    width: auto;
    object-fit: contain;
  }
  
  .header.desktop-header.header-authenticated .logo-container {
    display: flex !important;
  }
  
  .header.desktop-header.header-authenticated .logo-container .logo {
    display: flex !important;
  }
  
  /* Logo oculta quando não autenticado no desktop */
  .header.desktop-header.header-unauthenticated .hdr-logo-bc,
  .header.desktop-header.header-unauthenticated .logo-container .logo,
  .header.desktop-header.header-unauthenticated .logo-container {
    display: none !important;
  }
  
  .header.desktop-header .header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  /* Ícone de presente visível apenas quando autenticado no desktop */
  .header.desktop-header.header-authenticated .header-icon {
    display: flex !important;
  }
  
  /* Ícone de presente oculto quando não autenticado no desktop */
  .header.desktop-header.header-unauthenticated .header-icon {
    display: none !important;
  }
  
  .header.desktop-header .header-icon:hover {
    transform: scale(1.1);
  }
  
  .header.desktop-header .header-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .logo-text {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
  }
  
  .logo-exclamation {
    color: #99ff00;
  }
  
  /* 🔹 Menu Central */
  .nav {
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .nav-list {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
  }
  
  .nav-link {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: 0.2s ease;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #99ff00;
    border-bottom-color: #99ff00;
  }
  
  /* 🔹 Ações à direita (Desktop) */
  .header.desktop-header .hdr-user-bc {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  
  .header.desktop-header .btn.s-small {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  /* Ícone de fechar à esquerda (desktop não autenticado) */
  .header.desktop-header .header-close-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #00d4ff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  
  .header.desktop-header .header-close-icon:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
  }
  
  .header.desktop-header .header-close-icon i {
    font-size: 14px;
  }
  
  /* Grupo de ícones à direita (desktop não autenticado) */
  .header.desktop-header .header-icons-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 6px 10px;
    margin-right: 12px;
  }
  
  .header.desktop-header .header-icon-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    cursor: pointer;
    padding: 4px 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header.desktop-header .header-icon-btn:hover {
    color: #fff;
    transform: scale(1.1);
  }
  
  /* Link Entrar (desktop não autenticado) */
  .header.desktop-header .header-login-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-right: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  
  .header.desktop-header .header-login-link:hover {
    color: #fff;
  }
  
  /* Botão Cadastre-se (desktop não autenticado) */
  .header.desktop-header .btn-register-header {
    background: #00d4ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
  }
  
  .header.desktop-header .btn-register-header:hover {
    background: #00e5ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
  }
  
  /* Header autenticado - fundo roxo */
  .header.desktop-header.header-authenticated {
    background: #4b00b4 !important;
  }
  
  /* hdr-user-bc quando autenticado */
  .header.desktop-header.header-authenticated .hdr-user-bc {
    display: flex !important;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  
  /* Mostrar elementos autenticados quando autenticado */
  .header.desktop-header.header-authenticated .hdr-user-bc .btn-deposit-header {
    display: flex !important;
  }
  
  .header.desktop-header.header-authenticated .hdr-user-bc .user-balance-display {
    display: flex !important;
  }
  
  .header.desktop-header.header-authenticated .hdr-user-bc .profile-avatar-wrapper {
    display: flex !important;
  }
  
  .header.desktop-header.header-authenticated .hdr-user-bc .notification-icon-wrapper {
    display: flex !important;
  }
  
  /* Ocultar elementos não autenticado quando autenticado */
  .header.desktop-header.header-authenticated .hdr-user-bc .header-icons-group,
  .header.desktop-header.header-authenticated .hdr-user-bc .header-login-link,
  .header.desktop-header.header-authenticated .hdr-user-bc .btn-register-header,
  .header.desktop-header.header-authenticated .header-close-icon {
    display: none !important;
  }
  
  /* hdr-user-bc quando não autenticado */
  .header.desktop-header.header-unauthenticated .hdr-user-bc {
    display: flex !important;
    align-items: center;
    gap: 0;
  }
  
  /* Ocultar elementos de usuário autenticado quando não autenticado */
  .header.desktop-header.header-unauthenticated .hdr-user-bc .btn-deposit-header,
  .header.desktop-header.header-unauthenticated .hdr-user-bc .user-balance-display,
  .header.desktop-header.header-unauthenticated .hdr-user-bc .profile-avatar-wrapper,
  .header.desktop-header.header-unauthenticated .hdr-user-bc .notification-icon-wrapper {
    display: none !important;
  }
  
  /* Mostrar elementos não autenticado */
  .header.desktop-header.header-unauthenticated .header-close-icon {
    display: flex !important;
  }
  
  .header.desktop-header.header-unauthenticated .header-icons-group {
    display: flex !important;
  }
  
  .header.desktop-header.header-unauthenticated .header-login-link {
    display: block !important;
  }
  
  .header.desktop-header.header-unauthenticated .btn-register-header {
    display: block !important;
  }
  
  /* Mantém compatibilidade com header-actions antigo */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .gift-icon,
  .notification-icon {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
  }
  
  .gift-icon:hover,
  .notification-icon:hover {
    color: #99ff00;
  }
  
  /* 🔸 Botões */
  .btn-register {
    background: #99ff00;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  .btn-register:hover {
    background: #baff33;
  }
  
  .btn-login {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    border: 1px solid #99ff00;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  .btn-login:hover {
    background: #99ff00;
    color: #2a004a;
  }
  
  .header-actions .fa-eye {
    font-size: 16px;
    color: #99ff00;
    margin-left: 4px;
    cursor: pointer;
    transition: 0.2s;
  }
  
  .header-actions .fa-eye:hover {
    transform: scale(1.1);
  }
  
  /* 🔸 Usuário autenticado - Header estilo imagem */
  .header.desktop-header .hdr-user-bc {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .btn-deposit-header {
    background: #ff6b35;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  }
  
  .deposit-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
  }
  
  .deposit-icon-wrapper .fa-user {
    font-size: 14px;
    position: relative;
    z-index: 1;
  }
  
  .deposit-icon-wrapper .deposit-arrow {
    position: absolute;
    bottom: -1px;
    right: -3px;
    font-size: 8px;
    color: #fff;
    z-index: 2;
  }
  
  .btn-deposit-header:hover {
    background: #ff8555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  }
  
  .user-balance-display {
    display: flex;
    align-items: center;
  }
  
  .user-balance-display .balance-text {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
  }
  
  .profile-avatar-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
  }
  
  .profile-avatar-wrapper:hover {
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.7), 0 0 25px rgba(0, 212, 255, 0.4);
    transform: scale(1.05);
    border-color: #00e5ff;
  }
  
  .profile-pic-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }
  
  /* Garantir que a div wrapper do avatar tenha o círculo visível */
  .hdr-user-bc > div:has(.profile-pic-home) {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .notification-icon-wrapper {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  
  .notification-icon-wrapper:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .notification-icon-wrapper .hdr-toggle-button-bc {
    font-size: 18px;
    color: #fff;
  }
  
  .notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff6b35;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #4b00b4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  /* Mantém compatibilidade com estilos antigos */
  .btn-deposit {
    background: #99ff00;
    color: #000;
    border: none;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  .btn-deposit:hover {
    background: #baff33;
  }
  
  .user-balance-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2a004a;
    padding: 6px 12px;
    border-radius: 8px;
  }
  
  .user-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
  }
  
  .balance-amount {
    color: #99ff00;
    font-weight: 700;
    font-size: 14px;
    background: #000;
    padding: 2px 6px;
    border-radius: 4px;
  }
  
  .user-avatar-desktop {
    background: #99ff00;
    color: #2a004a;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  .user-avatar-desktop:hover {
    transform: scale(1.1);
  }
  
  /* =========================================================
     🔹 Espaçamento do conteúdo (para não sobrepor o header)
     ========================================================= */
  main, .main-container {
    margin-top: 88px !important; /* 44px header + 44px menu */
    transition: margin-top 0.3s ease;
  }
  
  /* Quando logado, dá um leve ajuste extra */
  body.user-logged main,
  body.user-logged .main-container {
    margin-top: 88px !important;
  }
  
  /* =========================================================
     🔹 DROPDOWN USUÁRIO
     ========================================================= */
  .user-dropdown {
    display: none;
    position: absolute;
    right: 20px;
    top: 44px;
    width: 280px;
    background: #5300a6;
    border-radius: 12px;
    color: #fff;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }
  
  .user-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  /* =========================================================
     🔸 MOBILE FIX
     ========================================================= */
  @media (max-width: 768px) {
    main, .main-container {
      margin-top: 88px !important;
    }
  
    body.user-logged main,
    body.user-logged .main-container {
      margin-top: 88px !important;
    }
  
    .user-dropdown {
      position: fixed;
      top: 44px;
      left: 10px;
      right: 10px;
      width: auto;
      border-radius: 12px;
      background: #5300a6;
      z-index: 9999;
      max-height: calc(100vh - 80px);
      overflow-y: auto;
      animation: slideDown 0.25s ease;
    }
  
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-15px); }
      to { opacity: 1; transform: translateY(0); }
    }
  
    .user-dropdown .dropdown-links {
      display: flex;
      flex-direction: column;
    }
  
    .user-dropdown .link-row {
      flex-direction: column;
      gap: 6px;
    }
  
    .user-dropdown .link-row div {
      flex: none;
      justify-content: flex-start;
      font-size: 15px;
    }
  
    .user-dropdown .dropdown-footer {
      padding-bottom: 20px;
    }
  }
  
  /* =========================================================
     🔹 SIDEBAR LATERAL (DESKTOP)
     ========================================================= */
  .sidebar-toggle-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px 12px;
    margin-right: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }
  
  .sidebar-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
  }
  
  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .sidebar.desktop-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #1a1a2e;
    z-index: 2001;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .sidebar.desktop-sidebar.active {
    left: 0;
  }
  
  .sidebar .menu-title {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .sidebar .sidebar-closeButton {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .sidebar .sidebar-closeButton:hover {
    transform: rotate(90deg);
  }
  
  .sidebar .sidebar-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .sidebar .sidebar-logo {
    max-width: 150px;
    height: auto;
  }
  
  .sidebar .menu-content {
    padding: 20px 0;
  }
  
  .sidebar .menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .sidebar .menu-items .item {
    margin: 0;
    padding: 0;
  }
  
  .sidebar .menu-items .item .nav-menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
  }
  
  .sidebar .menu-items .item .nav-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-left-color: #00d4ff;
  }
  
  .sidebar .menu-items .item .nav-menu-item.active {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border-left-color: #00d4ff;
  }
  
  .sidebar .menu-items .item .nav-menu-item i {
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
  }
  
  .sidebar .menu-items .item .nav-menu-item span {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
  }
  
  .sidebar .menu-items .item .nav-menu-item .nav-menu-sub-arrow {
    font-size: 12px;
    opacity: 0.6;
  }
  
  .sidebar .menu-items .item .nav-menu-item.badge-new::after {
    content: attr(data-badge);
    background: #ff6b35;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
  }
  
  /* Ocultar sidebar no mobile */
  @media (max-width: 768px) {
    .sidebar.desktop-sidebar,
    .sidebar-overlay {
      display: none !important;
    }
  }
  
/* =========================================================
   HDR NAVIGATION SCROLLABLE (Mobile Navigation)
   ========================================================= */
.hdr-navigation-scrollable-bc-holder {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  background: transparent;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.header.mobile-header {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  gap: 0;
}

.header.mobile-header .hdr-navigation-scrollable-bc-holder {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  order: 2;
  background: #2a004a;
  height: 44px;
}

.header.mobile-header .hdr-main-content-bc {
  order: 1;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 44px;
}

.hdr-navigation-scrollable-bc-holder::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}

.hdr-navigation-scrollable-bc {
  display: inline-block;
  position: relative;
  min-width: 100%;
  width: auto;
}

.hdr-navigation-scrollable-content {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 0 12px;
  margin: 0;
  list-style: none;
  width: max-content;
  box-sizing: border-box;
  height: 44px;
}

.hdr-navigation-link-bc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s ease;
  position: relative;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  border: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  height: 32px;
  min-width: 90px;
  max-width: 140px;
  line-height: 1;
}

.hdr-navigation-link-bc:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.hdr-navigation-link-bc.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 600;
  border-color: rgba(255, 255, 255, 0.3);
}

.hdr-navigation-link-bc .nav-menu-icon {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
}

.hdr-navigation-link-bc img.nav-menu-icon {
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
  flex-shrink: 0;
  max-width: 18px;
  max-height: 18px;
  width: auto;
  height: auto;
  margin-right: 0;
}

.hdr-navigation-link-bc.active img.nav-menu-icon {
  opacity: 1;
}

.hdr-navigation-link-bc.active .nav-menu-icon {
  color: #fff;
}

.hdr-navigation-link-bc.badge-new {
  position: relative;
}

.hdr-navigation-link-bc.badge-new::after {
  content: attr(data-badge);
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff6b35;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 8px;
  line-height: 1.2;
  min-width: 32px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hdr-navigation-scrollable-bc-holder {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    touch-action: pan-x;
  }
  
  .hdr-navigation-scrollable-bc {
    min-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .hdr-navigation-scrollable-content {
    padding: 0 8px;
    gap: 5px;
    width: max-content;
    min-width: 100%;
    height: 44px;
  }
  
  .hdr-navigation-link-bc {
    padding: 0 12px;
    font-size: 11px;
    min-width: 85px;
    max-width: 130px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    height: 32px;
    gap: 5px;
    justify-content: center;
  }
  
  .hdr-navigation-link-bc .nav-menu-icon {
    font-size: 15px;
    width: 17px;
    height: 17px;
  }
  
  .hdr-navigation-link-bc img.nav-menu-icon {
    max-width: 17px;
    max-height: 17px;
  }
  
  .hdr-navigation-link-bc.badge-new::after {
    font-size: 7px;
    padding: 1px 3px;
    min-width: 24px;
    top: -3px;
    right: -3px;
  }
}

/* Desktop adjustments */
@media (min-width: 769px) {
  .hdr-navigation-scrollable-bc-holder {
    width: 100%;
    height: 44px;
    background: #2a004a;
  }
  
  .hdr-navigation-scrollable-content {
    justify-content: flex-start;
    height: 44px;
    padding: 0 16px;
  }
  
  .hdr-navigation-link-bc {
    padding: 0 12px;
    font-size: 12px;
    height: 32px;
    min-width: 90px;
    max-width: 140px;
    gap: 6px;
    justify-content: center;
  }
  
  .hdr-navigation-link-bc .nav-menu-icon {
    font-size: 16px;
    width: 18px;
    height: 18px;
  }
  
  .hdr-navigation-link-bc img.nav-menu-icon {
    max-width: 18px;
    max-height: 18px;
  }
}
