/* Remove botão "Rastrear Pedido" pelo texto diretamente */
a[href*="rastrear-pedido"],
a[href*="rastrear"],
a:contains("Rastrear Pedido"),
li:contains("Rastrear Pedido") {
  display: none !important;
}

/* Alternativa mais certeira se o link estiver com estrutura padrão da Loja Integrada */
.header__topbar li:nth-child(1) {
  display: none !important;
}

/* Remove o Carrinho */
.header__cart,
.cart__icon,
a[href*="/carrinho"],
svg[class*="cart"] {
  display: none !important;
}

/* Remove Login / Cadastro se ainda existir */
a[href*="login"],
a[href*="cadastro"],
.header__user,
.header__account {
  display: none !important;
}